/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FFFDF8;
  color: #1B2533;
  font-family: 'Arial', system-ui, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
a {
  color: #C68C2B;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #1B2533;
}
ul,
ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
}

/* === BRAND VARIABLE FALLBACKS === */
:root {
  --color-primary: #1B2533;
  --color-secondary: #EAD94C;
  --color-accent: #FFFFFF;
  --color-bg: #FFFDF8;
  --color-neutral-soft: #FAF4E5;
  --color-warm-1: #FFDDAA;
  --color-warm-2: #FFB956;
  --color-warm-3: #FFE7A0;
  --color-warm-brown: #C68C2B;
  --color-error: #d94c4c;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
  font-display: swap;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B2533;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.22;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, .subheadline, .thankyou-message {
  margin-bottom: 18px;
  color: #353B45;
}
.subheadline {
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #C68C2B;
  font-weight: 500;
  margin-bottom: 26px;
}

/* ==== GENERIC COMPONENTS === */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  background: var(--color-neutral-soft);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(203, 159, 115, 0.07);
  padding: 40px 22px;
  margin-bottom: 24px;
}

/* ==== HEADER & NAV === */
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0px 2px 12px rgba(235, 198, 111, 0.12);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-link {
  display: flex;
  align-items: center;
  padding-right: 15px;
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #8B6720;
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-warm-3);
  color: #1B2533;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: var(--color-secondary);
  color: #1B2533;
  font-weight: 700;
  border: none;
  border-radius: 26px;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(203, 159, 115, 0.09);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.16s;
  min-width: 160px;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFB956;
  color: #1B2533;
  box-shadow: 0 8px 38px 0 rgba(203, 159, 115, 0.17);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 991px) {
  header .container {
    flex-direction: row;
    gap: 14px;
    padding: 0 10px;
  }
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    font-size: 0.97rem;
    padding: 10px 18px;
    min-width: 120px;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  position: fixed;
  right: 22px;
  top: 17px;
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  color: #1B2533;
  border: none;
  border-radius: 14px;
  font-size: 2rem;
  display: none;
  z-index: 1002;
  justify-content: center;
  align-items: center;
  transition: background .18s, box-shadow .17s;
  box-shadow: 0 2px 12px 0 rgba(203, 159, 115, 0.14);
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFB956;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,235,202,0.93);
  backdrop-filter: blur(1px);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.8,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 2px 28px 0 rgba(203, 159, 115, 0.13);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #1B2533;
  align-self: flex-end;
  margin: 26px 20px 10px 0;
  cursor: pointer;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFDDAA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 30px;
  margin-top: 15px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 16px 0;
  color: #8B6720;
  font-weight: 500;
  border-radius: 12px;
  background: none;
  transition: background .17s, color 0.19s;
  text-align: left;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFB956;
  color: #1B2533;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === HERO SECTION === */
.hero {
  min-height: 330px;
  background: linear-gradient(90deg, #FFE7A0 0%, #FFDDAA 100%);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 2px 30px 0 rgba(203, 159, 115, 0.08);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
}

@media (max-width: 768px) {
  .hero {
    padding: 28px 0 18px 0;
    min-height: 180px;
    border-radius: 0 0 26px 26px;
  }
  .hero .container {
    padding: 0 10px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
  }
}

/* === FLEX LAYOUTS, CARDS, GRIDS === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(203, 159, 115, 0.10);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .16s;
}
.card:hover {
  box-shadow: 0 6px 38px 0 rgba(203, 159, 115, 0.23);
  transform: translateY(-2px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF9EB;
  border-radius: 20px;
  box-shadow: 0 6px 28px 0 rgba(226, 185, 84, 0.18);
  flex-direction: column;
  max-width: 480px;
  min-width: 225px;
  color: #23232A;
}
.testimonial-card p {
  color: #23232A;
  font-size: 1rem;
  margin-bottom: 12px;
  text-align: left;
}
.testimonial-card span {
  color: #8B6720;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.testimonial-slider, .testimonial-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-price {
  display: inline-block;
  background: #FFE7A0;
  color: #1B2533;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  padding: 4px 14px;
  font-weight: 600;
  margin-top: 8px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 18px;
}
.service-card {
  flex: 1 1 340px;
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(203, 159, 115, 0.09);
  padding: 26px 20px 34px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 250px;
  max-width: 390px;
  transition: box-shadow .16s, transform .12s;
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}
.service-card ul {
  margin-bottom: 0;
}
.service-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #C68C2B;
  background: #FFE7A0;
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 1rem;
  margin-top: 4px;
  display: inline-block;
}
.service-card .cta-btn {
  margin-top: 8px;
  align-self: flex-start;
}
.service-card:hover {
  box-shadow: 0 10px 32px 0 rgba(203, 159, 115, 0.18);
  transform: translateY(-3px) scale(1.01);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(203, 159, 115, 0.09);
  padding: 27px 18px;
  flex: 1 1 250px;
  max-width: 340px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s, transform .13s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 38px 0 rgba(203, 159, 115, 0.20);
  transform: scale(1.01) translateY(-2px);
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 7px;
  background: #FFE7A0;
  padding: 8px;
  border-radius: 9px;
}

.impact-statistics {
  background: #FFE7A0;
  color: #1B2533;
  border-radius: 16px;
  padding: 18px;
  margin-top: 16px;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
}
.growth-examples {
  background: #FFF5E1;
  border-radius: 13px;
  padding: 16px 16px 10px 16px;
  margin-top: 8px;
  color: #8B6720;
  font-weight: 500;
}
.case-study-highlights {
  background: #FFF9EB;
  border-radius: 15px;
  padding: 20px;
  margin-top: 30px;
}

/* ==== FOOTER === */
footer {
  width: 100%;
  background: #1B2533;
  color: #fff;
  padding: 45px 0 24px 0;
  letter-spacing: 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  background: transparent;
  border-radius: 8px;
}
footer p, footer a {
  color: #fff;
  font-size: 0.99rem;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0px;
}
.footer-nav a {
  color: #FFE7A0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 3px 0;
  border-radius: 5px;
  transition: background 0.14s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFF9EB;
  color: #1B2533;
}
.social-media-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
footer .cta-btn {
  margin-top: 18px;
  background: #FFE7A0;
  color: #1B2533;
  border-radius: 24px;
  font-weight: 700;
  box-shadow: 0 1px 22px 0 rgba(255, 221, 170, 0.16);
}
footer .cta-btn:hover, footer .cta-btn:focus {
  background: #FFB956;
}

@media (max-width: 991px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 30px 0 16px 0;
    margin-top: 30px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
  }
}

