/* ================================================================
   freshVent Air Duct Services — Premium Design System
   Fonts: Montserrat (headlines) · Inter (body)
   Brand: Navy #0B1D3A · Turquoise #14B8A6
   Design: Modern Corporate Clean · $5,000 tier
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:          #0B1D3A;
  --navy-700:      #122645;
  --navy-600:      #1A3560;
  --navy-500:      #1E4080;
  --green:         #14B8A6;
  --green-600:     #0F766E;
  --green-400:     #2DD4BF;
  --green-100:     #CCFBF1;
  --white:         #FFFFFF;
  --gray-50:       #F8FAFB;
  --gray-100:      #F1F4F7;
  --gray-200:      #E4E9EF;
  --gray-300:      #CBD5E1;
  --gray-400:      #94A3B8;
  --gray-500:      #64748B;
  --gray-600:      #475569;
  --gray-700:      #334155;
  --gray-900:      #0F172A;

  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-2xl:    32px;
  --radius-full:   9999px;

  --shadow-xs:     0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:     0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-md:     0 8px 24px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.06);
  --shadow-lg:     0 16px 48px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-xl:     0 24px 64px rgba(15,23,42,0.16), 0 12px 24px rgba(15,23,42,0.08);
  --shadow-green:  0 8px 32px rgba(20,184,166,0.30);

  --transition-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --transition-base:   250ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   400ms cubic-bezier(0.4,0,0.2,1);

  --max-w:         1400px;
  --section-py:    120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); line-height: 1.7; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── Container ── */
.container { width: min(90%, var(--max-w)); margin: 0 auto; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--gray-500); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  margin-bottom: 20px;
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 1.1rem; line-height: 1.85; color: var(--gray-500); }
.section-header.left { text-align: left; margin: 0 0 56px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-green {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 20px 44px; font-size: 1.1rem; border-radius: var(--radius-lg); font-weight: 700; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Sticky Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition-base);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
/* Logo overflow for premium branding */
.site-logo .logo-img {
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
}
/* Nav */
.site-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: right var(--transition-base);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  font-family: var(--font-head);
  transition: color var(--transition-fast);
}
.header-phone:hover { color: var(--green-600); }
.phone-icon {
  width: 32px; height: 32px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* ── Top Info Bar ── */
.info-bar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.info-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.info-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.info-bar-item { display: flex; align-items: center; gap: 6px; }
.info-bar-item .dot { color: var(--green); font-size: 0.6rem; }
.info-bar a { color: var(--green); font-weight: 600; transition: color var(--transition-fast); }
.info-bar a:hover { color: var(--green-400); }

/* ── Hero Split ── */
.hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 100vh;
  padding-top: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(110px, 14vh, 160px) clamp(40px, 6vw, 100px) 100px;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,0.07), transparent 70%);
  pointer-events: none;
}

.hero-right {
  position: relative;
  background:
    linear-gradient(160deg, rgba(11,29,58,0.88) 0%, rgba(11,29,58,0.72) 40%, rgba(11,29,58,0.60) 100%),
    url('./assets/pic/hero-technician.webp') center/cover no-repeat,
    linear-gradient(160deg, #0B1D3A 0%, #1A3560 50%, #0F3050 100%);
  overflow: hidden;
}
/* Decorative grid overlay */
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-right-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  color: var(--white);
}

.hero-badge { margin-bottom: 20px; }
.hero h1 {
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 .accent { color: var(--green-600); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

/* Hero Right: Stats Floating Panel */
.hero-stats-panel {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-right-features { display: flex; flex-direction: column; gap: 14px; }
.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.hero-feature-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(20,184,166,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* ── Lead Form (Hero) ── */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.lead-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-600));
}
.form-head { margin-bottom: 20px; }
.form-head h3 { font-size: 1.15rem; margin-bottom: 4px; }
.form-head p { font-size: 0.85rem; color: var(--gray-400); }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-group.span2 { grid-column: 1 / -1; }

.f-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: all var(--transition-fast);
  -webkit-appearance: none;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}
.f-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.f-textarea { resize: vertical; min-height: 80px; }
.form-submit-row { grid-column: 1 / -1; margin-top: 4px; }
.form-submit-row .btn { width: 100%; padding: 15px; font-size: 1rem; }
.form-note { grid-column: 1/-1; text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 4px; }

