/* ============================================
   Appliance Repair Panorama City CA
   Service Page Stylesheet
   Inherits Homepage Theme Colors
   Layout Reference: fixitbay.net/refrigerator-repair
   ============================================ */

/* --- CSS Custom Properties (Same as Homepage) --- */
:root {
  /* Primary Palette */
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-700: #1d4ed8;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;

  /* Neutrals */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Accent Colors */
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --green-500: #16a34a;
  --green-400: #22c55e;
  --green-50: #f0fdf4;
  --red-500: #ef4444;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;

  /* Surfaces */
  --bg-primary: var(--white);
  --bg-alt: var(--slate-50);
  --bg-dark: var(--slate-900);
  --bg-dark-alt: var(--slate-800);
  --bg-hero: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 40%, #f8fafc 100%);
  --bg-faq: #faf9f6;

  /* Text */
  --text-primary: var(--slate-900);
  --text-secondary: var(--slate-600);
  --text-muted: var(--slate-500);
  --text-light: var(--slate-400);
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255,255,255,0.7);

  /* Cards */
  --card-bg: var(--white);
  --card-border: var(--slate-200);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --card-shadow-lg: 0 8px 30px rgba(0,0,0,0.1);

  /* Borders */
  --border-subtle: var(--slate-200);
  --border-medium: var(--slate-300);
  --border-accent: var(--blue-600);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 9999px;

  /* Typography */
  --font-primary: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.16s cubic-bezier(0.23,1,0.32,1);
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-hover: 0.2s ease-out;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --nav-height: 78px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--transition-normal); }
a:hover { color: var(--blue-700); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; color: var(--text-primary); }

/* --- Typography Scale --- */
h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(24px, 3.5vw, 38px); letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: clamp(16px, 2vw, 20px); }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-width-narrow); }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--dark p { color: var(--text-on-dark-muted); }
.section--faq { background: var(--bg-faq); }

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}

/* ============================================
   NAVIGATION (Same as homepage)
   ============================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition-normal);
}
.main-nav.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--nav-height);
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0;
  transition: opacity var(--transition-normal);
}
.nav-logo:hover { opacity: 0.95; }
.nav-logo-img {
  height: 58px;
  width: auto;
  max-width: 310px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.02);
}
@media (max-width: 992px) {
  .nav-logo-img {
    height: 50px;
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  .nav-logo-img {
    height: 44px;
    max-width: 220px;
  }
}
@media (max-width: 480px) {
  .nav-logo-img {
    height: 40px;
    max-width: 195px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-hover);
  text-decoration: none;
}
.nav-links a:not(.nav-cta):not(.nav-phone):not(.nav-avail):hover {
  color: var(--blue-600);
  background: var(--blue-50);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--slate-900);
  color: white !important;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.avail-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-pill);
  transition: all var(--transition-hover);
  white-space: nowrap;
}
.nav-phone:hover {
  border-color: var(--blue-600);
  color: var(--blue-600) !important;
  background: var(--blue-50);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-600) !important;
  color: white !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-hover);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.nav-cta:hover {
  background: var(--blue-700) !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

/* ============================================
   SERVICE PAGE HERO — Two Column with Image
   ============================================ */
.sp-hero {
  background: var(--bg-hero);
  overflow: hidden;
  position: relative;
}
.sp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.sp-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 24px;
}
.sp-hero-text {
  max-width: 600px;
}
.sp-hero-text .section-label {
  margin-bottom: 16px;
}
.sp-hero h1 {
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.1;
}
.sp-hero h1 .highlight {
  color: var(--blue-600);
}
.sp-hero-subtitle {
  color: var(--text-secondary) !important;
  font-size: clamp(15px, 1.8vw, 17px);
  margin-bottom: 20px;
  line-height: 1.7;
}
.sp-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.sp-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
}
.sp-highlight-tag svg {
  color: var(--green-500);
  flex-shrink: 0;
}

