/* ============================================
   BALI VILLA CLEANING — Shared Styles
   Design: Tropical Luxury
   Palette: Ivory + Forest Green + Gold
   Fonts: Cormorant Garamond + DM Sans
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF8F4;
  --bg-alt: #F1EDE5;
  --bg-card: #FEFDFB;
  --forest: #1D3828;
  --forest-mid: #2E5240;
  --forest-light: #4A7A62;
  --gold: #C9A14A;
  --gold-light: #E8C87A;
  --gold-pale: #F9F3E7;
  --text: #252220;
  --text-muted: #6B6560;
  --white: #FEFDFB;
  --border: #E0DDD5;
  --border-light: #EDE9E2;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 8px rgba(29,56,40,0.06);
  --shadow: 0 3px 20px rgba(29,56,40,0.09);
  --shadow-lg: 0 8px 40px rgba(29,56,40,0.13);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; font-weight: 500; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
a { color: inherit; text-decoration: none; }

/* ── Layout helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--forest); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; max-width: 560px; margin-bottom: 48px; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--forest); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--forest); line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.6rem; color: var(--text-muted); font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  padding: 8px 13px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  cursor: pointer; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); background: var(--bg-alt); }
.nav-cta {
  background: var(--forest) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--forest-mid) !important; }

.nav-mobile-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--forest);
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 99;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); font-size: 1rem; font-weight: 500;
  padding: 12px 16px; border-radius: var(--radius);
  cursor: pointer; transition: background var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--bg-alt); }
.mobile-menu-cta {
  background: var(--forest) !important; color: var(--white) !important;
  text-align: center; margin-top: 8px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,161,74,0.35); }
.btn-outline {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--forest); background: var(--bg-alt); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }

/* ── Cards ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  background: var(--forest);
  position: relative; overflow: hidden;
}

/* Video backgrounds */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-video-desktop { display: block; }
.hero-video-mobile  { display: none; }

/* Dark overlay — keeps text legible over video */
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 30, 20, 0.55) 0%,
    rgba(15, 30, 20, 0.45) 60%,
    rgba(15, 30, 20, 0.65) 100%
  );
  z-index: 1;
}

.hero-inner { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,161,74,0.15); border: 1px solid rgba(201,161,74,0.35);
  color: var(--gold-light); padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; font-weight: 400; }
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
}
.hero-trust-item strong { color: var(--white); }

/* ── Stats bar ── */
.stats-bar { background: var(--gold-pale); border-top: 1px solid rgba(201,161,74,0.2); border-bottom: 1px solid rgba(201,161,74,0.2); }
.stats-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: space-around;
  padding: 28px 0; gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600;
  color: var(--forest); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

/* ── Services grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { width: 52px; height: 52px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--forest); }
.service-card p { font-size: 0.9rem; margin-bottom: 16px; }
.service-card .price-tag { font-size: 0.82rem; font-weight: 600; color: var(--forest-light); background: var(--bg-alt); padding: 4px 10px; border-radius: 6px; display: inline-block; }

/* ── Districts grid ── */
.districts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.district-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 18px;
  cursor: pointer; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.district-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.district-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.district-card:hover::before { transform: scaleX(1); }
.district-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-bottom: 12px; }
.district-name { font-weight: 600; font-size: 0.95rem; color: var(--forest); margin-bottom: 4px; }
.district-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ── How it works ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; position: relative; }
.step-item { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-pale); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--forest);
  margin: 0 auto 20px;
}
.section-dark .step-num { background: rgba(201,161,74,0.15); border-color: var(--gold); color: var(--gold-light); }
.step-title { font-size: 1.15rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.section-dark .step-title { color: var(--white); }
.step-desc { font-size: 0.88rem; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.1rem; color: var(--forest); font-weight: 600; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 780px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 500; font-size: 0.95rem;
  color: var(--forest); gap: 16px; transition: background var(--transition);
  user-select: none;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--forest); color: var(--white); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA Banner ── */
.cta-banner { background: var(--forest); border-radius: var(--radius-xl); padding: 56px clamp(24px, 5vw, 72px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; background: rgba(201,161,74,0.12); border-radius: 50%; pointer-events: none; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 420px; margin: 0; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: var(--forest); color: var(--white); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 14px 0 20px; max-width: 280px; }
.footer-heading { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; cursor: pointer; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: white; padding: 10px 20px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: filter var(--transition); }
.footer-whatsapp:hover { filter: brightness(1.1); }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── Page hero (inner pages) ── */
.page-hero { background: var(--forest); padding: calc(var(--nav-h) + 50px) 0 50px; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { cursor: pointer; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: transform var(--transition), box-shadow var(--transition); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--forest); border-color: var(--forest); color: var(--white); transform: scale(1.03); }
.pricing-card.featured p, .pricing-card.featured .feature-item { color: rgba(255,255,255,0.72); }
.pricing-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold-pale); color: var(--gold); padding: 4px 10px; border-radius: 6px; display: inline-block; margin-bottom: 16px; }
.pricing-card.featured .pricing-badge { background: rgba(201,161,74,0.2); color: var(--gold-light); }
.pricing-name { font-size: 1.25rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-price { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--forest); line-height: 1; margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: var(--gold-light); }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.15); }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.check-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .check-icon { background: rgba(201,161,74,0.2); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-weight: 500; color: var(--forest); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--forest); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg-card);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(29,56,40,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: #F0FDF4; border: 1px solid #86EFAC; border-radius: var(--radius); padding: 16px 20px; color: #166534; font-size: 0.9rem; font-weight: 500; display: none; }
.form-success.visible { display: block; }

/* ── Areas page ── */
.areas-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.area-detail-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); }
.area-detail-card:hover { box-shadow: var(--shadow-lg); }
.area-card-header { background: var(--forest); padding: 24px 24px 20px; }
.area-card-header h3 { color: var(--white); margin-bottom: 4px; font-size: 1.3rem; }
.area-card-header span { font-size: 0.78rem; color: var(--gold-light); }
.area-card-body { padding: 20px 24px 24px; }
.area-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.area-tag { font-size: 0.75rem; padding: 4px 10px; background: var(--bg-alt); border-radius: 100px; color: var(--text-muted); font-weight: 500; }

/* ── Services full page ── */
.service-full-card { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; transition: box-shadow var(--transition); }
.service-full-card:hover { box-shadow: var(--shadow-lg); }
.service-full-side { background: var(--forest); padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between; }
.service-full-side h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.service-full-side p { color: rgba(255,255,255,0.68); font-size: 0.9rem; }
.service-full-body { padding: 32px; }
.service-full-body h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 14px; }
.service-includes { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-includes li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }

/* ── Scroll fade-in animations ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { text-align: center; justify-content: center; }
  .cta-banner-actions { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-bar-inner { gap: 28px; }
  .pricing-card.featured { transform: none; }
  /* Switch to mobile video */
  .hero-video-desktop { display: none; }
  .hero-video-mobile  { display: block; }
}
