/*
Theme Name: Monica's Maid Service
Theme URI: https://monicasmaidservice.com
Author: Monica's Maid Service
Author URI: https://monicasmaidservice.com
Description: Professional cleaning service theme for Monica's Maid Service in Plano, TX. Optimized for local SEO, conversions, and service pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: monicas-maid
Tags: business, service, local-seo, cleaning, responsive
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --sage: #7a9e87;
  --sage-dark: #5d8269;
  --sage-light: #a8c4b0;
  --sage-pale: #e8f0eb;
  --cream: #faf8f4;
  --warm-white: #fff9f3;
  --charcoal: #2c2c2c;
  --mid: #5a5a5a;
  --light: #9a9a9a;
  --gold: #c9a96e;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 8px 32px rgba(122,158,135,0.15);
  --shadow-lg: 0 20px 60px rgba(122,158,135,0.18);
  --transition: all 0.25s cubic-bezier(0.16,1,0.3,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(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
}
h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.01em; }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }
p { font-size: 15px; line-height: 1.85; color: var(--mid); font-weight: 300; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--sage); }
strong { font-weight: 700; color: var(--charcoal); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section--alt { background: var(--warm-white); }
.section--sage { background: var(--sage); }
.section--dark { background: var(--charcoal); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--sage); }
.section--sage .eyebrow { color: rgba(255,255,255,0.7); }
.section--sage .eyebrow::before { background: rgba(255,255,255,0.5); }
.section--sage h2 { color: white; }
.section--sage p { color: rgba(255,255,255,0.75); }
.section-intro { font-size: 16px; max-width: 580px; margin-bottom: 52px; font-weight: 300; line-height: 1.85; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 40px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer;
  border: none; transition: var(--transition);
}
.btn--primary {
  background: var(--sage); color: white;
  box-shadow: 0 8px 24px rgba(122,158,135,0.35);
}
.btn--primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(122,158,135,0.45); }
.btn--outline {
  border: 1.5px solid var(--charcoal); color: var(--charcoal);
  background: transparent;
}
.btn--outline:hover { background: var(--charcoal); color: white; }
.btn--white {
  background: white; color: var(--sage);
}
.btn--white:hover { background: var(--sage-pale); transform: translateY(-2px); }
.btn--lg { padding: 18px 44px; font-size: 14px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122,158,135,0.15);
  transition: box-shadow 0.3s;
}
#site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; max-width: 1300px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--charcoal); letter-spacing: 0.02em;
}
.nav-logo span { color: var(--sage); }
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 8px 16px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mid);
}
.nav-menu > li > a:hover { color: var(--sage); }
.nav-menu .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: white; border-radius: var(--radius); padding: 12px 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 100;
  border: 1px solid rgba(122,158,135,0.1);
}
.dropdown li a {
  display: block; padding: 10px 20px;
  font-size: 13px; color: var(--mid); font-weight: 400;
}
.dropdown li a:hover { color: var(--sage); background: var(--sage-pale); }
.nav-cta { margin-left: 16px; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO - HOME
   ============================================================ */
.hero-home {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 120px 60px 80px;
  background: var(--warm-white); position: relative; overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute; top: -30vh; right: -10vw;
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,135,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-pale); color: var(--sage);
  padding: 6px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-home h1 { margin-bottom: 24px; }