/* Hero Review Stamps (same as homepage) */
.hero-stamps-row {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.review-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--slate-300);
  background: rgba(255,255,255,0.8);
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color: var(--text-primary);
  cursor: default;
}
.review-stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}
.review-stamp--google { transform: rotate(-4deg); }
.review-stamp--yelp { transform: rotate(3deg); }
.review-stamp:hover {
  transform: rotate(0deg) scale(1.06);
  box-shadow: 0 0 16px rgba(37,99,235,0.15);
  border-color: var(--blue-400);
}
.review-stamp .rs-stars { font-size: 10px; letter-spacing: 1px; line-height: 1; color: var(--amber-500); }
.review-stamp .rs-num { font-size: 22px; font-weight: 700; letter-spacing: 0; line-height: 1; margin: 3px 0; color: var(--text-primary); }
.review-stamp .rs-label { font-size: 8px; letter-spacing: 1.5px; line-height: 1.1; color: var(--text-muted); }
.review-stamp .rs-source { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; margin-top: 2px; color: var(--text-primary); }

.nextdoor-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 3px solid var(--green-500);
  background: var(--green-50);
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: rotate(-2deg);
  color: var(--green-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  cursor: default;
}
.nextdoor-stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--green-500);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}
.nextdoor-stamp:hover {
  transform: rotate(0deg) scale(1.06);
  box-shadow: 0 0 16px rgba(22,163,74,0.2);
}
.nextdoor-stamp .nd-icon { font-size: 18px; margin-bottom: 2px; }
.nextdoor-stamp .nd-year { font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.nextdoor-stamp .nd-fave { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.1; margin: 2px 0; }
.nextdoor-stamp .nd-source { font-size: 7px; font-weight: 600; letter-spacing: 2px; margin-top: 3px; opacity: 0.8; }

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Image */
.sp-hero-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--border-subtle);
}
.sp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   TRUST BAR — Below Hero
   ============================================ */
.sp-trust-bar {
  background: var(--slate-900);
  padding: 36px 0;
}
.sp-trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.sp-trust-stat {
  text-align: center;
  padding: 0 12px;
}
.sp-trust-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.sp-trust-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 8px;
}
.sp-trust-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
}
.sp-trust-value span { font-style: italic; font-weight: 700; }
.sp-trust-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  line-height: 1.4;
}
.stat-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--amber-500);
  font-size: 14px;
  margin-left: 4px;
}

/* ============================================
   BUTTONS (Same as homepage)
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: white !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-hover);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  transform: translateY(-2px);
  color: white !important;
  text-decoration: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--slate-300);
  transition: all var(--transition-hover);
  text-decoration: none;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-600) !important;
  background: var(--blue-50);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Dark bg button variants */
