/* ============================================================
   White Dove Cleaners — Main Stylesheet
   ============================================================ */

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

/* ── DESIGN TOKENS ── */
:root {
  --navy: #0a1628;
  --navy-mid: #132040;
  --sky: #4ea8de;
  --sky-light: #a8d8f0;
  --sky-pale: #e8f4fd;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.10);
  --shadow-lg: 0 24px 64px rgba(10,22,40,0.14);
  --shadow-glow: 0 0 40px rgba(78,168,222,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── TYPOGRAPHY ── */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}
.label--gold { color: var(--gold); }
.label--white { color: rgba(255,255,255,0.6); }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }

.h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.01em; }
.h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -0.01em; }
.h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.h4 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--gray-600); }
p.lead { font-size: 1.2rem; line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em; border: none; cursor: pointer;
  border-radius: 100px; padding: 14px 32px;
  text-decoration: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sky); color: var(--white);
  box-shadow: 0 4px 20px rgba(78,168,222,0.35);
}
.btn-primary:hover { background: #3a95d0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(78,168,222,0.45); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
.btn-ghost-white {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8955a);
  color: var(--white); box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,169,110,0.45); }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 32px;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
#nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
  transition: color var(--transition);
}
#nav.scrolled .nav-logo { color: var(--navy); }

/* Real logo image — nav */
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* PNG has off-white background; drop-shadow blends it nicely on dark nav */
  filter: drop-shadow(0 1px 4px rgba(10,22,40,0.25));
  transition: filter 0.3s;
}
#nav.scrolled .nav-logo-img {
  filter: drop-shadow(0 1px 3px rgba(10,22,40,0.12));
}

/* Real logo image — footer */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}

/* Keep old icon/text hidden in case any remain */
.nav-logo-icon { display: none; }
.nav-logo-text { display: none; }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  color: rgba(255,255,255,0.85); transition: color var(--transition);
}
#nav.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover, #nav.scrolled .nav-links a:hover { color: var(--sky); }

.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px 0;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
#nav.scrolled .nav-toggle span { background: var(--navy); }

/* ══════════════════════════════════════════
   HERO — full-viewport two-column layout
   matching screenshot: text left, full-bleed
   photo right, stat cards bottom of photo
   ══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 0);
  background-size: 48px 48px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(78,168,222,0.22), transparent 70%);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.12), transparent 70%);
  bottom: 50px; left: 100px;
}

/* Full-width grid — no max-width so photo bleeds to edge */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
}

/* ── LEFT — text panel ── */
.hero-left {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 60px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(78,168,222,0.12); border: 1px solid rgba(78,168,222,0.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sky); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.3); }
}
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--sky-light); }
.hero-sub { color: rgba(255,255,255,0.65); max-width: 440px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 300; color: var(--white); line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  margin-top: 4px; letter-spacing: 0.05em;
}

/* ── RIGHT — full-bleed photo, no border-radius, bleeds to viewport edge ── */
/* ── RIGHT — full-bleed photo, exact reference technique ── */
.hero-right {
  order: 2;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;   /* gives absolute children something to fill */
}

/* suppress pseudo-elements from old CSS */
.hero-right::before,
.hero-right::after { display: none; }

/* Photo container — fills entire right column, behind illustration */
.hero-photo-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Slides stacked, hidden by default */
.hero-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-photo.slide-active { opacity: 1; }

/* Ken Burns zoom: starts slightly zoomed, eases to natural size */
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-photo.slide-active img {
  transform: scale(1);
}

/* Warm overlay matching reference — NOT a dark overlay */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(248,250,252,0.30) 0%,
    rgba(248,250,252,0.20) 40%,
    rgba(78,168,222,0.08)  100%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
  pointer-events: none;
}

/* Dot navigation — bottom-centre, matching reference */
.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.slide-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.slide-dot.active {
  background: var(--sky);
  border-color: var(--sky);
  transform: scale(1.3);
}

