/* ============================================================
   GLIDE DOOR EXPERTS — Global Stylesheet
   Brand: Espresso Brown + Turquoise | Plus Jakarta Sans + Inter
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --clr-espresso:       #2C1810;
  --clr-espresso-light: #3D2314;
  --clr-espresso-mid:   #5A3728;
  --clr-espresso-soft:  #8B6052;
  --clr-teal:           #00C9B8;
  --clr-teal-dark:      #00A89A;
  --clr-teal-darker:    #008577;
  --clr-teal-light:     #E0FAF8;
  --clr-teal-glow:      rgba(0,201,184,0.18);

  /* Neutrals */
  --clr-white:          #FFFFFF;
  --clr-gray-50:        #F9FAFB;
  --clr-gray-100:       #F3F4F6;
  --clr-gray-200:       #E5E7EB;
  --clr-gray-300:       #D1D5DB;
  --clr-gray-400:       #9CA3AF;
  --clr-gray-500:       #6B7280;
  --clr-gray-600:       #4B5563;
  --clr-gray-800:       #1F2937;
  --clr-gray-900:       #111827;

  /* Semantic */
  --clr-text:           #1A0D08;
  --clr-text-muted:     #6B5A54;
  --clr-text-light:     #9B8B87;
  --clr-bg:             #FFFFFF;
  --clr-bg-alt:         #F8F7F6;
  --clr-bg-dark:        #1C0E09;
  --clr-border:         #E8E0DE;
  --clr-success:        #16A34A;
  --clr-warning:        #D97706;
  --clr-error:          #DC2626;

  /* Typography */
  --ff-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Type Scale */
  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg:   1.125rem;  /* 18px */
  --fs-xl:   1.25rem;   /* 20px */
  --fs-2xl:  1.5rem;    /* 24px */
  --fs-3xl:  1.875rem;  /* 30px */
  --fs-4xl:  2.25rem;   /* 36px */
  --fs-5xl:  3rem;      /* 48px */
  --fs-6xl:  3.75rem;   /* 60px */
  --fs-7xl:  4.5rem;    /* 72px */

  /* Spacing Scale (8pt grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:   0.375rem;
  --r-md:   0.75rem;
  --r-lg:   1rem;
  --r-xl:   1.5rem;
  --r-2xl:  2rem;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(44,24,16,0.06);
  --sh-sm: 0 2px 8px rgba(44,24,16,0.08);
  --sh-md: 0 4px 16px rgba(44,24,16,0.10);
  --sh-lg: 0 8px 32px rgba(44,24,16,0.12);
  --sh-xl: 0 16px 48px rgba(44,24,16,0.14);
  --sh-2xl:0 24px 64px rgba(44,24,16,0.18);
  --sh-teal: 0 4px 20px rgba(0,201,184,0.30);
  --sh-teal-lg: 0 8px 32px rgba(0,201,184,0.35);

  /* Transitions */
  --tr-fast:   150ms ease-out;
  --tr-base:   250ms ease-out;
  --tr-slow:   400ms ease-out;

  /* Layout */
  --max-w-content: 1280px;
  --max-w-text:    720px;
  --max-w-narrow:  560px;

  /* Z-Index Scale */
  --z-base:   0;
  --z-raised: 10;
  --z-sticky: 40;
  --z-modal:  100;
  --z-toast:  200;
  --z-fab:    50;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-espresso);
}

p { line-height: 1.7; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-24);
}

.section--sm {
  padding-block: var(--sp-16);
}

.section--alt {
  background: var(--clr-bg-alt);
}

.section--dark {
  background: var(--clr-espresso);
  color: var(--clr-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--clr-white);
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Section Headings */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-teal);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--clr-teal);
  border-radius: var(--r-full);
}

.section-heading {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}

.section-heading .highlight {
  color: var(--clr-teal);
}

.section-subtext {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--sp-16);
}

.section-header--centered {
  text-align: center;
}

.section-header--centered .section-label {
  justify-content: center;
}

