/* ===================== RESET & BASE ===================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FFF8F2;
  color: #232639;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
}
img, svg {
  display: block;
  max-width: 100%;
  border: 0;
}
a {
  color: #F06A34;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #c15221;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #232639;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }

p, ul, ol, dl, cite {
  margin-bottom: 16px;
  font-size: 1rem;
}
ul, ol {
  padding-left: 22px;
}
blockquote {
  border-left: 5px solid #F06A34;
  background: #fff6ea;
  padding: 18px 24px;
  border-radius: 12px;
  font-style: italic;
  color: #46312a;
  margin: 20px 0;
}
blockquote cite {
  display: block;
  color: #8c5c27;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}
cite {
  font-size: 0.98em;
  color: #a75c15;
  font-weight: 500;
}
strong { color: #F06A34; font-weight: 700; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===================== LAYOUT SECTIONS WITH FLEX ===================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(244, 121, 39, 0.08);
}

.hero {
  background: #FFE7C2;
  border-radius: 0 0 32px 32px;
  padding: 48px 0 36px 0;
  margin-bottom: 38px;
  box-shadow: 0 8px 32px 0 rgba(240, 106, 52, 0.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
}

.text-section {
  background: none;
  border-radius: 18px;
  padding: 0;
}

@media (min-width: 768px) {
  .hero .container,
  .hero .content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .text-section {
    flex: 1 1 0;
    padding: 0 16px;
  }
}

/* ===================== NAVBAR & HEADER ===================== */
header {
  background: #FFE7C2;
  box-shadow: 0 3px 24px 0 rgba(244,121,39,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 44px;
  width: auto;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #232639;
  border-radius: 16px;
  padding: 7px 18px;
  font-weight: 500;
  transition: background .18s, color .18s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #F06A34;
  color: #fff;
}
.cta-btn, .secondary-cta {
  background: #F06A34;
  color: #fff !important;
  padding: 9px 24px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(244,106,52,0.13);
  transition: background .22s, color .22s, box-shadow .22s;
  cursor: pointer;
  outline: none;
  margin-left: 12px;
  display: inline-block;
}
.secondary-cta {
  background: #232639;
  color: #FFE7C2 !important;
  font-weight: 600;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #c15221;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #F06A34;
  color: #fff !important;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #F06A34;
  border-radius: 14px;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 101;
  transition: background .15s;
  display: block;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFE7C2;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35, 38, 57, 0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.42,.26,.53,1.02),opacity 0.16s,visibility 0s 0.32s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 18px; right: 22px;
  z-index: 1201;
  cursor: pointer;
  border-radius: 9px;
  padding: 4px 9px;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F06A34;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 72px;
  align-items: flex-start;
  padding: 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #FFE7C2;
  background: none;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 600;
  width: 100%;
  transition: background .14s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F06A34;
  color: #fff;
}

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

/* ===================== FOOTER ===================== */
footer {
  background: #232639;
  color: #FFE7C2;
  padding: 40px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.logo-footer img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFE7C2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  border-radius: 10px;
  padding: 6px 10px;
  transition: background .16s, color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F06A34;
  color: #fff;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
}
.contact-footer img {
  vertical-align: sub;
  margin-right: 7px;
  height: 18px;
  width: auto;
}
.brand-tagline {
  color: #FFC97A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 500;
  letter-spacing: .05em;
  margin-top: 18px;
}

@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 55px;
  }
  .logo-footer {
    margin-right: 32px;
  }
  .contact-footer {
    flex: 1 1 0;
    margin-left: 28px;
  }
}