/* ==== RESPONSIVE FLEX LAYOUT PATTERNS === */
@media (max-width: 991px) {
  .feature-grid, .service-cards, .testimonial-slider, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .section  {
    margin-bottom: 32px;
    padding: 30px 8px;
  }
  .service-card, .feature-grid > div {
    min-width: 180px;
    max-width: 100%;
    padding: 20px 10px 22px 10px;
  }
  .content-wrapper, .text-section {
    padding: 24px 4px;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider, .testimonial-list, .service-cards, .feature-grid, .content-grid {
    gap: 18px;
  }
}

/* ==== FAQ, DIRECT CONTACT BOXES === */
.direct-contact-info ul, .faq-list, .case-study-highlights ul {
  list-style-type: none;
  padding-left: 0;
}
.direct-contact-info ul li, .faq-list li, .case-study-highlights ul li {
  margin-bottom: 10px;
  color: #1B2533;
  font-size: 1rem;
  border-left: 5px solid #EAD94C;
  padding-left: 10px;
}

/* === CARD / FEATURE ITEMS === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 9px;
  border-radius: 13px;
  background: #FFF9EB;
  box-shadow: 0 1px 10px 0 rgba(203, 159, 115, 0.06);
  margin-bottom: 20px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #FFE7A0;
  color: #1B2533;
  box-shadow: 0 -2px 20px 0 rgba(226, 185, 84, 0.18);
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s, transform .22s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner p {
  flex: 1 1 300px;
  margin: 0 0 12px 0;
  color: #1B2533;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background .14s, color 0.15s, box-shadow 0.16s;
  box-shadow: 0 1px 10px 0 rgba(203, 159, 115, 0.07);
}
.cookie-btns .accept {
  background: #EAD94C;
  color: #1B2533;
}
.cookie-btns .accept:hover, .cookie-btns .accept:focus {
  background: #FFB956;
}
.cookie-btns .reject {
  background: #fff5e8;
  color: #E15718;
  border: 2px solid #FFB956;
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus {
  background: #FFDDAA;
}
.cookie-btns .settings {
  background: #fff;
  color: #8B6720;
  border: 1px solid #EAD94C;
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus {
  background: #FFE7A0;
  color: #1B2533;
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right:0; top: 0; bottom: 0;
  z-index: 11000;
  background: rgba(51,37,15, 0.30);
  backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: cookie-modal-fadein .28s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffdf8;
  border-radius: 18px;
  box-shadow: 0 5px 36px 0 rgba(203, 159, 115, 0.15);
  padding: 42px 18px 28px 18px;
  max-width: 400px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content h2 {
  margin-top: 0;
  color: #1B2533;
  font-size: 1.33rem;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal-content .cookie-category label {
  font-size: 1.02rem;
  color: #1B2533;
}
.cookie-modal-content .cookie-switch {
  width: 42px;
  height: 22px;
  border-radius: 11px;
  background: #FFDDAA;
  position: relative;
  margin-right: 8px;
  flex-shrink: 0;
}
.cookie-modal-content .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal-content .cookie-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #EAD94C;
  border-radius: 10px;
  transition: left 0.19s;
}
.cookie-modal-content .cookie-switch input:checked + .slider {
  left: 22px;
  background: #FFB956;
}
.cookie-modal-content .essential {
  opacity: 0.65;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}
.cookie-modal-content .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  border: none;
  border-radius: 12px;
  padding: 9px 22px;
  font-weight: 600;
  background: #EAD94C;
  color: #1B2533;
  transition: background 0.14s, color 0.13s;
  cursor: pointer;
}
.cookie-modal-content .cookie-modal-actions button:hover, .cookie-modal-content .cookie-modal-actions button:focus {
  background: #FFB956;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 28px 8px 20px 8px;
    max-width: 90vw;
  }
}

/* === FORM ELEMENTS === */
input, textarea, select {
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #EAD94C;
  padding: 11px 16px;
  background: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #FFB956;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* === UTILITY CLASSES === */
.hide {
  display: none !important;
}
.d-flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}

/* === ANIMATIONS === */
.fade-in {
  animation: fade-in 0.25s ease-in;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.slide-in-left {
  animation: slide-in-left 0.33s cubic-bezier(.82,0,.25,1);
}
@keyframes slide-in-left {
  from {
    transform: translateX(-32vw);
    opacity: 0.2;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* === CUSTOM SCROLLBAR === */
@media (min-width: 991px) {
  ::-webkit-scrollbar { width: 8px; background: #FFE7A0; }
  ::-webkit-scrollbar-thumb {
    background: #EAD94C;
    border-radius: 6px;
  }
}

/* === ACCESSIBILITY FOCUS === */
:focus {
  outline: 2px dashed #EAD94C;
  outline-offset: 2px;
}

/* === END OF STYLE === */