.section-header--centered .section-subtext {
  margin-inline: auto;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.text-teal   { color: var(--clr-teal); }
.text-brown  { color: var(--clr-espresso); }
.text-muted  { color: var(--clr-text-muted); }
.text-white  { color: var(--clr-white); }
.text-sm     { font-size: var(--fs-sm); }
.text-lg     { font-size: var(--fs-lg); }
.text-xl     { font-size: var(--fs-xl); }
.fw-medium   { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold     { font-weight: 700; }
.fw-extrabold{ font-weight: 800; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1;
  transition: all var(--tr-base);
  cursor: pointer;
  white-space: nowrap;
  touch-action: manipulation;
  min-height: 52px;
  border: 2px solid transparent;
  text-decoration: none;
}

/* Primary — Turquoise */
.btn-primary {
  background: var(--clr-teal);
  color: var(--clr-espresso);
  border-color: var(--clr-teal);
  box-shadow: var(--sh-teal);
}

.btn-primary:hover {
  background: var(--clr-teal-dark);
  border-color: var(--clr-teal-dark);
  box-shadow: var(--sh-teal-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

/* Secondary — Outlined */
.btn-secondary {
  background: transparent;
  color: var(--clr-teal);
  border-color: var(--clr-teal);
}

.btn-secondary:hover {
  background: var(--clr-teal-glow);
  transform: translateY(-2px);
}

/* Dark */
.btn-dark {
  background: var(--clr-espresso);
  color: var(--clr-white);
  border-color: var(--clr-espresso);
}

.btn-dark:hover {
  background: var(--clr-espresso-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

/* White (on dark backgrounds) */
.btn-white {
  background: var(--clr-white);
  color: var(--clr-espresso);
  border-color: var(--clr-white);
  box-shadow: var(--sh-md);
}

.btn-white:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-2px);
}

/* Ghost White (on dark) */
.btn-ghost-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* Sizes */
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--fs-lg);
  min-height: 60px;
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: var(--fs-sm);
  min-height: 44px;
}

.btn-block {
  width: 100%;
}

/* Phone button pulse */
.btn-phone {
  background: var(--clr-teal);
  color: var(--clr-espresso);
  position: relative;
  overflow: visible;
}

.btn-phone::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--clr-teal);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  transition: all var(--tr-base);
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(44,24,16,0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-inline: var(--sp-6);
  max-width: var(--max-w-content);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--clr-espresso);
  line-height: 1.1;
}

.nav--transparent .nav-logo-text,
.nav--transparent .nav-link {
  color: var(--clr-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-link {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: all var(--tr-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--clr-teal-dark);
  background: var(--clr-teal-light);
}

.nav-link.has-dropdown {
  padding-right: var(--sp-5);
}

.nav-link.has-dropdown::after {
  content: '▾';
  position: absolute;
  right: var(--sp-2);
  font-size: 10px;
  opacity: 0.7;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2xl);
  border: 1px solid var(--clr-border);
  min-width: 260px;
  padding: var(--sp-3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--tr-base);
  pointer-events: none;
  z-index: var(--z-modal);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text);
  transition: all var(--tr-fast);
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: var(--clr-teal-light);
  color: var(--clr-teal-darker);
}

.nav-dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--clr-teal);
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-phone {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--clr-espresso);
  text-decoration: none;
  transition: color var(--tr-fast);
}

.nav--transparent .nav-phone {
  color: var(--clr-white);
}

.nav-phone:hover {
  color: var(--clr-teal);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--tr-fast);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--clr-espresso);
  border-radius: var(--r-full);
  transition: all var(--tr-base);
}

.nav--transparent .nav-toggle span {
  background: var(--clr-white);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-white);
  z-index: calc(var(--z-sticky) - 1);
  overflow-y: auto;
  padding: var(--sp-8) var(--sp-6) var(--sp-12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform var(--tr-slow);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile-link {
  display: block;
  padding: var(--sp-4) var(--sp-4);
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text);
  border-radius: var(--r-lg);
  transition: all var(--tr-fast);
  border-bottom: 1px solid var(--clr-border);
}

