/* ==========================================================================
   Roof Repair Lakewood CA - Modern Elevated Stylesheet (2026 Edition)
   Modern Cobalt & Slate Palette, Glassmorphism, Responsive Grid
   ========================================================================== */

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

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Modern Colors */
  --primary: #2563eb;          /* Electric Royal Blue */
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-deep: #0f172a;     /* Deep Slate 900 */
  --primary-navy: #090e17;     /* Midnight Dark */
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  
  --accent: #ea580c;           /* Energetic Warm Terracotta/Amber */
  --accent-hover: #c2410c;
  --accent-light: #fff7ed;
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  
  --success: #10b981;
  --success-light: #ecfdf5;

  --text-main: #0f172a;        /* Deep Slate 900 */
  --text-muted: #475569;       /* Slate 600 */
  --text-light: #64748b;       /* Slate 500 */
  
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  
  --border-subtle: #e2e8f0;
  --border-focus: #3b82f6;
  --border-hover: #93c5fd;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-card: 0 10px 25px -4px rgba(15, 23, 42, 0.06), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 20px 30px -4px rgba(37, 99, 235, 0.12), 0 8px 12px -3px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --container-max: 1240px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--text-main);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 15px;
}

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

/* Modern Typography */
h1, h2, h3, h4, h5 {
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  width: fit-content;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

.eyebrow-accent {
  color: var(--accent);
  background: var(--accent-light);
  border-color: rgba(234, 88, 12, 0.2);
}

.eyebrow-accent .badge-dot {
  background-color: var(--accent);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Top Notification Banner */
.top-bar {
  background: #090e17;
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-location svg {
  color: var(--accent);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-contact a {
  color: #f8fafc;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.top-bar-contact a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.brand-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
}

.brand-logo span span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: #334155;
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  line-height: 1.2;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-accent {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--primary-deep);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-phone {
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-phone:hover {
  background: #059669;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-block {
  width: 100%;
}

.btn-view-all {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--border-subtle);
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  margin: 2.5rem auto 0 auto;
  box-shadow: var(--shadow-sm);
}

.btn-view-all:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text-main);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Modern Hero Section */
.hero-section {
  position: relative;
  background-color: #0b1120;
  color: #ffffff;
  padding: 5rem 0 6.5rem 0;
  overflow: hidden;
}

.hero-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.94) 0%, rgba(15, 23, 42, 0.82) 48%, rgba(30, 58, 138, 0.75) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
}

.hero-content .lead {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #e2e8f0;
  margin-bottom: 1.75rem;
  max-width: 620px;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 14px;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .hero-pills {
    grid-template-columns: 1fr;
  }
}

.hero-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.hero-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.hero-pill svg {
  color: #38bdf8;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Glassmorphic Lead Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-main);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  position: relative;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 4px;
}

.hero-form-card h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.hero-form-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.4rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background-color: #f8fafc;
  color: var(--text-main);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
}

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

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.85rem;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.45;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Modern Split Feature Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

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

.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background-color: #e2e8f0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.feature-list {
  list-style: none;
  margin: 1.75rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 1rem;
  font-size: 1.08rem;
  color: #334155;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.74-5.25z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Why Choose Us Modern Cards */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
}

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

.benefit-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.98rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Modern Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

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

.service-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #f1f5f9;
}

.service-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-thumb {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.75rem 1.75rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.service-card-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card-link:hover {
  color: var(--accent);
  gap: 10px;
}

/* Extra Services Hide/Show Animation */
.service-card-extra.is-hidden {
  display: none !important;
}

.service-card-extra {
  animation: cardFadeIn 0.35s ease forwards;
}

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

.services-action-wrapper {
  text-align: center;
}

/* Locations Section */
.locations-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin: 1.75rem 0 2.25rem 0;
}

.location-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.location-item:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
  transform: translateX(4px);
}

.location-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-item-info svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.location-item span {
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b;
}

.location-item a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.zip-badge-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.zip-badge {
  background: #1e293b;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Real Interactive Map Section */
.map-interactive-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
  background: #0f172a;
}

.map-embed-frame {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.map-info-floating-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.map-info-floating-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-info-floating-card h4 svg {
  color: #dc2626;
}

.map-info-floating-card p {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}

.map-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.map-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* FAQ Accordion Section */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  gap: 16px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--border-focus);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  color: #94a3b8;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--border-focus);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.75rem 1.4rem 1.75rem;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  background-color: #0b1120;
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
  z-index: 1;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.92) 0%, rgba(30, 58, 138, 0.8) 100%);
  z-index: 2;
}

