/* ============================================
   Appliance Repair Panorama City CA
   Area Page Stylesheet — Unique Layout
   Same brand palette, different structure
   ============================================ */

/* --- CSS Custom Properties (Same Brand Palette) --- */
: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-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/service pages)
   ============================================ */
.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);
}

/* ============================================
   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;
}

/* ============================================
   AREA PAGE HERO — Full-Width with City Image
   (Unique: different from service-page 2-col hero)
   ============================================ */
.ap-hero {
  position: relative;
  min-height: clamp(400px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ap-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ap-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ap-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,23,42,0.25) 0%,
    rgba(15,23,42,0.55) 50%,
    rgba(15,23,42,0.88) 100%
  );
  z-index: 1;
}
.ap-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px clamp(40px, 6vw, 64px);
}
.ap-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.ap-hero-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-hover);
}
.ap-hero-breadcrumb a:hover { color: white; }
.ap-hero-breadcrumb .bc-sep { opacity: 0.4; }
.ap-hero-breadcrumb .bc-current { color: white; font-weight: 600; }
.ap-hero h1 {
  color: white;
  max-width: 780px;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.ap-hero h1 .highlight {
  color: var(--blue-400);
}
.ap-hero-subtitle {
  color: rgba(255,255,255,0.85) !important;
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.ap-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.ap-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ap-hero-meta-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}
.ap-hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   AREA QUICK-INFO BAR
   (Unique: horizontal info strip below hero)
   ============================================ */
.ap-quick-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  position: relative;
  z-index: 5;
}
.ap-quick-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.ap-quick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.ap-quick-item:not(:last-child) {
  border-right: 1px solid var(--border-subtle);
  padding-right: 24px;
}
.ap-quick-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-quick-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue-600);
}
.ap-quick-text {
  display: flex;
  flex-direction: column;
}
.ap-quick-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
}
.ap-quick-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ============================================
   MAGAZINE-STYLE CONTENT SECTIONS
   (Unique: alternating text-image blocks)
   ============================================ */
.ap-magazine {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.ap-magazine--reverse {
  grid-template-columns: 0.85fr 1fr;
}
.ap-magazine--reverse .ap-magazine-image { order: -1; }

.ap-magazine-text .section-label { margin-bottom: 12px; }
.ap-magazine-text h2 {
  text-align: left;
  margin-bottom: 20px;
}
.ap-magazine-text p {
  font-size: 15px;
  line-height: 1.85;
}
.ap-magazine-text ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ap-magazine-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ap-magazine-text ul li svg {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 3px;
}
.ap-magazine-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
}
.ap-magazine-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ap-magazine-image:hover img {
  transform: scale(1.03);
}
.ap-magazine-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(15,23,42,0.85));
  color: white;
  font-size: 13px;
  font-weight: 500;
}

/* ============================================
   PULL QUOTE / HIGHLIGHT BOX
   (Unique: editorial-style callout)
   ============================================ */
.ap-pullquote {
  border-left: 4px solid var(--blue-600);
  padding: 24px 28px;
  margin: 28px 0;
  background: var(--blue-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   SERVICE TAGS — Horizontal Scrollable
   (Unique: pill-tag layout for services)
   ============================================ */
.ap-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}
.ap-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-hover);
  cursor: default;
  text-decoration: none;
}
.ap-service-tag:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.12);
}
.ap-service-tag svg {
  width: 16px;
  height: 16px;
  color: var(--blue-500);
}

/* ============================================
   ACCORDION-STYLE SERVICE DETAILS
   (Unique: expandable service descriptions)
   ============================================ */
.ap-service-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.ap-service-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-hover);
  background: var(--card-bg);
}
.ap-service-item:hover {
  border-color: var(--blue-400);
  box-shadow: var(--card-shadow);
}
.ap-service-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-hover);
}
.ap-service-trigger:hover { color: var(--blue-600); }
.ap-service-trigger-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}
.ap-service-trigger-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue-600);
  transition: transform var(--transition-smooth);
}
.ap-service-item.active .ap-service-trigger-icon {
  background: var(--blue-600);
}
.ap-service-item.active .ap-service-trigger-icon svg {
  color: white;
  transform: rotate(180deg);
}
.ap-service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.ap-service-item.active .ap-service-body {
  max-height: 600px;
}
.ap-service-body-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ============================================
   WHY CHOOSE — Timeline Style
   (Unique: vertical timeline layout)
   ============================================ */
.ap-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.ap-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--slate-200);
}
.ap-timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.ap-timeline-dot {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 3px solid var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition-hover);
}
.ap-timeline-item:hover .ap-timeline-dot {
  background: var(--blue-600);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.ap-timeline-dot svg {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
  transition: color var(--transition-hover);
}
.ap-timeline-item:hover .ap-timeline-dot svg { color: white; }
.ap-timeline-content h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.ap-timeline-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   CHALLENGES — Icon List Cards
   (Unique: horizontal card strips)
   ============================================ */
.ap-challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ap-challenge-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-hover);
}
.ap-challenge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
}
.ap-challenge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-hover);
}
.ap-challenge-card:hover .ap-challenge-icon {
  background: var(--blue-600);
}
.ap-challenge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
  transition: color var(--transition-hover);
}
.ap-challenge-card:hover .ap-challenge-icon svg { color: white; }
.ap-challenge-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.ap-challenge-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   PROCESS — Numbered Steps
   (Unique: horizontal numbered cards)
   ============================================ */