.nav-mobile-link:hover {
  background: var(--clr-teal-light);
  color: var(--clr-teal-darker);
}

.nav-mobile-cta {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-espresso);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,24,16,0.95) 0%,
    rgba(44,24,16,0.75) 50%,
    rgba(0,168,154,0.20) 100%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding: 140px var(--sp-6) var(--sp-20);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-16);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(0,201,184,0.15);
  border: 1px solid rgba(0,201,184,0.3);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-teal);
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-teal);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.hero-title .line-teal {
  color: var(--clr-teal);
  display: block;
}

.hero-title .line-white {
  display: block;
}

.hero-subtitle {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-xl));
  color: rgba(255,255,255,0.80);
  max-width: 540px;
  margin-bottom: var(--sp-10);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-sm);
  font-weight: 500;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--clr-teal);
  flex-shrink: 0;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.hero-form-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.hero-form-subtitle {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-6);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-2);
}

.form-input {
  width: 100%;
  padding: 0.8rem var(--sp-4);
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--r-lg);
  color: var(--clr-white);
  font-size: var(--fs-base);
  transition: all var(--tr-fast);
  min-height: 48px;
}

.form-input::placeholder { color: rgba(255,255,255,0.4); }

.form-input:focus {
  outline: none;
  border-color: var(--clr-teal);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 4px rgba(0,201,184,0.15);
}

.form-input option { background: var(--clr-espresso); color: var(--clr-white); }

.hero-form-disclaimer {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: var(--sp-3);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,201,184,0.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--clr-espresso);
  padding: var(--sp-6) 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  gap: var(--sp-12);
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  white-space: nowrap;
}

.trust-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,201,184,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-teal);
}

.trust-item-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-white);
}

.trust-item-sub {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  display: block;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--clr-teal);
  padding: var(--sp-8) 0;
}

.stats-inner {
  display: flex;
  gap: var(--sp-8);
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-espresso);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-espresso);
  opacity: 0.75;
  margin-top: var(--sp-1);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.service-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  transition: all var(--tr-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-base);
}

.service-card:hover {
  border-color: var(--clr-teal);
  box-shadow: var(--sh-xl);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--clr-teal-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tr-base);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--clr-teal-dark);
}

.service-card:hover .service-icon {
  background: var(--clr-teal);
}

.service-card:hover .service-icon svg {
  color: var(--clr-espresso);
}

.service-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-espresso);
}

.service-card-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-teal-dark);
  transition: gap var(--tr-fast);
}

.service-card:hover .service-card-link {
  gap: var(--sp-2);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--tr-fast);
}

.service-card:hover .service-card-link svg {
  transform: translateX(3px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-2xl);
}

.why-badge-card {
  position: absolute;
  bottom: -var(--sp-6);
  right: -var(--sp-6);
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--clr-border);
  text-align: center;
  min-width: 160px;
}

.why-badge-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-teal-dark);
  display: block;
}

.why-badge-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  font-weight: 500;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.why-feature {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-teal-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-teal-dark);
}

.why-feature-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-1);
}

.why-feature-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--clr-teal) 0%, var(--clr-teal-light) 100%);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--clr-teal);
  color: var(--clr-espresso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: var(--fs-xl);
  margin: 0 auto var(--sp-5);
  box-shadow: var(--sh-teal);
  position: relative;
  z-index: 1;
  transition: all var(--tr-base);
}

.process-step:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: var(--sh-teal-lg);
}

.process-step-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-2);
}

.process-step-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.review-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: all var(--tr-base);
}

.review-card:hover {
  border-color: var(--clr-teal);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: var(--sp-1);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: #F59E0B;
  fill: #F59E0B;
}

.review-text {
  font-size: var(--fs-base);
  color: var(--clr-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--clr-teal-darker);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-espresso);
}