/* Hero illustration: dove + cards float on top of photo at z-index 2 */
.hero-illustration {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-big-icon {
  font-size: 7rem;
  filter: drop-shadow(0 8px 24px rgba(10,22,40,0.18));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-cards {
  display: flex;
  gap: 12px;
}

.hero-card {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(10,22,40,0.12);
  text-align: center;
  min-width: 96px;
}

.hc-icon { font-size: 1.4rem; margin-bottom: 6px; }
.hc-label {
  font-size: 0.62rem; font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hc-val {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--sky);
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   HERO RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-left {
    order: 1;
    padding: 120px 32px 40px;
    justify-content: flex-start;
  }
  .hero-right {
    order: 2;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .hero-left { padding: 100px 20px 32px; }
  .hero-right { height: 280px; }
  .hero-big-icon { font-size: 5rem; }
  .hero-cards { gap: 8px; }
  .hero-card { min-width: 80px; padding: 12px 14px; }
  .hero-stats { gap: 18px; }
  .hero-stat-num { font-size: 1.8rem; }
}




/* ── TRUST BAR ── */
#trust {
  background: var(--off-white); border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500; color: var(--gray-600);
}
.trust-item svg { width: 18px; height: 18px; stroke: var(--sky); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── SECTION SHARED ── */
section { padding: 100px 0; }
.section-header { margin-bottom: 64px; }
.section-header.text-center { display: flex; flex-direction: column; align-items: center; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 40px 36px;
  transition: var(--transition); cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(78,168,222,0.05), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(78,168,222,0.25); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sky-pale), #d4eaf7);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--sky); fill: none; stroke-width: 1.5; }
.service-card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 24px; }
.service-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px; background: var(--sky-pale); color: var(--sky);
  text-transform: uppercase;
}
.service-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent; color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-icon { background: rgba(78,168,222,0.15); }
.service-card.featured .service-tag { background: rgba(78,168,222,0.2); color: var(--sky-light); }

/* ── WHY CHOOSE US ── */
#why { background: var(--navy); padding: 120px 0; }
#why h2 { color: var(--white); }
#why .section-header p { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual {
  position: relative; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(78,168,222,0.12), rgba(78,168,222,0.04));
  border: 1px solid rgba(78,168,222,0.2);
  padding: 48px; overflow: hidden;
}
.why-visual-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.why-metrics { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-metric {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 28px; text-align: center;
}
.why-metric-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--sky-light); }
.why-metric-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; }
.why-item-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: rgba(78,168,222,0.12); border: 1px solid rgba(78,168,222,0.2);
  display: flex; align-items: center; justify-content: center;
}
.why-item-icon svg { width: 20px; height: 20px; stroke: var(--sky); fill: none; stroke-width: 1.8; }
.why-item h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; font-weight: 600; }
.why-item p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── PROCESS ── */
#process { background: var(--off-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), var(--sky), transparent);
  opacity: 0.3;
}
.process-step { padding: 0 20px; text-align: center; position: relative; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--sky-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--sky);
  box-shadow: var(--shadow-sm); position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-num { background: var(--sky); color: var(--white); border-color: var(--sky); box-shadow: var(--shadow-glow); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-text { font-size: 0.95rem; line-height: 1.75; color: var(--gray-800); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), #2e86c1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: 500;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-role { font-size: 0.8rem; color: var(--gray-400); }

/* ── FAQ ── */
#faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--navy);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--sky-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--sky); fill: none; stroke-width: 2.5; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sky); }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-answer { display: none; padding: 0 28px 24px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── FINAL CTA ── */
#cta {
  background: linear-gradient(135deg, var(--sky) 0%, #2e7aba 100%);
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 40px 40px;
}
#cta h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
#cta p { color: rgba(255,255,255,0.8); position: relative; z-index: 1; margin-bottom: 44px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
  width: 400px; height: 400px; background: rgba(255,255,255,0.08);
}
.cta-orb-1 { top: -100px; left: -100px; }
.cta-orb-2 { bottom: -100px; right: -100px; }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 80px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo { display: inline-flex; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--sky-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--sky); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 998; background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2rem; color: var(--white);
  text-decoration: none; transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--sky-light); }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.scroll-indicator svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* Stack hero to single column on tablet */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 120px 32px 64px;
    gap: 48px;
  }
  .hero-visual {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #nav { padding: 0 20px; }

  /* Logo must always be visible on mobile */
  .nav-logo { display: flex !important; }
  .nav-logo-img {
    height: 44px;
    width: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  .container, .container-wide { padding: 0 16px; }
  .btn-lg { padding: 16px 32px; }
  .nav-logo-img { height: 38px; }
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */

/* ══════════════════════════════════════════
   CONTACT FORM SECTION
   ══════════════════════════════════════════ */
#contact-form {
  background: var(--off-white);
  padding: 120px 0;
  border-top: 1px solid var(--gray-200);
}

/* ── Section header above the grid ── */
.contact-header {
  text-align: center;
  margin-bottom: 72px;
}
.contact-header .label { margin-bottom: 12px; display: block; }
.contact-header h2 { margin-bottom: 16px; }
.contact-header p { max-width: 520px; margin: 0 auto; }

/* ── Two-column grid: info left, form right ── */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

/* ── LEFT: info panel ── */
.contact-info {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: sticky;
  top: 108px;                 /* clears the fixed nav (80px) + 28px breathing room */
}

.contact-info .label {
  margin-bottom: 14px;
  display: block;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
}
.contact-info h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-info > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(78,168,222,0.15);
  border: 1px solid rgba(78,168,222,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Unicode glyph icons — no SVG, no rendering surprises */
.cdi-glyph {
  font-size: 16px;
  line-height: 1;
  color: var(--sky-light);
  display: block;
  text-align: center;
}

.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
  display: block;
}
a.contact-detail-value:hover { color: var(--sky-light); }

/* Divider inside info panel */
.contact-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 32px 0;
}