.ap-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ap-process-card {
  padding: 28px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  transition: all var(--transition-hover);
  overflow: hidden;
}
.ap-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.ap-process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
}
.ap-process-card:hover::before { opacity: 1; }
.ap-process-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition-hover);
}
.ap-process-card:hover .ap-process-num { color: var(--blue-50); }
.ap-process-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}
.ap-process-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   ZIP CODES — Badge Cards
   (Unique: map-pin style zip cards)
   ============================================ */
.ap-zip-section {
  text-align: center;
}
.ap-zip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.ap-zip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: var(--card-bg);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all var(--transition-hover);
  min-width: 160px;
}
.ap-zip-card:hover {
  border-color: var(--blue-500);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.ap-zip-pin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-zip-pin svg {
  width: 20px;
  height: 20px;
  color: white;
}
.ap-zip-code {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.ap-zip-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.ap-zip-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   THINGS TO DO — Photo Cards
   (Unique: image-based attraction cards)
   ============================================ */
.ap-ttd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ap-ttd-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  transition: all var(--transition-hover);
}
.ap-ttd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue-400);
}
.ap-ttd-card-body {
  padding: 24px;
}
.ap-ttd-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.ap-ttd-card h3 a {
  color: var(--text-primary);
  transition: color var(--transition-hover);
}
.ap-ttd-card h3 a:hover { color: var(--blue-600); }
.ap-ttd-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   FAQ — Accordion (same interaction, refined style)
   ============================================ */
.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;
}

/* ============================================
   AREAS WE SERVE — Interactive Grid
   (Unique: nearby area cards with links)
   ============================================ */
.ap-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ap-area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all var(--transition-hover);
  font-size: 14px;
  font-weight: 600;
}
.ap-area-card:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
  text-decoration: none;
}
.ap-area-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--blue-400);
}
.ap-area-card:hover .ap-area-dot {
  background: var(--blue-600);
}

/* ============================================
   CTA BANNER (Dark Background)
   ============================================ */
.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); }
.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);
}
.ap-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

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

/* ============================================
   BODY CONTENT FORMATTING
   ============================================ */
.ap-body-content {
  max-width: 800px;
  margin: 0 auto;
}
.ap-body-content h2 {
  text-align: left;
  margin-bottom: 20px;
}
.ap-body-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--blue-600);
}
.ap-body-content p {
  font-size: 15px;
  line-height: 1.85;
}
.ap-body-content a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(37,99,235,0.3);
  text-underline-offset: 3px;
  transition: all var(--transition-hover);
}
.ap-body-content a:hover {
  text-decoration-color: var(--blue-600);
}

/* ============================================
   FOOTER (Same as service pages)
   ============================================ */
.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) {
  .ap-hero { min-height: 380px; }
  .ap-hero-content { padding-bottom: 36px; }

  .ap-quick-bar-inner { flex-wrap: wrap; }
  .ap-quick-item { flex: 1 1 45%; }
  .ap-quick-item:nth-child(2) { border-right: none; }
  .ap-quick-item:nth-child(3),
  .ap-quick-item:nth-child(4) { border-right: none; padding-top: 16px; border-top: 1px solid var(--border-subtle); }

  .ap-magazine,
  .ap-magazine--reverse { grid-template-columns: 1fr; }
  .ap-magazine--reverse .ap-magazine-image { order: 0; }
  .ap-magazine-text h2 { text-align: center; }
  .ap-magazine-image { max-width: 580px; margin: 0 auto; }

  .ap-challenges-grid { grid-template-columns: 1fr; }
  .ap-process-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-ttd-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-areas-grid { grid-template-columns: repeat(3, 1fr); }

  .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; }

  .ap-hero { min-height: 340px; }
  .ap-hero h1 { font-size: clamp(26px, 7vw, 38px); }
  .ap-hero-meta { gap: 8px; }
  .ap-hero-meta-item { font-size: 12px; padding: 6px 12px; }

  .ap-quick-bar-inner { flex-direction: column; gap: 16px; }
  .ap-quick-item { border-right: none !important; padding-right: 0 !important; width: 100%; }
  .ap-quick-item:not(:last-child) { border-bottom: 1px solid var(--border-subtle); padding-bottom: 16px; }

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

  .ap-timeline::before { left: 20px; }
  .ap-timeline-dot { width: 40px; height: 40px; min-width: 40px; }
  .ap-timeline-dot svg { width: 16px; height: 16px; }
  .ap-timeline-item { gap: 16px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .ap-hero-cta-row { flex-direction: column; }
  .ap-hero-cta-row .btn-primary,
  .ap-hero-cta-row .btn-secondary { width: 100%; justify-content: center; }
  .ap-cta-group { flex-direction: column; }
  .ap-cta-group .btn-primary,
  .ap-cta-group .btn-secondary { width: 100%; justify-content: center; }
  .ap-zip-grid { gap: 10px; }
  .ap-zip-card { min-width: 140px; padding: 16px 20px; }
  .ap-areas-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .main-nav, .ap-hero-bg, .ap-hero-overlay, .nav-toggle { display: none; }
  .ap-hero { background: none !important; min-height: auto; padding: 20px 0; }
  .ap-hero h1 { color: #000; text-shadow: none; }
  .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; }
}