.hero-home p { font-size: 17px; max-width: 460px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mid); font-weight: 400; }
.trust-badge-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.hero-visual {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-img-wrap {
  width: 420px; height: 520px;
  border-radius: 220px 220px 180px 180px;
  background: linear-gradient(145deg, var(--sage-pale), var(--sage-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; opacity: 0.5;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.float-card {
  position: absolute; background: white; border-radius: 14px;
  padding: 12px 18px; box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 10px;
}
.float-card.left { bottom: 80px; left: -40px; }
.float-card.right { top: 80px; right: -40px; }
.float-card .icon { font-size: 22px; }
.float-card .text { font-size: 11px; color: var(--mid); line-height: 1.4; }
.float-card .text strong { display: block; font-size: 15px; color: var(--charcoal); font-family: var(--font-display); font-weight: 700; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--sage); padding: 18px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}
.trust-bar-item span { font-size: 16px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: white; border-radius: 22px; padding: 32px 28px;
  border: 1px solid rgba(122,158,135,0.12);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--sage); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { font-size: 36px; margin-bottom: 18px; }
.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 16px; }
.service-card-tag {
  display: inline-block; background: var(--sage-pale); color: var(--sage);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 13px; font-weight: 600; color: var(--sage); letter-spacing: 0.04em;
}
.service-card-link:hover { gap: 10px; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
  background: white; border-radius: 18px; padding: 26px 30px;
  border: 1px solid rgba(122,158,135,0.15);
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.pricing-card.featured { background: var(--sage); border-color: var(--sage); }
.pricing-card .label { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-card .sublabel { font-size: 13px; color: var(--mid); font-weight: 300; }
.pricing-card.featured .sublabel { color: rgba(255,255,255,0.7); }
.pricing-card .price { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--sage); line-height: 1; }
.pricing-card.featured .price { color: white; }
.pricing-card .price sup { font-size: 18px; }
.pricing-cards-grid { display: grid; gap: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-card {
  background: white; border-radius: 22px; padding: 30px 26px;
  border: 1px solid rgba(122,158,135,0.1); transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; font-style: italic; line-height: 1.8; margin-bottom: 20px; color: var(--mid); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-pale); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.review-loc { font-size: 11px; color: var(--light); margin-top: 2px; }

/* ============================================================
   SERVICE PAGE HERO
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--warm-white);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,158,135,0.3), transparent);
}
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-pale); color: var(--sage);
  padding: 6px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 20px; }
.page-hero p { font-size: 16px; max-width: 500px; margin-bottom: 32px; }
.page-hero-visual {
  background: linear-gradient(145deg, var(--sage-pale), var(--sage-light));
  border-radius: 32px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; opacity: 0.6;
}
.page-hero-stats {
  display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--sage); line-height: 1;
}
.hero-stat .lbl { font-size: 12px; color: var(--light); margin-top: 4px; }

/* ============================================================
   CHECKLIST / INCLUDES
   ============================================================ */
.checklist { list-style: none; display: grid; gap: 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(122,158,135,0.1);
  font-size: 14px; color: var(--mid); line-height: 1.6; font-weight: 300;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.checklist-2col { grid-template-columns: 1fr 1fr; column-gap: 32px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid rgba(122,158,135,0.15); border-radius: 14px;
  margin-bottom: 10px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--sage); }
.faq-question {
  width: 100%; padding: 20px 24px; background: white;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; border: none; text-align: left;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--charcoal);
}
.faq-question:hover { background: var(--sage-pale); }
.faq-icon { font-size: 20px; color: var(--sage); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 24px 20px; background: white;
  font-size: 14px; color: var(--mid); line-height: 1.8; font-weight: 300;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-section { background: var(--cream); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.booking-form-wrap {
  background: white; border-radius: var(--radius-lg); padding: 44px 40px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(122,158,135,0.1);
}
.booking-form-wrap h3 { font-size: 28px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(122,158,135,0.2); border-radius: 12px;
  font-family: var(--font-body); font-size: 14px; color: var(--charcoal);
  background: var(--cream); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--sage); color: white; border: none;
  border-radius: 40px; font-family: var(--font-body); font-size: 14px;
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); margin-top: 8px;
  box-shadow: 0 8px 24px rgba(122,158,135,0.35);
}
.form-submit:hover { background: var(--sage-dark); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.contact-methods { display: grid; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  background: white; border-radius: 14px; padding: 16px 20px;
  border: 1px solid rgba(122,158,135,0.15); text-decoration: none; transition: var(--transition);
}
.contact-method:hover { border-color: var(--sage); transform: translateX(4px); }
.cm-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--sage-pale); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.cm-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--light); font-weight: 500; }
.cm-value { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-top: 2px; }
.hours-table { margin-top: 16px; }
.hour-row {
  display: flex; justify-content: space-between;
  padding: 9px 14px; border-radius: 8px; font-size: 13px;
}
.hour-row:nth-child(odd) { background: var(--sage-pale); }
.hour-row .day { font-weight: 600; }
.hour-row .time { color: var(--sage); font-weight: 500; }

/* ============================================================
   AREAS SECTION
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.area-pill {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 12px 16px; text-align: center;
  font-size: 13px; font-weight: 500; color: white; transition: var(--transition);
}
.area-pill:hover { background: rgba(255,255,255,0.25); }
.area-pill.primary { background: rgba(255,255,255,0.25); font-weight: 700; border-color: rgba(255,255,255,0.4); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.about-stat {
  background: white; border-radius: 14px; padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.about-stat .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--sage); line-height: 1; }
.about-stat .lbl { font-size: 11px; color: var(--mid); margin-top: 4px; }
.owner-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--sage-pale); border-radius: 14px; padding: 18px 22px; margin-top: 28px;
}
.owner-avatar {
  width: 50px; height: 50px; border-radius: 50%; background: var(--sage); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 700; flex-shrink: 0;
}
.owner-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.owner-title { font-size: 12px; color: var(--mid); margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--charcoal); color: rgba(255,255,255,0.55); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding: 60px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: white; display: block; margin-bottom: 14px; }
.footer-logo span { color: var(--sage-light); }
.footer-brand p { font-size: 13px; line-height: 1.8; font-weight: 300; max-width: 260px; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: white; font-weight: 600; margin-bottom: 18px; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sage-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 12px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--sage-light); }

/* ============================================================
   PAGE BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 100px 0 0; background: var(--warm-white);
  font-size: 12px; color: var(--light); letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--sage); }
.breadcrumb span { margin: 0 8px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,0.04); border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: white; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .container, .container--narrow { padding: 0 24px; }
  .section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 32px; }
  .hero-home { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .checklist-2col { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--sage-pale); padding: 16px 0; gap: 0; }
  .nav-hamburger { display: flex; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 20px; }
  .nav-inner { padding: 16px 24px; position: relative; }
  .trust-bar-inner { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.animate-fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