/* ── Hero Title & Subtitle ── */
.hero-title { letter-spacing: -0.02em; }
.hero-title span { color: var(--green-600); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}
.hero-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-600));
}
.hero-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.hero-form-header strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.hero-form-header span {
  font-size: 0.82rem;
  color: var(--green-600);
  font-weight: 600;
  background: var(--green-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
  margin-bottom: 20px;
}
.trust-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-review-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}

/* ── Hero Stats ── */
.hs-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.hs-num span { font-size: 1.4rem; }
.hs-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.ps-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
}

/* ── Review Card Author ── */
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--navy);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-icon {
  width: 34px; height: 34px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }

/* ── Sections ── */
section { padding: var(--section-py) 0; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
/* Background image for each card */
.service-card.duct {
  background:
    linear-gradient(to top, rgba(11,29,58,0.97) 30%, rgba(11,29,58,0.60) 70%, rgba(11,29,58,0.30) 100%),
    url('./assets/pic/air-duct.webp') center/cover no-repeat,
    linear-gradient(160deg, #0B1D3A, #1E4080);
}
.service-card.dryer {
  background:
    linear-gradient(to top, rgba(11,29,58,0.97) 30%, rgba(11,29,58,0.60) 70%, rgba(11,29,58,0.30) 100%),
    url('./assets/pic/dryer-vent.webp') center/cover no-repeat,
    linear-gradient(160deg, #122645, #1A3560);
}
.service-card-body {
  padding: 40px;
  position: relative; z-index: 1;
}
.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: background var(--transition-base), border-color var(--transition-base);
}
.service-card:hover .service-card-icon {
  background: rgba(20,184,166,0.25);
  border-color: rgba(20,184,166,0.5);
}
.service-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.service-features {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.check-icon {
  width: 18px; height: 18px; min-width: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--navy);
  font-weight: 900;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition-fast);
}
.service-card:hover .service-cta { gap: 12px; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 20%, var(--gray-200) 80%, transparent);
}
.process-step {
  text-align: center;
  padding: 0 28px;
  position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 20px;
  position: relative;
  transition: all var(--transition-base);
}
.process-step:hover .step-num {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
  box-shadow: var(--shadow-green);
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.7; }

/* ── Why Us Split ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    url('./assets/pic/about_team_photo.webp') center/cover no-repeat,
    linear-gradient(135deg, var(--navy), var(--navy-600));
  min-height: 500px;
}
.why-image-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.6) 0%, transparent 60%);
}
.why-img-badge {
  position: absolute;
  bottom: 28px; left: 28px; z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.why-img-badge .big-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.why-img-badge .big-lbl { font-size: 0.8rem; color: var(--gray-500); }

.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: all var(--transition-base);
}
.why-item:hover {
  border-color: rgba(20,184,166,0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.why-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why-item h4 { font-size: 0.975rem; margin-bottom: 4px; }
.why-item p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 24px;
  font-size: 8rem;
  line-height: 1;
  color: var(--green-100);
  font-family: Georgia, serif;
  font-weight: 900;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(20,184,166,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  object-fit: cover;
}
.reviewer-name { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.reviewer-meta { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }
.review-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; }
.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-weight: 500;
}
.google-g {
  width: 18px; height: 18px;
  background: #4285F4;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  font-family: Arial, sans-serif;
}

/* ── Stats Band ── */
.stats-band { padding: 90px 0; }
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-cell {
  background: var(--white);
  padding: 48px 32px;
  text-align: center;
}
.stat-cell .big { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-cell .big span { color: var(--green-600); }
.stat-cell .lbl { font-size: 0.85rem; color: var(--gray-400); margin-top: 8px; font-weight: 500; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 60%, #0D2B50 100%);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner::after {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 0 auto 48px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--gray-900);
  padding: 88px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 24px;
  max-width: 320px;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-rating .stars { color: #F59E0B; letter-spacing: 2px; }
.footer-rating .score { font-family: var(--font-head); font-weight: 700; color: var(--white); }

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--green); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.fc-icon { color: var(--green); font-size: 0.9rem; margin-top: 2px; min-width: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--green); }

.hours-mini { display: flex; flex-direction: column; gap: 4px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.82rem; }
.hours-row .day { color: rgba(255,255,255,0.4); }
.hours-row .time { color: rgba(255,255,255,0.7); font-weight: 500; }
.hours-row.closed .time { color: rgba(255,255,255,0.28); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--green); }

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(11,29,58,0.85) 0%, rgba(26,53,96,0.80) 100%);
  background-color: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero[style*="--page-hero-bg"] {
  background: var(--page-hero-bg) center/cover no-repeat fixed;
}
.page-hero[style*="--page-hero-bg"]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.85) 0%, rgba(26,53,96,0.80) 100%);
  z-index: 0;
}
@media (max-width: 768px) {
  .page-hero[style*="--page-hero-bg"] {
    background-attachment: scroll;
  }
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--green); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--green-400); }
.breadcrumb span.sep { color: rgba(255,255,255,0.2); }

