/* ============================================
   METRO HOME SERVICES — STYLESHEET
   Based on Mr. Rooter conversion architecture
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  /* Brand Colors */
  --red: #C41230;
  --red-hover: #a30e27;
  --red-light: #fdf2f4;
  --navy: #1A2340;
  --navy-hover: #141a30;
  --blue: #1B5FA5;
  --blue-hover: #164d8a;
  --green: #2e7d32;
  --green-light: #f1f8f1;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f9f8f6;
  --gray-50: #f7f6f4;
  --gray-100: #f0eeeb;
  --gray-200: #e4e2de;
  --gray-300: #ccc9c5;
  --gray-500: #7a7975;
  --gray-700: #3a3836;
  --gray-900: #1a1917;

  /* Stars */
  --gold: #f59e0b;

  /* Typography */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.27vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.375rem, 1.1rem + 1.1vw, 2rem);
  --text-2xl: clamp(1.875rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.5rem + 3vw, 4rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-max: 1200px;
}

/* === BASE RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea, button { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
::selection { background: rgba(196,18,48,0.15); color: var(--gray-900); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--radius-sm); }

/* === UTILITY BAR === */
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-6);
}
.utility-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.utility-right { gap: var(--space-3); }
.divider { opacity: 0.3; }

/* === MAIN NAV === */
.main-nav {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1vw + 0.8rem, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: background 180ms var(--ease), color 180ms var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); color: white; }
.nav-links .nav-emergency {
  background: rgba(0,0,0,0.2);
  color: white;
  font-weight: 600;
}
.nav-links .nav-emergency:hover { background: rgba(0,0,0,0.35); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: white;
  transition: opacity 180ms var(--ease);
}
.nav-phone:hover { opacity: 0.85; }
.nav-phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.phone-number { font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.15rem); font-weight: 800; color: white; }
.phone-sub { font-size: var(--text-xs); color: rgba(255,255,255,0.7); }

.btn-book {
  background: var(--blue);
  color: white;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
  box-shadow: 0 2px 8px rgba(27,95,165,0.4);
}
.btn-book:hover { background: var(--blue-hover); transform: translateY(-1px); }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 200ms var(--ease);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms var(--ease);
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  font-weight: 500;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: white; }
.mobile-phone-link { font-weight: 700; color: white !important; }

/* === HERO SECTION === */
.hero {
  position: relative;
  background: var(--navy);
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center right;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,35,64,0.95) 0%,
    rgba(26,35,64,0.82) 45%,
    rgba(26,35,64,0.35) 75%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-10);
  align-items: center;
  width: 100%;
}

/* Hero Text */
.hero-text { color: white; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge svg { color: var(--gold); }

h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-5);
  line-height: 1.05;
}
.hero-accent { color: var(--gold); }

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-8);
  max-width: 540px;
  line-height: 1.6;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  width: fit-content;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: 500;
}
.trust-item svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--red);
  color: white;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
  box-shadow: 0 3px 12px rgba(196,18,48,0.35);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,18,48,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.3);
  white-space: nowrap;
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* === HERO FORM CARD === */
.hero-form-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  flex-shrink: 0;
  min-width: 0;
  width: 100%;
  max-width: 420px;
}
.form-card-header {
  background: var(--red);
  padding: var(--space-5) var(--space-6);
  color: white;
  text-align: center;
}
.form-card-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-1);
}
.form-card-header p { font-size: var(--text-sm); opacity: 0.85; }

.estimate-form { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); min-width: 0; }
.form-row > .form-group { min-width: 0; }
.form-group input, .form-group select, .form-group textarea { width: 100%; min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,95,165,0.12);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7975' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.btn-form-submit {
  background: var(--blue);
  color: white;
  font-size: var(--text-base);
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
  box-shadow: 0 3px 12px rgba(27,95,165,0.3);
}
.btn-form-submit:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,95,165,0.4); }

.form-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-top: calc(-1 * var(--space-2));
}

/* === EMERGENCY BANNER === */
.emergency-banner {
  background: var(--navy);
  padding: var(--space-4) var(--space-6);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.emergency-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.emergency-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: white;
}
.emergency-left svg { color: var(--gold); flex-shrink: 0; }
.emergency-left strong { font-size: var(--text-lg); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; }
.emergency-left span { font-size: var(--text-sm); color: rgba(255,255,255,0.75); display: block; margin-top: 2px; }

.emergency-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background 180ms var(--ease);
  box-shadow: 0 2px 8px rgba(196,18,48,0.4);
  flex-shrink: 0;
}
.emergency-cta:hover { background: var(--red-hover); }

