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

:root {
  --brand: #2E7D32;
  --brand-dark: #1B5E20;
  --brand-mid: #388E3C;
  --brand-light: #E8F5E9;
  --brand-accent: #66BB6A;
  --dark: #1C2B1E;
  --dark-2: #2D3F30;
  --mid: #4A5E4C;
  --light: #7A917C;
  --border: #D6E8D7;
  --white: #FFFFFF;
  --bg-soft: #F4FAF4;
  --success: #43A047;
  --amber: #F59E0B;
  --radius: 14px;
  --shadow: 0 2px 16px rgba(46,125,50,0.10);
  --shadow-lg: 0 12px 48px rgba(46,125,50,0.16);
  --font: 'Poppins', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,125,50,0.30); }
.btn-ghost { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-ghost:hover { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-white { background: var(--white); color: var(--brand); border-color: var(--white); }
.btn-white:hover { background: var(--brand-light); }
.btn-nav { background: var(--brand); color: var(--white) !important; padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.3rem; font-weight: 800; color: var(--brand); display: flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.logo-leaf { font-size: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--brand); }
.nav-links a.page-tab { cursor: pointer; }
.nav-links a.page-tab.active {
  color: var(--brand);
  font-weight: 700;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.2s; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 24px; gap: 16px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu a { font-weight: 500; color: var(--mid); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #F1F8F1 0%, #FAFFFE 55%, #EDF7EE 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; top: -180px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,125,50,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: -80px; left: 15%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(102,187,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-content { max-width: 520px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-light); color: var(--brand);
  padding: 7px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(46,125,50,0.2);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 20px; }
.green-text { color: var(--brand); }
.hero-sub { font-size: 1.05rem; color: var(--mid); margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-proof { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--light); }
.hero-proof .stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }

/* Hero Cards */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
  position: relative;
  animation: float 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.card-icon { font-size: 1.9rem; }
.card-text { flex: 1; }
.card-text strong { display: block; font-size: 0.95rem; font-weight: 600; }
.card-text span { font-size: 0.825rem; color: var(--light); }
.card-badge {
  background: var(--brand); color: var(--white);
  padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
}

/* ===== SERVICE HERO (service pages) ===== */
.svc-hero {
  padding: 120px 0 64px;
  background: var(--brand-light);
  border-bottom: 2px solid var(--border);
}
.svc-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.svc-hero-icon {
  font-size: 5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 8px;
}
.svc-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--dark);
}

/* ===== SERVICE DETAIL GRID ===== */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.svc-includes h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.svc-list { display: flex; flex-direction: column; gap: 12px; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.975rem;
  color: var(--mid);
  font-weight: 500;
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.check-white {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.svc-pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.svc-pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--mid);
}

/* ===== TIER CARDS (car detailing) ===== */
.svc-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.tier-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.tier-card-featured {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(46,125,50,0.30);
}
.tier-card-featured h3,
.tier-card-featured .price { color: var(--white); }
.tier-card-featured .svc-list li { color: rgba(255,255,255,0.9); }
.tier-icon { font-size: 2.5rem; margin-bottom: 16px; }
.tier-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.tier-card .svc-list { margin: 20px 0 28px; }

/* ===== ABOUT SECTION ===== */
.section-about {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo-wrap {
  display: flex;
  justify-content: center;
}
.photo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  border: 3px dashed var(--brand-accent);
  border-radius: 18px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.photo-placeholder:hover { border-color: var(--brand); }
.photo-placeholder-inner {
  text-align: center;
  padding: 24px;
  color: var(--brand);
}
.photo-icon { font-size: 3.5rem; display: block; margin-bottom: 12px; }
.photo-placeholder-inner p { font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.photo-placeholder-inner small { font-size: 0.78rem; color: var(--light); font-family: monospace; }

.about-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.02em; }
.about-text p { color: var(--mid); font-size: 0.975rem; line-height: 1.75; margin-bottom: 18px; }
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.value-item p { font-size: 0.875rem; color: var(--light); margin: 0; }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-soft); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand); margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.section-header p { color: var(--mid); font-size: 1rem; }

/* ===== REVIEW DISCLAIMER ===== */
.review-disclaimer {
  margin-top: 10px;
  font-size: 0.82rem !important;
  color: #b45309 !important;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 8px 14px;
  display: inline-block;
}

/* ===== HOW IT WORKS ===== */
.steps { display: flex; align-items: flex-start; gap: 0; justify-content: center; }
.step { flex: 1; max-width: 280px; text-align: center; padding: 0 24px; }
.step-num { font-size: 3rem; font-weight: 800; color: var(--brand-light); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--mid); font-size: 0.9rem; line-height: 1.65; }
.step-arrow { font-size: 1.8rem; color: var(--brand-accent); padding: 36px 0 0; opacity: 0.6; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; position: relative;
}
.price-card-featured {
  background: var(--brand); border-color: var(--brand); color: var(--white);
  transform: scale(1.04); box-shadow: 0 16px 48px rgba(46,125,50,0.30);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--white);
  padding: 4px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 700;
  white-space: nowrap;
}
.price-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; opacity: 0.75; }
.price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 22px; }
.price span { font-size: 1rem; font-weight: 400; opacity: 0.6; }
.price-card ul { margin-bottom: 26px; }
.price-card li { font-size: 0.875rem; padding: 6px 0; display: flex; gap: 8px; align-items: center; opacity: 0.9; border-bottom: 1px solid rgba(0,0,0,0.05); }
.price-card-featured li { border-bottom-color: rgba(255,255,255,0.12); }
.price-card li::before { content: '✓'; font-weight: 700; color: var(--brand); flex-shrink: 0; }
.price-card-featured li::before { color: var(--white); }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 0; }
.testi .stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi p { color: var(--mid); font-size: 0.925rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi strong { font-size: 0.85rem; color: var(--dark); font-weight: 600; }
.testi-disclaimer {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  color: #b45309;
  font-style: italic;
  opacity: 0.8;
}

/* ===== BOOKING CTA ===== */
.section-cta { background: var(--brand-light); border-top: 2px solid var(--border); }
.cta-box { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-box h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 10px; }
.cta-box > p { color: var(--mid); margin-bottom: 36px; font-size: 1rem; }
.booking-form { text-align: left; background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); border: 2px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.825rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select {
  padding: 11px 15px; border: 2px solid var(--border); border-radius: 9px;
  font-size: 0.95rem; font-family: var(--font); color: var(--dark);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}
.form-note { font-size: 0.8rem; color: var(--light); margin-top: 12px; text-align: center; line-height: 1.5; }
#bookBtn { margin-top: 8px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; margin-bottom: 44px; }
.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: block; font-size: 1.2rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.socials a:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 16px; padding: 36px; max-width: 460px; width: 90%;
  box-shadow: var(--shadow-lg); transform: translateY(18px); transition: transform 0.3s;
  position: relative; border: 2px solid var(--border);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--light); }
.modal-close:hover { color: var(--dark); }
.modal h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; }
.modal-sub { font-size: 0.875rem; color: var(--light); margin-bottom: 22px; }
#payment-element { min-height: 120px; background: var(--brand-light); border-radius: 9px; padding: 18px; display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 0.9rem; font-weight: 500; border: 2px solid var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.8rem; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .service-card { flex: 1; min-width: 190px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { order: -1; }
  .photo-placeholder { max-width: 100%; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-tiers { grid-template-columns: 1fr; }
  .tier-card-featured { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .testimonials { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .svc-hero-inner { flex-direction: column; gap: 16px; }
  .svc-hero-icon { font-size: 3.5rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