/* ── About Page ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    url('./assets/pic/about_team_photo.webp') center/cover no-repeat,
    linear-gradient(135deg, var(--navy), var(--navy-600));
  min-height: 480px;
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.5), transparent 50%);
}
.about-image-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: var(--green);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
}
.about-image-badge span { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.75; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition-base);
}
.value-card:hover {
  border-color: rgba(20,184,166,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.value-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.value-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.value-card p { font-size: 0.83rem; color: var(--gray-400); line-height: 1.6; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: transform var(--transition-base);
}
.contact-card:hover { transform: translateX(6px); }
.cc-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.cc-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.cc-value { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); }
.cc-value a { color: var(--white); transition: color var(--transition-fast); }
.cc-value a:hover { color: var(--green); }
.cc-sub { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-600));
}

.hours-contact-table { width: 100%; font-size: 0.875rem; margin-top: 16px; }
.hours-contact-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-contact-table td { padding: 8px 0; color: rgba(255,255,255,0.6); }
.hours-contact-table td:last-child { text-align: right; color: var(--green); font-weight: 600; }
.hours-contact-table tr.closed td:last-child { color: rgba(255,255,255,0.25); }

/* ── Thank You ── */
.thankyou-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.thankyou-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 60px 52px;
  max-width: 580px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative; z-index: 1;
}
.ty-icon {
  width: 86px; height: 86px;
  background: linear-gradient(135deg, var(--green), var(--green-600));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-green);
}
.ty-card h1 { font-size: 2rem; margin-bottom: 12px; }
.ty-steps {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  margin: 28px 0;
}
.ty-steps h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 14px; }
.ty-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.ty-step:last-child { margin-bottom: 0; }
.ty-num {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1px;
}
.ty-step p { font-size: 0.875rem; color: var(--gray-600); }
.ty-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0;
  transition: color var(--transition-fast);
}
.ty-phone-cta:hover { color: var(--green-600); }
.ty-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ── Area Cities Band ── */
.cities-band {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 48px 0;
}
.cities-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.city-pill {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}
.city-pill:hover {
  border-color: var(--green);
  color: var(--green-600);
  background: var(--green-100);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s var(--transition-slow) both; }