.cta-banner .btn-primary {
  background: var(--blue-500);
  box-shadow: 0 4px 14px rgba(59,130,246,0.3);
}
.cta-banner .btn-primary:hover {
  background: var(--blue-600);
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
}
.cta-banner .btn-secondary {
  color: white !important;
  border-color: rgba(255,255,255,0.3);
}
.cta-banner .btn-secondary:hover {
  border-color: var(--blue-400);
  color: var(--blue-400) !important;
  background: rgba(96,165,250,0.1);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: var(--slate-300);
  z-index: 1;
}
.process-step:not(:last-child)::before {
  content: '→';
  position: absolute;
  top: 30px;
  right: -18px;
  color: var(--blue-600);
  font-size: 16px;
  z-index: 2;
  font-weight: 700;
}
.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--blue-600);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-600);
  margin: 0 auto 16px;
  transition: all var(--transition-hover);
}
.process-step:hover .process-step-num {
  background: var(--blue-600);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.process-step h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   PROBLEMS / SYMPTOMS SECTION
   ============================================ */
.sp-problems-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.sp-problems-intro .section-label {
  margin-bottom: 16px;
}
.sp-problems-intro h2 {
  margin-bottom: 20px;
  text-align: left;
}
.sp-problems-intro p {
  font-size: 15px;
  line-height: 1.8;
}
.sp-problems-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
}
.sp-problems-image img {
  width: 100%;
  display: block;
}
.sp-problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.sp-problem-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-hover);
}
.sp-problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
}
.sp-problem-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-hover);
}
.sp-problem-card:hover .sp-problem-icon {
  background: var(--blue-600);
}
.sp-problem-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
  transition: color var(--transition-hover);
}
.sp-problem-card:hover .sp-problem-icon svg {
  color: white;
}
.sp-problem-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.sp-problem-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--slate-900);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 16px;
}
.cta-banner .section-label {
  color: var(--blue-400);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.sp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sp-pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all var(--transition-hover);
}
.sp-pricing-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}
.sp-pricing-card h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.sp-pricing-card--accent {
  background: var(--slate-900);
  border-color: var(--slate-800);
}
.sp-pricing-card--accent h3 {
  color: var(--text-on-dark);
}
.sp-pricing-card--accent:hover {
  border-color: var(--blue-500);
}
.sp-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.sp-pricing-list li svg {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.sp-pricing-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.sp-pricing-row:last-child { border-bottom: none; }
.sp-pricing-row span { color: rgba(255,255,255,0.6); }
.sp-pricing-row strong {
  color: var(--blue-400);
  font-weight: 600;
  font-size: 14px;
}
.sp-payment-methods {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sp-payment-methods h4 {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sp-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sp-payment-icons span {
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   IN-HOME SERVICE SECTION
   ============================================ */
.sp-inhome-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.sp-inhome-text .section-label {
  margin-bottom: 16px;
}
.sp-inhome-text h2 {
  text-align: left;
  margin-bottom: 20px;
}
.sp-inhome-text p {
  font-size: 15px;
  line-height: 1.8;
}
.sp-expect-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.sp-expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.sp-expect-list li svg {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 3px;
}
.sp-inhome-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
  border: 1px solid var(--border-subtle);
}
.sp-inhome-image img {
  width: 100%;
  display: block;
}

/* ============================================
   PARTS & COMPONENTS SECTION
   ============================================ */
.sp-parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-part-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-hover);
  position: relative;
  overflow: hidden;
}
.sp-part-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}
.sp-part-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
}
.sp-part-card:hover::before {
  transform: scaleX(1);
}
.sp-part-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--blue-600);
}
.sp-part-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.sp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sp-review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-hover);
  position: relative;
}
.sp-review-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}
.sp-review-card--featured {
  grid-column: 1 / -1;
  background: var(--slate-900);
  border-color: var(--slate-800);
}
.sp-review-card--featured p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
}
.sp-review-card--featured .sp-review-author strong {
  color: var(--text-on-dark);
}
.sp-review-card--featured .sp-review-author span {
  color: var(--blue-400);
}
.sp-review-card--featured:hover {
  border-color: var(--blue-500);
}
.sp-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--amber-500);
  color: white;
}
.sp-review-card p {
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
}
.sp-review-author {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sp-review-author strong {
  font-size: 14px;
  color: var(--text-primary);
}
.sp-review-author span {
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================
   TRUST CARDS
   ============================================ */
.sp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-hover);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
}
.trust-card:hover::before {
  transform: scaleX(1);
}
.trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-hover);
}
.trust-card:hover .trust-card-icon {
  background: var(--blue-600);
}
.trust-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-600);
  transition: color var(--transition-hover);
}
.trust-card:hover .trust-card-icon svg {
  color: white;
}
.trust-card h3 { font-size: 17px; margin-bottom: 12px; }
.trust-card p { font-size: 14px; line-height: 1.7; margin-bottom: 0; }

