/* ----------------------------------------------------
   Wild's Glade Pulizie | Style.css
   Modern gradient aesthetic. Flexbox only. Mobile-first.
   Brand colors: #256849 (primary), #B2D8C6 (secondary), #F9F9F6 (accent)
   Fonts: Montserrat (display), Open Sans (body)
---------------------------------------------------- */

/* ---- 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,
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #F9F9F6 0%, #B2D8C6 100%);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #256849;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #256849;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #194d36;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #256849;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.2rem; /* 35px */
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem; /* 25px */
}
h3 {
  font-size: 1.25rem; /* 20px */
}
p, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #256849;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.88em;
}

/* ---- Layout Containers (Flex Only) ---- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ----- Spacing Utilities & Patterns (MANDATORY) ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(37, 104, 73, 0.07);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(37,104,73,0.13);
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #F9F9F6;
  color: #256849;
  box-shadow: 0 2px 8px rgba(37,104,73,0.05);
  border: 1px solid #B2D8C6;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(37,104,73,0.15);
  transform: translateY(-2px);
}
.testimonial-details {
  font-size: 1rem;
  color: #256849;
  opacity: 0.85;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- Main Navigation (Desktop & Mobile) ---- */
header {
  background: linear-gradient(90deg, #F9F9F6 60%, #B2D8C6 100%);
  box-shadow: 0 2px 13px rgba(37,104,73,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.main-nav a {
  padding: 6px 16px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #256849;
  background: transparent;
  transition: background 0.2s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #B2D8C6;
  color: #194d36;
}
.main-nav img {
  width: 44px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

/* --- CTA Buttons --- */
.cta-primary,
button.cta-primary {
  background: linear-gradient(90deg, #256849 60%, #B2D8C6 100%);
  color: #fff;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 11px 32px;
  box-shadow: 0 3px 10px rgba(37,104,73,0.14);
  transition: background 0.23s, color 0.18s, box-shadow 0.17s;
  border: none;
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 8px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #256849;
  color: #fff;
  box-shadow: 0 5px 18px rgba(37,104,73,0.26);
  text-decoration: none;
}
.cta-secondary {
  background: #fff;
  color: #256849;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 26px;
  box-shadow: 0 1px 5px rgba(37,104,73,0.07);
  border: 2px solid #B2D8C6;
  transition: background 0.21s, color 0.14s, box-shadow 0.13s, border 0.14s;
  display: inline-block;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #B2D8C6;
  color: #174b34;
  border: 2px solid #256849;
  text-decoration: none;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 340px;
  background: linear-gradient(135deg, #B2D8C6 0%, #F9F9F6 100%);
  display: flex;
  align-items: center;
  padding: 60px 0 40px 0;
  margin-bottom: 0;
}
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.13rem;
  color: #216742;
  margin-bottom: 23px;
}

/* ---- Features Section ---- */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(37,104,73,0.06);
}
.feature-grid,
.values-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.feature-grid li,
.values-grid li,
.benefits-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #B2D8C6;
  color: #174b34;
  border-radius: 11px;
  padding: 12px 19px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  min-width: 220px;
  box-shadow: 0 1px 3px rgba(37,104,73,0.09);
}
.feature-grid li img,
.values-grid li img,
.benefits-grid li img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

/* ---- Services/Card Layout ---- */
.service-cards, .testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(37,104,73,0.08);
  padding: 26px 22px 20px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 260px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.service-card:hover {
  box-shadow: 0 5px 21px rgba(37,104,73,0.14);
  transform: translateY(-4px) scale(1.02);
}
.service-card h3 {
  margin-bottom: 7px;
  font-size: 1.13rem;
}
.service-card .price {
  color: #256849;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
}

.service-list > li {
  background: #F9F9F6;
  border-left: 6px solid #B2D8C6;
  border-radius: 0 12px 12px 0;
  margin-bottom: 22px;
  padding: 18px 22px 14px 19px;
  box-shadow: 0 1px 7px rgba(37,104,73,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list > li h2 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* ---- Testimonials ---- */
.testimonials-preview {
  background: #fff;
  border-radius: 13px;
  margin-bottom: 45px;
  padding: 40px 20px;
}
.testimonial-grid {
  gap: 24px;
}
.average-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #256849;
  margin: 16px 0;
  font-size: 1.07rem;
}
.average-rating img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(90deg, #256849 55%, #B2D8C6 100%);
  color: #fff;
  text-align: center;
  border-radius: 16px;
  padding: 40px 16px 30px 16px;
  margin-bottom: 0;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 22px;
  font-size: 1.55rem;
}
.cta-banner a.cta-primary {
  background: #fff;
  color: #256849;
  box-shadow: none;
  font-size: 1.1rem;
  margin: 22px 0 16px 0;
}
.cta-banner a.cta-primary:hover {
  background: #B2D8C6;
  color: #174b34;
}
.cta-banner p {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  justify-content: center;
}
.cta-banner p img {
  width: 21px;
  height: 21px;
  margin: 0 4px -5px 0;
}

/* ---- FAQ & Legal Pages ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.faq-list li {
  background: #F9F9F6;
  border-radius: 11px;
  border: 1px solid #B2D8C6;
  padding: 15px 17px 11px 16px;
  color: #256849;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: -8px;
  margin-bottom: 10px;
  color: #216742;
}
.text-section {
  margin-top: 18px;
  margin-bottom: 15px;
}
.legal {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 32px;
  padding: 38px 18px;
}

/* ---- Pricing Table ---- */
.pricing-table {
  width: 100%;
  background: #F9F9F6;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(37,104,73,0.07);
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  overflow-x: auto;
}
.pricing-table th, .pricing-table td {
  padding: 15px 14px;
  text-align: left;
  border-bottom: 1px solid #B2D8C6;
  color: #256849;
  font-size: 1rem;
}
.pricing-table thead th {
  background: #B2D8C6;
  color: #174b34;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---- Map Embed ---- */
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 8px 0;
  background: #F9F9F6;
  border-radius: 8px;
  padding: 17px 14px;
}
.map-embed img {
  width: 42px;
  height: 42px;
}

/* ---- Confirmation Page ---- */
.confirmation {
  background: #fff;
  border-radius: 14px;
  padding: 48px 22px 36px 22px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(37,104,73,0.07);
}
.confirmation .cta-primary {
  margin-top: 25px;
  margin-bottom: 18px;
}
.confirmation .contact-info-short p {
  color: #256849;
  font-size: 1rem;
  display: flex;
  gap: 12px;
  align-items: center;
}
.confirmation .contact-info-short img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

/* ---- Footer ---- */
footer {
  background: #256849;
  color: #fff;
  padding: 0;
  margin-top: 30px;
}
footer section {
  padding: 34px 0 18px 0;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
footer .content-wrapper > div {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
}
.footer-nav,
.footer-legal,
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-nav a,
.footer-legal a {
  color: #fff;
  font-size: 0.97rem;
  opacity: 0.96;
  margin-bottom: 0;
  padding: 0 2px;
  transition: color 0.18s, opacity 0.17s;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: #B2D8C6;
  opacity: 1;
  text-decoration: underline;
}
.footer-social {
  gap: 18px;
}
.footer-social a img {
  width: 25px;
  height: 25px;
  opacity: 0.92;
  transition: opacity 0.19s;
}
.footer-social a:hover img {
  opacity: 1;
}

/* ----- Mobile Navigation Styles ----- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #256849;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 15px;
  z-index: 201;
  border: none;
  box-shadow: 0 1px 6px rgba(37,104,73,0.12);
  transition: background 0.16s;
}
.mobile-menu-toggle:hover {
  background: #194d36;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 96vw;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, #F9F9F6 80%, #B2D8C6 100%);
  box-shadow: -2px 0 25px rgba(37,104,73,0.13);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(.64,.09,.08,1.0);
  z-index: 300;
  padding-top: 15px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #256849;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  position: absolute;
  right: 18px;
  top: 15px;
  z-index: 350;
  border: none;
  box-shadow: 0 2px 8px rgba(37,104,73,0.11);
  transition: background 0.13s;
}
.mobile-menu-close:hover {
  background: #194d36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 60px;
  align-items: flex-start;
  padding-left: 36px;
  z-index: 310;
}
.mobile-nav a {
  font-size: 1.19rem;
  padding: 10px 0;
  color: #256849;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 8px;
  width: 90%;
  transition: background 0.17s, color 0.13s;
  margin-bottom: 0;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B2D8C6;
  color: #174b34;
}

/* Hide mobile menu by default */
.main-nav {
  display: flex;
}
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.98rem;
    padding: 6px 10px;
  }
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    gap: 6px;
  }
}
@media (max-width: 820px) {
  .content-wrapper, .footer .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container, footer .container {
    padding: 0 4vw;
  }
  header {
    padding-bottom: 4px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .mobile-menu.open {
    display: flex;
  }
  .hero {
    padding: 40px 0 18px 0;
    min-height: 200px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .features, .testimonials-preview, .cta-banner, .legal, .confirmation {
    padding: 28px 4vw;
  }
  .feature-grid,
  .values-grid,
  .benefits-grid {
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }
  .service-cards, .testimonial-slider, .testimonial-grid {
    flex-direction: column;
    gap: 15px;
  }
  .service-card {
    min-width: unset;
    max-width: 100%;
    padding: 14px 11px 13px 13px;
  }
  .section {
    padding: 25px 2vw;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.36rem;
  }
  h1 {
    font-size: 1.39rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .cta-banner h2 {
    font-size: 1.09rem;
  }
  .feature-grid li,
  .values-grid li,
  .benefits-grid li {
    padding: 10px 12px;
    font-size: 0.98rem;
  }
  .pricing-table th, .pricing-table td{
    padding: 9px 6px;
    font-size: 0.97rem;
  }
  .service-list > li {
    padding: 10px 9px 5px 7px;
    font-size: 0.99rem;
  }
}

/* ---- Animations ---- */
.cta-primary, .cta-secondary, .main-nav a, .service-card, .testimonial-card, .footer-nav a, .mobile-nav a {
  transition: all 0.21s cubic-bezier(.46,.03,.52,.96);
}
.mobile-menu, .mobile-menu.open {
  transition: transform 0.28s cubic-bezier(.64,.09,.08,1.0);
}

/* ---- Cookie Consent Banner & Modal ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #256849;
  color: #fff;
  box-shadow: 0 -2px 17px rgba(37,104,73,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px 22px 10px;
  z-index: 999;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  gap: 24px;
  flex-wrap: wrap;
  min-height: 80px;
}
.cookie-banner p {
  color: #fff;
  margin-right: 18px;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #B2D8C6;
  color: #256849;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 1px 3px rgba(37,104,73,0.14);
  margin: 0 3px 6px 0;
  transition: background 0.17s, color 0.15s;
}
.cookie-btn.accept {
  background: #256849;
  color: #fff;
  border: 2px solid #B2D8C6;
}
.cookie-btn.accept:hover {
  background: #194d36;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #256849;
  border: 2px solid #B2D8C6;
}
.cookie-btn.reject:hover {
  background: #B2D8C6;
  color: #174b34;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-btn.settings:hover {
  background: #B2D8C6;
  color: #174b34;
  border: 2px solid #B2D8C6;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,104,73,0.75);
  z-index: 1050;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInModal 0.2s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #256849;
  border-radius: 20px;
  max-width: 400px;
  width: 92vw;
  padding: 36px 24px 26px 24px;
  box-shadow: 0 8px 40px rgba(37,104,73,0.19);
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #256849;
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.cookie-modal .category-label {
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal .category-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #B2D8C6;
  border-radius: 12px;
  border: none;
  margin-right: 8px;
  position: relative;
  outline: none;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-modal .category-toggle:checked {
  background: #256849;
}
.cookie-modal .category-toggle:disabled {
  background: #e8e8e4;
  opacity: 0.65;
  cursor: not-allowed;
}
.cookie-modal .category-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 2px;
  transition: left 0.15s;
}
.cookie-modal .category-toggle:checked:before {
  left: 16px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: #256849;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.16s;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover {
  color: #174b34;
  background: #B2D8C6;
}

@media (max-width: 490px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 27px 8px 18px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal .category-label {
    font-size: 0.97rem;
  }
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.hidden { display: none !important; }
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-2 { margin-top: 8px!important; }
.mb-2 { margin-bottom: 8px!important; }
.mt-4 { margin-top: 24px!important; }
.mb-4 { margin-bottom: 24px!important; }

/* ---- Focus Visible ---- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px dotted #256849;
  outline-offset: 2px;
}

/* ---- Accessibility for Testimonial & Review ---- */
.testimonial-card, .testimonial-details, .average-rating {
  color: #256849;
  background: #F9F9F6;
}

/* ---- Responsive spacing, avoid overlap ---- */
.section, .features, .cta-banner, .testimonials-preview, .legal, .confirmation {
  margin-bottom: 60px;
}
.card, .testimonial-card, .service-card, .feature-grid li, .values-grid li, .benefits-grid li, .faq-list li {
  margin-bottom: 20px;
}
.card-container, .service-cards, .testimonial-slider, .testimonial-grid, .content-grid {
  gap: 20px;
}

/* ---- End of Wild's Glade Pulizie CSS ---- */