.review-location {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.review-verified {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  color: var(--clr-teal-dark);
  font-weight: 600;
  margin-left: auto;
}

.review-verified svg {
  width: 14px;
  height: 14px;
  color: var(--clr-teal);
  fill: var(--clr-teal);
}

/* Google Rating Bar */
.google-rating-bar {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--clr-border);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
  box-shadow: var(--sh-md);
}

.google-logo {
  flex-shrink: 0;
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  background: linear-gradient(90deg, #4285F4 25%, #34A853 25%, #34A853 50%, #EA4335 50%, #EA4335 75%, #FBBC05 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.google-score {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-espresso);
  line-height: 1;
}

.google-meta {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--tr-base);
}

.faq-item.open {
  border-color: var(--clr-teal);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-espresso);
  cursor: pointer;
  transition: all var(--tr-fast);
  background: transparent;
  min-height: 64px;
}

.faq-question:hover {
  background: var(--clr-teal-light);
  color: var(--clr-teal-darker);
}

.faq-item.open .faq-question {
  background: var(--clr-teal-light);
  color: var(--clr-teal-darker);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--clr-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-teal-dark);
  font-size: var(--fs-lg);
  font-weight: 700;
  transition: all var(--tr-base);
}

.faq-item.open .faq-icon {
  background: var(--clr-teal);
  color: var(--clr-espresso);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow) ease;
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}

.city-chip {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  transition: all var(--tr-fast);
  text-decoration: none;
  display: block;
}

.city-chip:hover {
  background: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-espresso);
  transform: translateY(-2px);
  box-shadow: var(--sh-teal);
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.ba-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  position: relative;
}

.ba-img {
  height: 100%;
  object-fit: cover;
  background: var(--clr-gray-200);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--clr-teal);
  transform: translateX(-50%);
  z-index: 1;
}

.ba-divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr-teal);
  color: var(--clr-espresso);
  font-size: var(--fs-xs);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ba-label {
  position: absolute;
  top: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  z-index: 2;
}

.ba-label-before {
  left: var(--sp-2);
  background: rgba(220, 38, 38, 0.85);
  color: white;
}

.ba-label-after {
  right: var(--sp-2);
  background: rgba(22, 163, 74, 0.85);
  color: white;
}

.ba-info {
  background: var(--clr-white);
  padding: var(--sp-4) var(--sp-5);
}

.ba-title {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-espresso);
  margin-bottom: var(--sp-1);
}

.ba-location {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ============================================================
   EMERGENCY CTA BANNER
   ============================================================ */
.emergency-banner {
  background: linear-gradient(135deg, var(--clr-espresso) 0%, var(--clr-espresso-mid) 100%);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,201,184,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.emergency-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
}

.emergency-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(220,38,38,0.2);
  border: 1px solid rgba(220,38,38,0.4);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FCA5A5;
  margin-bottom: var(--sp-4);
}

.emergency-label-dot {
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

.emergency-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.emergency-sub {
  color: rgba(255,255,255,0.70);
  font-size: var(--fs-lg);
  max-width: 480px;
}

.emergency-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-espresso);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: var(--sp-20) 0 var(--sp-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 340px;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.footer-logo-img {
  height: 52px;
  width: auto;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--clr-teal);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--tr-fast);
}

.footer-contact-item a:hover { color: var(--clr-teal); }

.footer-heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--tr-fast);
}

.footer-link:hover { color: var(--clr-teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-6) 0;
}

.footer-bottom-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-legal-link {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--tr-fast);
}

.footer-legal-link:hover { color: var(--clr-teal); }

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--tr-fast);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--clr-teal);
  color: var(--clr-espresso);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   FLOATING ACTION BUTTONS (FAB)
   ============================================================ */
.fab-group {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-6);
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}

.fab {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-5);
  height: 52px;
  background: var(--clr-espresso);
  color: var(--clr-white);
  border-radius: var(--r-full);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--sh-xl);
  transition: all var(--tr-base);
  cursor: pointer;
  border: none;
  overflow: hidden;
}

.fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--sh-2xl);
}

.fab-call {
  background: var(--clr-teal);
  color: var(--clr-espresso);
  box-shadow: var(--sh-teal-lg);
}

.fab-call:hover {
  background: var(--clr-teal-dark);
  box-shadow: 0 12px 40px rgba(0,201,184,0.45);
}

.fab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Mobile sticky call bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-sticky) + 10);
  display: none;
  background: var(--clr-teal);
  padding: var(--sp-3) var(--sp-4);
  padding-bottom: max(var(--sp-3), env(safe-area-inset-bottom));
}

.mobile-call-bar-inner {
  display: flex;
  gap: var(--sp-3);
  max-width: 480px;
  margin-inline: auto;
}

.mobile-call-bar .btn {
  flex: 1;
  min-height: 48px;
  font-size: var(--fs-sm);
  padding: 0.75rem 1rem;
}

.mobile-call-btn {
  background: var(--clr-espresso) !important;
  color: var(--clr-white) !important;
}

.mobile-estimate-btn {
  background: var(--clr-white) !important;
  color: var(--clr-espresso) !important;
}

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: var(--sp-8);
  left: var(--sp-6);
  z-index: var(--z-fab);
}

.chat-bubble {
  width: 60px;
  height: 60px;
  background: var(--clr-espresso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-xl);
  transition: all var(--tr-base);
  color: var(--clr-white);
}

.chat-bubble svg {
  width: 26px;
  height: 26px;
}

.chat-bubble:hover {
  transform: scale(1.08);
  box-shadow: var(--sh-2xl);
  background: var(--clr-teal-dark);
}

.chat-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #EF4444;
  border-radius: 50%;
  border: 3px solid white;
  animation: blink 2s ease-in-out infinite;
}

.chat-popup {
  position: absolute;
  bottom: calc(100% + var(--sp-4));
  left: 0;
  width: 320px;
  background: var(--clr-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2xl);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--tr-base);
}

.chat-widget.open .chat-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-popup-header {
  background: var(--clr-espresso);
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.chat-popup-avatar {
  width: 40px;
  height: 40px;
  background: var(--clr-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-espresso);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.chat-popup-name {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: white;
  font-size: var(--fs-sm);
}

.chat-popup-status {
  font-size: var(--fs-xs);
  color: var(--clr-teal);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.chat-popup-body {
  padding: var(--sp-5);
}

.chat-message {
  background: var(--clr-gray-100);
  border-radius: var(--r-lg);
  border-bottom-left-radius: 4px;
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.chat-quick-replies {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.chat-reply-btn {
  width: 100%;
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  background: transparent;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  color: var(--clr-teal-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.chat-reply-btn:hover {
  background: var(--clr-teal-light);
  border-color: var(--clr-teal);
}

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-modal) + 10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-base);
}

.exit-overlay.show {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  background: var(--clr-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-12) var(--sp-10);
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--sh-2xl);
  transform: scale(0.9);
  transition: transform var(--tr-base);
}

.exit-overlay.show .exit-popup {
  transform: scale(1);
}

.exit-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--clr-text-muted);
  font-size: var(--fs-lg);
  transition: all var(--tr-fast);
}

.exit-close:hover {
  background: var(--clr-teal);
  color: var(--clr-espresso);
}

.exit-icon {
  width: 80px;
  height: 80px;
  background: var(--clr-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: 2.5rem;
}

.exit-popup h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
}

.exit-popup p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-8);
}

.exit-popup .btn {
  min-width: 200px;
}

