/* ===== FIVE LAKES CLEANING - MASTER STYLESHEET v2 ===== */

/* --- CSS Custom Properties --- */
:root {
  --primary: #0A2540;
  --primary-mid: #0F3A5C;
  --primary-light: #1B6B93;
  --secondary: #00C9A7;
  --secondary-dark: #00A88A;
  --secondary-light: #E0FFF8;
  --accent: #FF6B35;
  --accent-hover: #E85A28;
  --accent-glow: rgba(255, 107, 53, 0.4);
  --gold: #FFD166;
  --gold-dark: #F4C430;
  --text: #0A2540;
  --text-light: #4A5568;
  --text-muted: #94A3B8;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-gray: #F1F5F9;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(10,37,64,0.06);
  --shadow-md: 0 4px 16px rgba(10,37,64,0.08);
  --shadow-lg: 0 12px 40px rgba(10,37,64,0.12);
  --shadow-xl: 0 24px 60px rgba(10,37,64,0.16);
  --shadow-glow: 0 0 40px rgba(0,201,167,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--text-light);
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 16px;
  background: var(--secondary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-title { margin-bottom: 16px; }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #FF8F65);
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--header-height);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(10,37,64,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  z-index: 1001;
  flex-shrink: 0;
}

.logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-text span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--light-gray);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--light-gray);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,201,167,0.15), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(27,107,147,0.2), transparent),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(255,209,102,0.08), transparent);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.88) 0%, rgba(15,58,92,0.75) 40%, rgba(10,37,64,0.85) 100%);
}

/* Centered Hero Layout */
.hero-centered {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.hero-centered .hero-description {
  margin: 0 auto 36px;
  max-width: 580px;
  font-size: 1.15rem;
}

.hero-centered .hero-buttons {
  justify-content: center;
}

.hero-centered .hero-trust {
  justify-content: center;
}

/* Hero Stats Row */
.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  animation: fadeSlideUp 0.6s 1s both;
}

.hero-stat-pill {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  text-align: center;
  transition: all var(--transition);
}

.hero-stat-pill:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.hero-stat-pill strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat-pill span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  border: 1px solid rgba(0,201,167,0.25);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge svg { width: 14px; height: 14px; color: var(--gold); }

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), #FFE4A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

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

/* Hero Image */
.hero-image { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
  aspect-ratio: 3/4;
  max-height: 540px;
  background: rgba(255,255,255,0.05);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-rating { bottom: 40px; left: -30px; }
.hero-float-card.card-bookings { top: 40px; right: -20px; animation-delay: -2s; }

.float-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon.green { background: var(--secondary-light); color: var(--secondary); }
.float-card-icon.orange { background: #FFF0E8; color: var(--accent); }

.float-card-text strong { display: block; font-size: 0.95rem; color: var(--text); }
.float-card-text span { font-size: 0.75rem; color: var(--text-muted); }

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

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 3;
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.proof-item svg { width: 18px; height: 18px; color: var(--secondary); }

.proof-stars { display: flex; gap: 2px; }
.proof-stars svg { width: 14px; height: 14px; color: var(--gold-dark); }

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--secondary-light), #E0F4FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }

.service-icon svg { width: 26px; height: 26px; color: var(--secondary-dark); }

.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }

.service-card p { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--secondary-dark);
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

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

/* ===== WHY US ===== */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  position: relative;
}

.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.why-image img { width: 100%; height: 100%; object-fit: cover; }

.why-features { display: flex; flex-direction: column; gap: 24px; }

.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.why-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--secondary-light), #E0F4FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.why-feature h4 { margin-bottom: 4px; }
.why-feature p { font-size: 0.9rem; line-height: 1.6; }

/* ===== PROCESS ===== */
.process { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-light), var(--secondary));
  z-index: 0;
}

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

.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(10,37,64,0.2);
  position: relative;
  transition: transform var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(10,37,64,0.25);
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(0,201,167,0.3);
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(0,201,167,0.1), transparent),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(27,107,147,0.15), transparent);
}

.testimonials > .container { position: relative; z-index: 1; }

.testimonials .section-label {
  background: rgba(255,209,102,0.15);
  color: var(--gold);
}

.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.5); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); }

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.testimonial-author-info strong { display: block; font-size: 0.9rem; color: var(--white); }
.testimonial-author-info span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== CTA ===== */
.cta-section { background: var(--white); text-align: center; }

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,201,167,0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,209,102,0.08), transparent 50%);
}

.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }

.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.cta-guarantee svg { width: 16px; height: 16px; color: var(--secondary); }