/* ============================================
   RELATED SERVICES
   ============================================ */
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sp-related-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all var(--transition-hover);
  display: flex;
  flex-direction: column;
}
.sp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
  text-decoration: none;
  color: var(--text-secondary);
}
.sp-related-card--home {
  background: var(--blue-50);
  border-color: var(--blue-100);
}
.sp-related-card--home:hover {
  border-color: var(--blue-400);
  background: var(--blue-100);
}
.sp-related-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-hover);
  border: 2px solid var(--blue-100);
}
.sp-related-card:hover .sp-related-icon {
  background: var(--blue-600);
  border-color: var(--blue-600);
}
.sp-related-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
  transition: color var(--transition-hover);
}
.sp-related-card:hover .sp-related-icon svg { color: white; }
.sp-related-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--text-primary); }
.sp-related-card p { font-size: 13px; line-height: 1.6; flex: 1; margin-bottom: 12px; }
.sp-related-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-hover);
}
.sp-related-card:hover .sp-related-link { gap: 8px; }

/* ============================================
   MISSION & VALUES
   ============================================ */
.sp-mission-content {
  max-width: 1000px;
  margin: 0 auto;
}
.sp-mission-statement {
  text-align: center;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 48px;
  padding: 0 20px;
}
.sp-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sp-value-item {
  padding: 24px;
  background: var(--slate-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-hover);
}
.sp-value-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
  border-color: var(--blue-400);
}
.sp-value-item h4 {
  font-size: 16px;
  color: var(--blue-600);
  margin-bottom: 8px;
  font-weight: 700;
}
.sp-value-item p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-hover);
}
.faq-question:hover { color: var(--blue-600); }
.faq-question-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--blue-600);
  transition: all var(--transition-smooth);
}
.faq-item.active .faq-question-icon {
  background: var(--blue-600);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  padding-right: 44px;
}
.faq-answer a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-why-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-hover);
  position: relative;
}
.sp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
}
.sp-why-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: 12px;
  transition: color var(--transition-hover);
}
.sp-why-card:hover .sp-why-num {
  color: var(--blue-50);
}
.sp-why-card h3 { font-size: 17px; margin-bottom: 12px; }
.sp-why-card p { font-size: 14px; line-height: 1.7; margin-bottom: 0; }

/* ============================================
   CLOSING HEADING
   ============================================ */
.sp-closing {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
}
.sp-closing-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

/* ============================================
   FOOTER (Same as homepage)
   ============================================ */