/* ============================================================
   PAGE HERO (Interior Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--clr-espresso) 0%, var(--clr-espresso-mid) 100%);
  padding: 140px 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--clr-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-content {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.breadcrumb a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--tr-fast);
}

.breadcrumb a:hover { color: var(--clr-teal); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: var(--fs-xs);
}

.breadcrumb-current {
  font-size: var(--fs-sm);
  color: var(--clr-teal);
  font-weight: 600;
}

.page-hero-title {
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-6xl));
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.page-hero-sub {
  font-size: var(--fs-xl);
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}

/* ============================================================
   CONTENT PAGE LAYOUT
   ============================================================ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-12);
  align-items: start;
}

.content-body h2 {
  font-size: var(--fs-3xl);
  margin: var(--sp-10) 0 var(--sp-5);
}

.content-body h3 {
  font-size: var(--fs-2xl);
  margin: var(--sp-8) 0 var(--sp-4);
}

.content-body p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-5);
  line-height: 1.8;
}

.content-body ul {
  list-style: none;
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.content-body ul li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
}

.content-body ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--clr-teal-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300A89A'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Sidebar */
.sidebar-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: sticky;
  top: 100px;
  margin-bottom: var(--sp-6);
}

.sidebar-card-header {
  background: var(--clr-espresso);
  padding: var(--sp-6);
  text-align: center;
}

.sidebar-card-header h3 {
  color: var(--clr-white);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
}

.sidebar-card-header p {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-sm);
}

.sidebar-card-body {
  padding: var(--sp-6);
}

.sidebar-form .form-input {
  background: var(--clr-gray-50);
  border-color: var(--clr-border);
  color: var(--clr-text);
}

.sidebar-form .form-input:focus {
  border-color: var(--clr-teal);
  background: white;
}

.sidebar-form .form-label {
  color: var(--clr-text-muted);
}

.sidebar-form .form-input::placeholder {
  color: var(--clr-gray-400);
}

.sidebar-phone {
  background: var(--clr-teal-light);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
  margin-top: var(--sp-5);
}

.sidebar-phone-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-2);
}

.sidebar-phone-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--clr-teal-darker);
  text-decoration: none;
  display: block;
}

/* ============================================================
   BADGES & TRUST ICONS
   ============================================================ */
.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-teal {
  background: var(--clr-teal-light);
  color: var(--clr-teal-darker);
  border: 1px solid rgba(0,168,154,0.2);
}

.badge-brown {
  background: rgba(44,24,16,0.08);
  color: var(--clr-espresso);
  border: 1px solid rgba(44,24,16,0.12);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.anim-fade-up   { animation: fade-up 0.6s ease-out both; }
.anim-fade-in   { animation: fade-in 0.5s ease-out both; }
.anim-slide-left{ animation: slide-in-left 0.6s ease-out both; }

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

/* Intersection observer animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="left"] {
  transform: translateX(-24px);
}

[data-animate="left"].animated {
  transform: translateX(0);
}

[data-animate="right"] {
  transform: translateX(24px);
}

[data-animate="right"].animated {
  transform: translateX(0);
}

/* ============================================================
   SCHEMA / STRUCTURED DATA
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--clr-teal);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  background: var(--clr-teal);
  color: var(--clr-espresso);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--tr-fast);
}

.skip-link:focus { top: var(--sp-4); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .hero-form-card { max-width: 480px; margin-inline: auto; }

  .why-grid { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }

  .cities-grid { grid-template-columns: repeat(4, 1fr); }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card { position: static; }

  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sp-6: 1.25rem; }

  .section { padding-block: var(--sp-16); }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .reviews-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { gap: var(--sp-6); }
  .stat-number { font-size: var(--fs-3xl); }

  .trust-bar-inner { gap: var(--sp-6); }

  .emergency-inner {
    flex-direction: column;
    text-align: center;
  }

  .emergency-sub { margin-inline: auto; }

  .fab-group { display: none; }
  .mobile-call-bar { display: flex; }

  .chat-widget { bottom: calc(var(--sp-4) + 64px + env(safe-area-inset-bottom)); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }

  .hero-inner { padding-top: 120px; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .google-rating-bar { flex-wrap: wrap; }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .fab-group, .mobile-call-bar, .chat-widget, .exit-overlay { display: none !important; }
  body { font-size: 12pt; }
  a[href]::after { content: ' (' attr(href) ')'; }
}
