/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  /* Brand colours */
  --green-dark:    #1a5c2a;
  --green-mid:     #2a7a3b;
  --green-light:   #4caf64;
  --green-brand:   #96ba96;
  --yellow:        #f5c518;
  --yellow-light:  #fde87a;
  --cream:         #f7f4ec;
  --cream-dark:    #ede9dc;
  --white:         #ffffff;
  --text-dark:     #1a2e1d;
  --text-mid:      #3d5c42;
  --text-light:    #6b8f70;
  --shadow:        rgba(26, 92, 42, 0.12);
  --shadow-strong: rgba(26, 92, 42, 0.22);

  /* Typography */
  --font-script:   'Dancing Script', cursive;
  --font-body:     'Nunito', sans-serif;

  /* Layout */
  --max-w:         1160px;
  --pad-x:         clamp(20px, 5vw, 56px);
  --nav-h:         80px;
  --radius:        16px;
  --radius-sm:     10px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: color-mix(in srgb, var(--green-brand) 35%, transparent);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  font-family: var(--font-script);
  color: var(--yellow);
  font-size: 1.15em;
  -webkit-text-stroke: 1px var(--green-dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 18px var(--shadow);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 8px 28px var(--shadow-strong); }

.btn-yellow {
  background: var(--yellow);
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(245, 197, 24, 0.35);
}
.btn-yellow:hover { background: var(--yellow-light); box-shadow: 0 8px 28px rgba(245, 197, 24, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-mid); color: var(--white); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

#nav.scrolled {
  background: rgba(247, 244, 236, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:not(.btn):hover {
  background: rgba(26, 92, 42, 0.08);
  color: var(--green-dark);
}

.nav-cta { margin-left: 8px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-hamburger:hover {
  background: rgba(26, 92, 42, 0.07);
  border-color: rgba(26, 92, 42, 0.12);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.2s var(--ease), width 0.2s var(--ease);
  transform-origin: center;
}

/* Hamburger → X when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    /* Always rendered, animated with max-height + opacity */
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(247, 244, 236, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid rgba(26, 92, 42, 0.12);
    box-shadow: 0 12px 40px rgba(26, 92, 42, 0.14);
    gap: 0;
    align-items: stretch;
    padding: 0 var(--pad-x);
    /* Closed state */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.38s var(--ease), opacity 0.28s var(--ease), padding 0.38s var(--ease);
  }

  .nav-links.open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    padding: 8px var(--pad-x) 20px;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(26, 92, 42, 0.07);
  }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 4px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 0;
    transition: color 0.18s, padding-left 0.18s;
  }
  .nav-links a:hover {
    background: none;
    color: var(--green-dark);
    padding-left: 10px;
  }

  /* CTA button in mobile menu */
  .nav-cta {
    margin: 14px 0 4px;
    padding: 14px 20px !important;
    text-align: center;
    justify-content: center;
    border-radius: 100px !important;
    font-size: 1rem !important;
    width: 100%;
  }
  .nav-links li:has(.nav-cta) { border-bottom: none; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--green-brand);
}

/* Decorative leaf shapes */
#hero::before, #hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--yellow);
}
#hero::before {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
}
#hero::after {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(76,175,100,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,197,24,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(42,122,59,0.2) 0%, transparent 40%);
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: calc(var(--s, 1) * 30px);
  height: calc(var(--s, 1) * 30px);
  margin-left: calc(var(--s, 1) * -15px);
  margin-top: calc(var(--s, 1) * -15px);
  background: var(--c, var(--yellow));
  clip-path: polygon(50% 0%, 57% 40%, 100% 50%, 57% 60%, 50% 100%, 43% 60%, 0% 50%, 43% 40%);
  filter: drop-shadow(0 0 6px var(--c, var(--yellow))) drop-shadow(0 0 12px var(--c, var(--yellow)));
  opacity: 0;
  animation: sparkTwinkle var(--dur, 3s) var(--d, 0s) infinite ease-in-out;
}