/* ===== SERVICE AREAS ===== */
.service-areas { background: var(--off-white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
  color: var(--text-light);
}

.area-tag:hover {
  border-color: var(--secondary);
  color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

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

/* Constrain ALL footer SVGs to prevent blowup */
.footer svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer .logo svg {
  width: 36px;
  height: 36px;
}

.footer .footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-links a:hover { color: var(--secondary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--secondary);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ===== SERVICE PAGE STYLES ===== */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.92), rgba(15,58,92,0.8));
  z-index: 1;
}

.page-hero > * { position: relative; z-index: 2; }

/* Video background for service page heroes */
.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Constrain all SVGs in page-hero too */
.page-hero svg { width: 14px; height: 14px; }

/* Contact page hero overrides */
.page-hero--contact { padding: calc(var(--header-height) + 48px) 0 48px; }

.page-hero-headline {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-subtext {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page-hero-badges span,
.page-hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.page-hero .section-label {
  background: rgba(255,209,102,0.15);
  color: var(--gold);
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; font-size: 1.1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 14px; height: 14px; }

.service-detail { padding: 60px 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.service-content h2 { margin-bottom: 16px; font-size: 1.6rem; }
.service-content p { margin-bottom: 16px; }

.service-checklist { margin: 24px 0; }

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.service-checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
}

.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; margin-top: 12px; }

.sidebar-card svg,
.service-sidebar svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
}

/* Override any inline SVGs that may be larger */
.service-detail svg:not(.logo svg) {
  max-width: 24px;
  max-height: 24px;
}

.sidebar-card p { font-size: 0.9rem; line-height: 1.6; }

.sidebar-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.sidebar-card ul li svg {
  color: var(--secondary);
}

/* Service page content images */
.service-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
  box-shadow: var(--shadow-md);
}

/* Sticky sidebar */
@media (min-width: 1025px) {
  .service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
  }
}

.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--secondary-light);
  color: var(--secondary-dark);
}

.sidebar-nav a svg { width: 16px; height: 16px; }

/* ===== CONTACT FORM ===== */
.contact-form-section { padding: 60px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0,201,167,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.contact-info-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--secondary-light), #E0F4FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card-icon svg { width: 20px; height: 20px; color: var(--secondary-dark); }

.contact-info-card h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-card p { font-size: 0.875rem; }

/* ===== ABOUT PAGE ===== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 48px 0;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
}

.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Slide in from left */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from right */
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero entrance animations */
.hero-content .hero-badge { animation: fadeSlideUp 0.7s 0.2s both; }
.hero-content h1 { animation: fadeSlideUp 0.7s 0.4s both; }
.hero-content .hero-description { animation: fadeSlideUp 0.7s 0.6s both; }
.hero-content .hero-buttons { animation: fadeSlideUp 0.7s 0.8s both; }
.hero-content .hero-trust { animation: fadeSlideUp 0.7s 1.0s both; }
.hero-image { animation: fadeSlideUp 0.8s 0.4s both; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Skip nav */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-nav:focus { top: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }

  .hero-centered { padding: 20px 0 40px; }

  .hero-stats-row { flex-wrap: wrap; }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-image-wrapper { aspect-ratio: 3/4; max-height: 420px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { max-height: 360px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links,
  .nav-cta .btn,
  .nav-cta .nav-phone { display: none; }
  .menu-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--primary);
    padding: 0 24px;
    padding-top: calc(var(--header-height) + 20px);
    gap: 4px;
    z-index: 999;
    animation: mobileNavIn 0.3s ease;
  }

  .nav-links.mobile-open a {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.mobile-open a:hover,
  .nav-links.mobile-open a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  /* Mobile nav CTA at bottom */
  .nav-links.mobile-open::after {
    content: 'Call (586) 872-6830';
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), #FF8F65);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
  }

  /* Header bg when mobile open */
  .header:has(.mobile-open) {
    background: var(--primary);
  }

  .header:has(.mobile-open) .logo { color: var(--white); }
  .header:has(.mobile-open) .logo-text span { color: var(--secondary); }
  .header:has(.mobile-open) .menu-toggle span { background: var(--white); }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero { min-height: auto; padding: 120px 0 100px; }

  .hero-centered { padding: 10px 0 30px; }

  .hero-stats-row { gap: 10px; }
  .hero-stat-pill { padding: 12px 18px; }
  .hero-stat-pill strong { font-size: 1.2rem; }

  .hero-image { max-width: 320px; }
  .hero-image-wrapper { max-height: 360px; }

  .hero h1 { font-size: 2.4rem; }

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

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

  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-float-card { display: none; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .proof-items { gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .hero { padding: 100px 0 80px; }
  .hero h1 { font-size: 2rem; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  .hero-stats-row { flex-direction: column; align-items: center; }
  .hero-stat-pill { width: 100%; max-width: 200px; }

  .hero-image { max-width: 260px; }

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

  .cta-box { padding: 48px 24px; }
}