/* === SECTION SHARED === */
.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  background: var(--red-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.section-tag.light { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* === SERVICES GRID === */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.service-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}
.service-icon--red { background: var(--red-light); color: var(--red); }
.service-icon--navy { background: #eef0f5; color: var(--navy); }
.service-icon--green { background: var(--green-light); color: var(--green); }
.service-icon--blue { background: #e8f0f8; color: var(--blue); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.service-card p { font-size: var(--text-sm); color: var(--gray-500); margin-bottom: var(--space-5); line-height: 1.65; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex: 1;
}
.service-list li {
  font-size: var(--text-sm);
  color: var(--gray-700);
  padding-left: var(--space-5);
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.service-cta {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap 180ms var(--ease);
  margin-top: auto;
}
.service-cta:hover { gap: var(--space-3); }

/* === WHY US === */
.why-us-section { background: white; }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.why-us-text .section-tag { text-align: left; }
.why-us-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: var(--space-5);
  text-align: left;
}
.why-us-text > p {
  font-size: var(--text-base);
  color: var(--gray-500);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.why-us-points { display: flex; flex-direction: column; gap: var(--space-6); }
.why-point { display: flex; gap: var(--space-4); align-items: flex-start; }
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  color: var(--red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-point strong { display: block; font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: var(--space-1); }
.why-point p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.6; max-width: 100%; }

/* Stats + Service Area Cards */
.why-us-visual { display: flex; flex-direction: column; gap: var(--space-6); }
.why-stats-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  grid-template-rows: auto var(--space-6) auto;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-4);
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label { font-size: var(--text-xs); color: rgba(255,255,255,0.65); font-weight: 500; text-align: center; line-height: 1.4; }
.stat-divider { background: rgba(255,255,255,0.1); width: 1px; grid-row: span 1; }

.service-area-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.service-area-card h4 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.service-area-card h4 svg { color: var(--red); }
.area-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.area-tags span {
  background: white;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* === REVIEWS === */
.reviews-section { background: var(--navy); }
.reviews-section .section-tag { color: var(--gold); background: rgba(245,158,11,0.15); }
.reviews-section .section-header h2 { color: white; }
.review-summary {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-3);
  flex-wrap: wrap;
}
.stars.large { font-size: 1.3rem; }
.review-score { font-size: var(--text-lg); font-weight: 800; color: white; }
.review-count { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.review-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: var(--space-4); }
.review-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: var(--space-3); }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-base);
  flex-shrink: 0;
}
.review-author strong { display: block; color: white; font-size: var(--text-sm); }
.review-author span { font-size: var(--text-xs); color: rgba(255,255,255,0.5); }

/* === ESTIMATE SECTION === */
.estimate-section { background: var(--red); }
.estimate-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-16);
  align-items: center;
}
.estimate-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: var(--space-4);
}
.estimate-text p { font-size: var(--text-base); color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: var(--space-6); }
.estimate-contact-options {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
  font-size: var(--text-base);
}
.estimate-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: white;
  font-weight: 800;
  font-size: var(--text-xl);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: opacity 180ms var(--ease);
}
.estimate-phone:hover { opacity: 0.8; }
.or-divider { color: rgba(255,255,255,0.4); font-size: var(--text-sm); }

.estimate-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.full-form { padding: var(--space-8); }

/* === FOOTER === */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.7); }
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6) var(--space-12);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-10);
}

.footer-brand p { font-size: var(--text-sm); line-height: 1.7; margin: var(--space-5) 0; max-width: 280px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: white;
  font-weight: 700;
  font-size: var(--text-base);
  transition: opacity 180ms var(--ease);
}
.footer-phone:hover { opacity: 0.8; }

.footer-logo .logo-name { color: white; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: var(--space-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col li { font-size: var(--text-sm); }
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.65);
  transition: color 180ms var(--ease);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6);
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

/* === FLOATING CALL BUTTON === */
.float-call {
  display: none;
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--red);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: 0 4px 20px rgba(196,18,48,0.45);
  z-index: 9999;
  align-items: center;
  gap: var(--space-2);
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}
.float-call:hover { background: var(--red-hover); transform: scale(1.05); }

/* === TOAST === */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: white;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 99999;
  transition: transform 400ms var(--ease), opacity 400ms var(--ease);
  opacity: 0;
}
.toast svg { color: #4ade80; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 500px; }
  .why-us-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .estimate-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .why-stats-card { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: flex; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; }
  .hero-content { padding: var(--space-8) var(--space-4); }
  h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .trust-strip { gap: var(--space-3); padding: var(--space-3) var(--space-4); }
  .trust-divider { display: none; }
  .trust-strip { flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-phone { display: none; }
  .float-call { display: flex; }
  .estimate-contact-options { flex-direction: column; align-items: flex-start; }
  .emergency-inner { flex-direction: column; align-items: flex-start; }
  .utility-right { display: none; }
  .why-stats-card { grid-template-columns: 1fr 1fr; }
}