.fade-up-2 { animation: fadeUp 0.6s 0.1s var(--transition-slow) both; }
.fade-up-3 { animation: fadeUp 0.6s 0.2s var(--transition-slow) both; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 420px; }
  .hero-right-inner { padding: 60px 40px; }
  .hero-stats-panel { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-block { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .info-bar { display: none; }
  .site-nav { display: none; }
  .header-inner { height: 68px; }
  .hero-left { padding: 96px 24px 48px; }
  .hero-right-inner { padding: 48px 24px; }
  .hero-stats-panel { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .f-group.span2 { grid-column: 1; }
  .trust-strip-inner { gap: 20px; }
  .trust-divider { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-desc { max-width: 100%; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .thankyou-card { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .hero-stats-panel { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}

/* ── Real Logo Image ── */
.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
}

/* ── Before / After Gallery ── */
.before-after-section {
  background: var(--navy);
  padding: var(--section-py) 0;
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.ba-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ba-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.ba-pair:hover .ba-img img { transform: scale(1.04); }
.ba-label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(11,29,58,0.88);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}
.ba-label.after { background: rgba(20,184,166,0.9); color: var(--navy); }
.ba-pair-label {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 12px 0 0;
}

/* ── Photo Gallery Grid ── */
.gallery-section {
  background: var(--gray-50);
  padding: var(--section-py) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr 1fr; }
}

/* ── Hamburger Button ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Nav Overlay ── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 72px 24px 100px;
}
.nav-mobile.open { display: flex; }

.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 14px 40px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  width: 100%;
  max-width: 320px;
  text-align: center;
  display: block;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--green); background: rgba(20,184,166,0.10); }

.mobile-nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: var(--radius-full);
  margin-top: 28px;
  transition: background var(--transition-fast);
}
.mobile-nav-call-btn:hover { background: var(--green-600); }

/* ── Mobile Sticky Call Bar ── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 997;
  background: var(--green);
  box-shadow: 0 -4px 20px rgba(20,184,166,0.35);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  width: 100%;
}

/* ── Mobile-First Enhancements ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 64px; }
  .hero-form-card { width: 100%; }
  .btn { font-size: 1.05rem; min-height: 48px; }
  .btn-lg { font-size: 1.125rem; padding: 18px 28px; min-height: 56px; }
  .form-submit-row .btn { font-size: 1.125rem; min-height: 56px; }
}

/* ── Mobile Header Fix ── */
@media (max-width: 768px) {
  /* Full-width header with explicit side padding */
  .site-header .container {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  /* Tighten header height and lock layout */
  .header-inner {
    height: 60px;
    gap: 0;
    justify-content: space-between;
  }
  /* Shrink logo on mobile */
  .site-logo .logo-img { height: 48px; }
  /* Tighten the CTA group */
  .header-cta {
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
  }
  /* Hide the circular phone icon — number alone is sufficient */
  .phone-icon { display: none; }
  /* Phone number: 14px, single line, no wrapping */
  .header-phone {
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;
    gap: 0;
  }
  /* Compact the Free Quote / Back to Home button */
  .header-cta .btn-sm {
    padding: 10px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
    min-height: 44px;
  }
  /* Hamburger: flush right, never clipped */
  .nav-toggle {
    flex-shrink: 0;
    margin-left: 6px;
    margin-right: 0;
  }
}

/* ── WCAG 2.1 AA — Focus Visible (2.4.7) ── */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }
.f-input:focus-visible,
.f-select:focus-visible,
.f-textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 0;
}

/* ── Mobile Centering (AirFlow Plano / Dalworth pattern) ── */
@media (max-width: 768px) {
  /* Hero: stack and center all content */
  .hero-left {
    text-align: center;
    align-items: center;
  }
  .trust-badge {
    align-self: center;
    text-align: center;
  }
  /* Form inputs stay left-aligned for usability */
  .hero-form-card,
  .f-label,
  .f-input,
  .f-select,
  .f-textarea,
  .form-note {
    text-align: left;
  }
  /* Service cards */
  .service-card-body { text-align: center; }
  .service-features   { text-align: left; align-items: flex-start; }
  .service-cta        { justify-content: center; }
  /* Reviews */
  .review-card    { text-align: center; }
  .review-author  { justify-content: center; }
  /* About page */
  .about-split > div:last-child { text-align: center; }
  .about-split > div:last-child > div[style*="flex"] { justify-content: center; }
  /* Contact cards */
  .contact-card { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
  .cc-value a   { text-align: center; }
  /* Values */
  .value-card { text-align: center; }
  /* Why items */
  .why-item { flex-direction: column; align-items: center; text-align: center; }
  /* Footer */
  .footer-grid > div    { text-align: center; }
  .footer-rating        { justify-content: center; }
  .footer-links         { align-items: center; }
  .footer-contact-list  { align-items: center; }
  .footer-contact-item  { justify-content: center; text-align: center; flex-direction: column; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }
  /* Page hero (inner pages) */
  .page-hero { text-align: center; }
  .breadcrumb { justify-content: center; }
  /* Thank-you card */
  .ty-steps { text-align: left; }
  /* Hours mini in footer */
  .hours-mini { align-items: center; }
  .hours-row  { justify-content: center; gap: 16px; }
}