.footer {
  background: var(--slate-900);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 { color: white; font-size: 18px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-400) !important;
  font-weight: 700;
  font-size: 16px;
  transition: color var(--transition-hover);
}
.footer-phone:hover { color: #93c5fd !important; }
.footer-col h4 {
  color: var(--blue-400);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: all var(--transition-hover);
  text-decoration: none;
}
.footer-col a:hover { color: white; padding-left: 6px; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-bottom p:last-child { margin-bottom: 0; }

/* ============================================
   SCROLL FADE-IN
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .sp-hero-content { grid-template-columns: 1fr; text-align: center; }
  .sp-hero-text { max-width: 640px; margin: 0 auto; }
  .sp-hero-image { max-width: 580px; margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-stamps-row { justify-content: center; }
  .sp-hero-highlights { justify-content: center; }

  .sp-trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sp-trust-stat:not(:last-child) { border-right: none; }
  .sp-trust-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .sp-problems-layout { grid-template-columns: 1fr; }
  .sp-problems-intro h2 { text-align: center; }

  .sp-pricing-grid { grid-template-columns: 1fr; }

  .sp-inhome-layout { grid-template-columns: 1fr; }
  .sp-inhome-text h2 { text-align: center; }
  .sp-inhome-image { max-width: 580px; margin: 0 auto; }

  .sp-parts-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-reviews-grid { grid-template-columns: 1fr; }
  .sp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-values-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-step:not(:last-child)::after,
  .process-step:not(:last-child)::before { display: none; }

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

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 40px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    gap: 4px;
    align-items: stretch;
  }
  .nav-links.active { right: 0; }
  .nav-links a { padding: 14px 16px; font-size: 16px; border-radius: var(--radius-sm); }
  .nav-right { flex-direction: column; gap: 8px; width: 100%; }
  .nav-avail, .nav-phone, .nav-cta { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }

  .sp-hero-content { padding: 32px 20px 40px; }
  .sp-hero h1 { font-size: clamp(28px, 7vw, 42px); }

  .hero-stamps-row { gap: 10px; }
  .review-stamp { width: 90px; height: 90px; }
  .review-stamp .rs-num { font-size: 18px; }
  .review-stamp .rs-stars { font-size: 8px; }
  .review-stamp .rs-label { font-size: 7px; }
  .review-stamp .rs-source { font-size: 8px; }
  .nextdoor-stamp { width: 95px; height: 95px; }

  .sp-trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .sp-trust-value { font-size: 28px; }

  .process-steps { grid-template-columns: 1fr; }
  .sp-parts-grid { grid-template-columns: 1fr; }
  .sp-trust-grid { grid-template-columns: 1fr; }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-why-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: clamp(40px, 6vw, 64px) 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { width: 100%; justify-content: center; }
  .hero-stamps-row { gap: 8px; }
  .review-stamp { width: 80px; height: 80px; border-width: 2px; }
  .review-stamp .rs-num { font-size: 16px; }
  .review-stamp .rs-label { font-size: 6px; }
  .nextdoor-stamp { width: 85px; height: 85px; border-width: 2px; }
  .sp-trust-stat:nth-child(odd) { border-right: none; }
  .sp-trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .sp-problems-intro h2 { text-align: left; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .main-nav, .sp-hero-image, .hero-stamps-row, .nextdoor-stamp, .nav-toggle { display: none; }
  .sp-hero { background: none !important; padding: 20px 0; }
  .section { padding: 20px 0; }
  body { color: #000; background: #fff; }
  h1, h2, h3, h4 { color: #000; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   MEGA MENU DROPDOWNS
   ============================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-hover);
  text-decoration: none;
  background: none;
  border: none;
  font-family: var(--font-primary);
}
.nav-dropdown > .nav-dropdown-trigger:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}
.nav-dropdown-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.5;
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  padding: 28px 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
}
.nav-dropdown:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.mega-menu--services {
  width: 680px;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
.mega-menu-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-600);
  padding: 0 10px 10px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--blue-50);
}
.mega-menu-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-hover);
  text-decoration: none;
  white-space: nowrap;
}
.mega-menu-col a:hover {
  color: var(--blue-600);
  background: var(--blue-50);
  padding-left: 14px;
}
.mega-menu-col a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--blue-400);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition-hover);
}
.mega-menu-col a:hover::before {
  opacity: 1;
}
.mega-menu--locations {
  width: 580px;
}
.mega-menu--locations .mega-menu-grid {
  grid-template-columns: repeat(3, 1fr);
}
.mega-menu--locations .mega-menu-col a {
  font-size: 13px;
}
.mega-menu-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-menu-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-hover);
  text-decoration: none;
}
.mega-menu-footer a:hover {
  color: var(--blue-700);
  gap: 10px;
}
.mega-menu-footer span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .mega-menu--services { width: 560px; }
  .mega-menu--locations { width: 480px; }
}

@media (max-width: 767px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown > .nav-dropdown-trigger {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    justify-content: space-between;
  }
  .mega-menu {
    position: static;
    transform: none;
    width: 100% !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 8px 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease;
    background: transparent;
  }
  .mega-menu::before { display: none; }
  .nav-dropdown:hover > .mega-menu {
    transform: none;
  }
  .nav-dropdown.open > .mega-menu {
    max-height: 1200px;
  }
  .mega-menu-grid {
    grid-template-columns: 1fr !important;
    gap: 4px;
  }
  .mega-menu-col h4 {
    font-size: 10px;
    padding: 8px 10px 6px;
    margin-top: 8px;
  }
  .mega-menu-col a {
    font-size: 14px;
    padding: 8px 10px;
  }
  .mega-menu-footer { display: none; }
}