/* ── RIGHT: form card ── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-form-card:focus-within {
  box-shadow: var(--shadow-md);
  border-color: rgba(78,168,222,0.25);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-subtitle {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

/* ── FORM FIELDS ── */
.cf-row { display: flex; gap: 20px; }
.cf-row--2 > .cf-field { flex: 1 1 0; min-width: 0; }

.cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.cf-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.cf-required { color: var(--sky); margin-left: 2px; }

.cf-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.cf-input::placeholder { color: var(--gray-400); font-size: 0.92rem; }
.cf-input:focus {
  background: var(--white);
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(78,168,222,0.12);
}
.cf-input--error {
  border-color: #e05555;
  box-shadow: 0 0 0 3px rgba(224,85,85,0.08);
}

.cf-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Select with custom chevron — text span, not SVG */
.cf-select-wrap { position: relative; }
.cf-select { cursor: pointer; padding-right: 44px; }
.cf-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-60%);
  font-size: 18px;
  line-height: 1;
  color: var(--gray-400);
  pointer-events: none;
}

/* Inline validation errors */
.cf-error {
  font-size: 0.78rem;
  color: #e05555;
  margin-top: 5px;
  min-height: 1.1em;
  font-weight: 500;
}

/* Submit button */
.cf-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 16px 32px;
  font-size: 0.95rem;
}
.cf-submit--loading { opacity: 0.72; cursor: not-allowed; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SUCCESS STATE ── */
.form-success {
  text-align: center;
  padding: 60px 24px;
}
.form-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(74,222,128,0.3);
  font-size: 32px;
  color: white;
  line-height: 1;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p { font-size: 0.95rem; color: var(--gray-600); max-width: 340px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }
  .contact-info {
    position: static;          /* un-stick on narrow screens */
    padding: 40px 36px;
  }
  .contact-form-card { padding: 40px 36px; }
}

@media (max-width: 640px) {
  #contact-form { padding: 80px 0; }
  .contact-header { margin-bottom: 48px; }
  .contact-info { padding: 32px 28px; border-radius: var(--radius-lg); }
  .contact-form-card { padding: 32px 24px; border-radius: var(--radius-lg); }
  .cf-row--2 { flex-direction: column; gap: 0; }
}