@keyframes sparkTwinkle {
  0%   { opacity: 0;   transform: scale(0)    rotate(0deg);  }
  18%  { opacity: 1;   transform: scale(1)    rotate(12deg); }
  50%  { opacity: 0.7; transform: scale(0.88) rotate(6deg);  }
  82%  { opacity: 1;   transform: scale(1)    rotate(20deg); }
  100% { opacity: 0;   transform: scale(0)    rotate(30deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 60px var(--pad-x);
}

.hero-logo {
  width: min(340px, 70vw);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  animation: heroFadeDown 0.8s var(--ease) both;
  border-radius: 12px;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--green-dark);
  margin-top: 24px;
  animation: heroFadeUp 0.8s 0.2s var(--ease) both;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(26,46,29,0.75);
  max-width: 480px;
  margin-top: 12px;
  animation: heroFadeUp 0.8s 0.35s var(--ease) both;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  animation: heroFadeUp 0.8s 0.45s var(--ease) both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 244, 236, 0.7);
  border: 1px solid rgba(26,92,42,0.15);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero-badge svg { flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
  animation: heroFadeUp 0.8s 0.55s var(--ease) both;
}

@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   WHY CHOOSE ME
   ============================================================ */
#why {
  padding: 80px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.why-icon {
  width: 56px; height: 56px;
  background: var(--green-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg { color: var(--yellow); }

.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 96px 0;
  background: var(--cream);
}

.about-inner {
  display: flex;
  justify-content: center;
}

.about-text {
  max-width: 680px;
  width: 100%;
}


.about-text .section-sub { margin-bottom: 24px; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a5c2a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}


/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 96px 0;
  background: var(--white);
}

.services-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 0;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 2px solid var(--cream-dark);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 8px 32px var(--shadow);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon.green { background: var(--green-dark); }
.service-card-icon.yellow { background: var(--yellow); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
}
.service-card h3 small {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 2px;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: background 0.2s;
}
.service-item:hover { background: rgba(76,175,100,0.08); }

.service-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.service-card.extras .service-item-dot { background: var(--yellow); }

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICES
   ============================================================ */
#prices {
  padding: 96px 0;
  background: var(--cream);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
}

.price-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.price-card .btn {
  margin-top: auto;
  justify-content: center;
}

.price-card > *:nth-last-child(2) {
  margin-bottom: 24px;
}
.price-card:hover { transform: translateY(-4px); }

.price-card.regular {
  background: var(--white);
  border: 3px solid var(--green-mid);
  box-shadow: 0 8px 32px var(--shadow-strong);
}

.price-card.regular:hover { box-shadow: 0 20px 52px var(--shadow-strong); }

.price-card.oneoff {
  background: var(--white);
  border: 1.5px solid rgba(26, 92, 42, 0.15);
}

.price-card.oneoff:hover { box-shadow: 0 8px 24px var(--shadow); }

.price-card.deepclean {
  background: var(--white);
  border: 1.5px solid rgba(26, 92, 42, 0.15);
}
.price-card.deepclean:hover { box-shadow: 0 8px 24px var(--shadow); }

.price-card.office {
  background: var(--white);
  border: 1.5px solid rgba(26, 92, 42, 0.15);
}
.price-card.office:hover { box-shadow: 0 8px 24px var(--shadow); }

.price-examples {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-examples li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.price-ex-type {
  color: rgba(26,92,42,0.6);
  font-weight: 600;
}

.price-ex-cost {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.84rem;
}

.price-popular {
  position: absolute;
  top: -14px;
  left: 36px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-mid);
  padding: 3px 12px;
  border-radius: 100px;
}

.price-tag {
  font-family: var(--font-script);
  font-size: 3rem;
  line-height: 1;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.price-unit {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(26,92,42,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.price-card p {
  font-size: 0.88rem;
  color: rgba(26,92,42,0.6);
  line-height: 1.55;
  margin-bottom: 24px;
}

.price-card .btn-outline {
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.price-card .btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.price-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(26,92,42,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 600px) {
  .prices-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 96px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 32px;
}

.testimonial-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  border: 2px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-4px);
}

.quote-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--yellow);
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .testimonial-card { padding: 28px 24px; }
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
#area {
  padding: 80px 0;
  background: var(--cream);
}

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.area-map {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 8px 32px var(--shadow);
}

.area-group-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: 28px;
  margin-bottom: 14px;
}

.area-group-title:first-of-type { margin-top: 0; }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 10px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 700;
}

.area-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

.area-group-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.area-note {
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 820px) {
  .area-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 96px 0;
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 2px solid var(--cream-dark);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--green-light); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--green-dark); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--green-brand);
  color: var(--green-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 96px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--cream-dark);
  transition: border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.contact-item:hover {
  border-color: var(--green-light);
  box-shadow: 0 4px 16px var(--shadow);
}

.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(245, 197, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: background 0.25s, color 0.25s;
}

/* Platform brand colour flash on hover */
[data-platform="whatsapp"]:hover .contact-item-icon {
  background: #25D366;
  color: #fff;
}
[data-platform="facebook"]:hover .contact-item-icon {
  background: #1877F2;
  color: #fff;
}

.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item-text span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 2px solid var(--cream-dark);
}

.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.contact-form-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(42,122,59,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1c3d26;
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; border-radius: 8px; }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