/* ===================== LISTS & FEATURES ===================== */
.features-list, .services-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-bottom: 24px;
}
.features-list li, .services-list li {
  background: #fff6ea;
  border-radius: 16px;
  padding: 16px 20px 16px 20px;
  color: #232639;
  font-size: 1.04rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px 0 rgba(240, 106, 52, 0.07);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: box-shadow .18s, transform .12s;
}
.features-list li img {
  width: 34px; height: 34px;
  margin-right: 7px;
}
.features-list li:hover, .services-list li:hover {
  box-shadow: 0 6px 24px 0 rgba(240, 106, 52, 0.13);
  transform: translateY(-2px) scale(1.01);
}
.services-list li {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.services-list h3 {
  font-size: 1.16em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}
.services-list .price, .price {
  color: #F06A34;
  background: #ffecd7;
  border-radius: 10px;
  padding: 2px 12px 2px 12px;
  font-weight: 700;
  font-size: 1em;
  margin-top: 3px;
  display: inline-block;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 2px solid #ffe7c2;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(240, 106, 52, 0.09);
  padding: 24px 28px;
  margin-bottom: 20px;
  min-width: 0;
  color: #232639;
  max-width: 600px;
  transition: box-shadow .19s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(240, 106, 52, 0.17);
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.testimonial-card cite {
  color: #a85b1a; font-size: 0.99em; margin-top: 2px;
}
.before-after {
  display: flex;
  flex-direction: column;
  background: #fff3e2;
  border-radius: 14px;
  padding: 12px 16px;
  margin: 10px 0;
  gap: 6px;
}

/* ===================== FAQ ===================== */
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F06A34;
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 3px;
  margin-top: 10px;
  cursor: pointer;
}
.faq-list dd {
  font-size: 1rem;
  color: #232639;
  margin-bottom: 10px;
  margin-left: 15px;
}

/* ===================== OTHER UI ELEMENTS ===================== */
.section h2 {
  font-size: 1.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.map-snippet img {
  width: 100%;
  height: auto;
  max-width: 340px;
  border-radius: 10px;
  box-shadow: 0 3px 22px 0 rgba(240,106,52,0.11);
  margin-bottom: 15px;
}
.secondary-contact {
  color: #F06A34;
  font-style: italic;
}
dt, dd {
  margin-bottom: 10px;
}

/* ===================== SPACING & ALIGNMENT FLEXBOX PATTERNS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 12px 0 rgba(244,121,39,0.08);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 1240px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonials {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.2rem; }
  .section, .hero { padding: 24px 8px; }
  .footer-nav {
    gap: 9px;
    flex-wrap: wrap;
  }
  .brand-tagline {
    font-size: .95em;
  }
  .testimonial-card {
    padding: 16px 10px;
    max-width: 100%;
  }
  .features-list li, .services-list li {
    padding: 14px 10px 14px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================== ANIMATIONS & INTERACTIONS ===================== */
.cta-btn, .secondary-cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .2s, color .2s, box-shadow .18s, transform .11s;
}
.cta-btn:active, .secondary-cta:active, .mobile-menu-close:active, .mobile-menu-toggle:active {
  transform: scale(0.98);
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(240,106,52,0.18);
  transition: box-shadow .2s;
}

/* ===================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 15px; right: 15px; bottom: 20px;
  z-index: 9985;
  background: #FFE7C2;
  color: #232639;
  box-shadow: 0 2px 24px 0 rgba(240,106,52,0.11);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 22px 24px 20px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: opacity .25s, transform .25s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 4px;
}
.cookie-banner .accept-btn, 
.cookie-banner .reject-btn, 
.cookie-banner .settings-btn {
  border: none;
  background: #F06A34;
  color: #fff;
  font-size: 1rem;
  border-radius: 14px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(240,106,52,0.11);
  margin-right: 0;
  transition: background .18s, color .18s, box-shadow .18s;
}
.cookie-banner .reject-btn {
  background: #232639;
  color: #FFE7C2;
}
.cookie-banner .settings-btn {
  background: #fff;
  color: #F06A34;
  border: 1px solid #F06A34;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #c15221;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #4c4b58;
  color: #fff;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #fff3e9;
  color: #F06A34;
  border-color: #c15221;
}

/* ===================== COOKIE PREFERENCES MODAL ===================== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9991;
  background: rgba(35,38,57,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s .35s, opacity .35s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #232639;
  border-radius: 17px;
  max-width: 430px;
  width: 100%;
  padding: 34px 38px 32px 38px;
  box-shadow: 0 8px 38px 0 rgba(240,106,52,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #F06A34;
  cursor: pointer;
  border-radius: 7px;
  transition: background .15s;
  padding: 4px 10px;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #fff6ea;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  margin-bottom: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #ffecd7;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background .23s;
  cursor: pointer;
  margin-left: 10px;
}
.cookie-toggle:checked {
  background: #F06A34;
}
.cookie-toggle:before {
  content: "";
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left .23s;
  box-shadow: 0 2px 6px 0 rgba(35,38,57,0.14);
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-modal .cookie-category .desc {
  flex: 1 1 0;
  font-size: 0.95em;
  color: #62574f;
  font-weight: 400;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  flex-direction: row;
  margin-top: 6px;
}
.cookie-modal .modal-actions button {
  min-width: 89px;
  padding: 7px 16px;
}

/* ===================== VISUAL HIERARCHY & CONSISTENCY ===================== */
.section,
.features-list li,
.services-list li,
.testimonial-card,
.card {
  margin-bottom: 20px;
}
.content-wrapper,
.card-container,
.content-grid {
  gap: 20px;
}
.text-section,
.feature-item {
  gap: 15px;
}
h1, h2, h3, h4, h5, h6 { letter-spacing: 0.01em; }

/* ===================== CUSTOM SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 9px;
  background: #FFE7C2;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #F06A34;
  border-radius: 10px;
}

/* ===================== MISCELLANEOUS ===================== */
.hide { display: none !important; }
.show { display: inherit !important; }

/* ===================== PRINT ===================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none !important; }
  a:after { content: " (" attr(href) ")"; }
}