.final-cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.final-cta-content p {
  color: #e2e8f0;
  font-size: 1.2rem;
  margin-bottom: 2.25rem;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #090e17;
  color: #94a3b8;
  padding: 4.5rem 0 2.5rem 0;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  color: #f8fafc;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-column h5 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.98rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
}

.footer-contact-info svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-info a {
  color: #f8fafc;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-disclaimer-box {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.55;
}

/* Footer text clarity enhancements */
.site-footer,
.site-footer h4,
.site-footer h5,
.site-footer .footer-heading,
.site-footer .brand-logo,
.site-footer .brand-logo span {
  color: #f8fafc !important;
}

.site-footer .brand-logo span span {
  color: #38bdf8 !important;
}

.site-footer p,
.site-footer .footer-desc,
.site-footer .footer-links a,
.site-footer .footer-contact-info span,
.site-footer .footer-bottom p {
  color: #94a3b8 !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact-info a {
  color: #ffffff !important;
}


/* ==========================================================================
   Service Detail Page Styles
   ========================================================================== */

.breadcrumbs-bar {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  font-size: 0.875rem;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: var(--text-light);
  user-select: none;
}

.breadcrumb-item.current {
  color: var(--primary);
  font-weight: 600;
}

/* Service Detail Layout */
.service-content-block {
  margin-bottom: 3.5rem;
}

.service-content-block h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.service-content-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.service-content-block p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.process-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary);
  border-radius: 14px;
  padding: 1.5rem 1.15rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent);
  border-color: #93c5fd;
  box-shadow: 0 12px 24px -4px rgba(37, 99, 235, 0.12);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.04) 100%);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.process-step-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.process-card:hover .process-step-indicator {
  color: var(--accent);
  transform: translateX(2px);
}

.process-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  min-height: 2.7em;
}

.process-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 1023px) and (min-width: 680px) {
  .service-process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }
  .process-card {
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 240px;
  }
}

@media (max-width: 679px) {
  .service-process-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .process-card {
    width: 100%;
  }
  .process-card h4 {
    min-height: auto;
  }
}

.materials-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.material-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.material-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.material-card h4 svg {
  color: var(--accent);
}

.material-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0;
}

.related-services-section {
  background: var(--bg-subtle);
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.related-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.related-service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.related-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.related-service-card a:hover {
  color: var(--accent);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split-layout, .split-layout.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .locations-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .map-info-floating-card {
    position: static;
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-cta .btn {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .neighborhoods-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .map-embed-frame {
    height: 360px;
  }
}

/* ==========================================================================
   Location Page Specialized Services Cards
   ========================================================================== */
.location-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .location-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .location-services-grid {
    grid-template-columns: 1fr;
  }
}

.location-service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.location-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.location-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}

.location-service-card:hover::before {
  opacity: 1;
}

.location-service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.location-service-card:hover .location-service-icon {
  transform: scale(1.08);
  background: var(--primary-gradient);
  color: #ffffff;
}

.location-service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.location-service-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.location-service-card h3 a:hover {
  color: var(--primary);
}

.location-service-card p {
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.location-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.location-service-link:hover {
  color: var(--accent);
  gap: 12px;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.about-story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  color: var(--primary-deep);
}

.about-story-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3.5rem 0 1rem 0;
}

.stat-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary-deep);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.contact-info-panel h2 {
  color: #ffffff;
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.contact-info-panel > p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.contact-item-text h4 {
  color: #f8fafc;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-item-text a:hover {
  color: #38bdf8;
}

.contact-hours-box {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-hours-box h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-hours-box p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.contact-form-panel h3 {
  font-size: 1.75rem;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.contact-form-panel > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Legal Pages Styles (Privacy Policy & Terms)
   ========================================================================== */
.legal-page-header {
  background: linear-gradient(135deg, #090e17 0%, #0f172a 50%, #1e3a8a 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem 0;
  text-align: center;
}

.legal-page-header h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
}

.legal-meta {
  color: #94a3b8;
  font-size: 0.95rem;
}

.legal-container {
  max-width: 920px;
  margin: 3.5rem auto 5rem auto;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-intro-box {
  background: var(--bg-subtle);
  border-left: 4px solid var(--primary);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--primary-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section h3 {
  font-size: 1.2rem;
  color: var(--primary-deep);
  margin: 1.25rem 0 0.5rem 0;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.legal-contact-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.legal-contact-card p {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.legal-contact-card p strong {
  color: var(--primary-deep);
}

@media (max-width: 991px) {
  .about-story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .legal-container {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem 4rem 1rem;
  }
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
  .contact-info-panel {
    padding: 2rem 1.5rem;
  }
}


