﻿/* Utah Emergency HVAC - High-Conversion Multi-Million Dollar Aesthetic */
:root {
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Color Palette */
  --color-primary-dark: #0B132B; /* Deep Navy Header/Footer */
  --color-primary-navy: #1C2541; /* Structural Navy Slate */
  --color-action-red: #D90429;   /* Alert Red for Urgent CTAs */
  --color-action-red-hover: #b80320;
  --color-action-orange: #FF5A36; /* Safety Orange Accent */
  --color-accent-ice: #e0f2fe;   /* High-Contrast Light Blue Accent BG */
  --color-accent-blue: #0284c7;  /* HVAC Blue */
  --color-bg-main: #F4F6F8;      /* Off-White Section Alternating BG */
  --color-card-bg: #FFFFFF;
  --color-text-main: #1e293b;    /* High contrast dark text */
  --color-text-heading: #0B132B;
  --color-text-muted: #475569;
  --color-border: #E2E8F0;
  --color-border-hover: #CBD5E1;

  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 4px rgba(11, 19, 43, 0.04);
  --shadow-md: 0 10px 25px rgba(11, 19, 43, 0.07);
  --shadow-xl: 0 20px 40px rgba(11, 19, 43, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.65;
  font-size: 1.05rem;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #0369a1;
  text-decoration: underline;
}

/* Container */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* TOP ALERT BAR */
.top-urgency-bar {
  background: linear-gradient(90deg, #990000 0%, #D90429 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* STICKY HEADER */
.site-header {
  background-color: rgba(11, 19, 43, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none !important;
  white-space: nowrap;
}

.brand-badge {
  background: var(--color-action-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-glow 2s infinite;
  display: inline-block;
}

/* Hide 24/7 Live badge on small mobile screens to prevent crowding header logo & hamburger */
@media (max-width: 640px) {
  .brand-badge {
    display: none !important;
  }
  .brand-logo {
    font-size: 1.15rem;
  }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(217, 4, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); }
}

/* NAVIGATION & DROPDOWNS */
.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover {
  color: #60a5fa;
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  padding: 0.6rem 0;
  display: none;
  flex-direction: column;
  z-index: 1001;
}

.nav-item:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 0.65rem 1.2rem;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.15s ease;
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--color-action-red);
  text-decoration: none;
}

.header-phone-btn {
  background-color: var(--color-action-red);
  color: #ffffff !important;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(217, 4, 41, 0.4);
  transition: transform 0.15s ease, background 0.2s ease;
  min-height: 48px;
}

.header-phone-btn:hover {
  background-color: var(--color-action-red-hover);
  transform: translateY(-1px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

@media (max-width: 960px) {
  .main-nav, .header-phone-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* MOBILE NAVIGATION DRAWER — FULL-SCREEN SLIDE-IN OVERLAY */

/* Dimmer backdrop */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 8888;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* Drawer panel */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #0f172a;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

/* Sticky header row inside drawer */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: #0b132b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-nav-title {
  color: #ff8595;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease;
}
.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Scrollable content area */
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.8rem 1.2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  text-decoration: none;
  transition: color 0.15s ease;
}
.mobile-nav-link:hover {
  color: #ff8595;
}

/* Collapsible Sub-Menus inside Mobile Drawer */
.mobile-nav-details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-summary {
  list-style: none;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  user-select: none;
  transition: color 0.15s ease;
}
.mobile-nav-summary:hover {
  color: #60a5fa;
}
.mobile-nav-summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-arrow {
  transition: transform 0.22s ease;
  color: #60a5fa;
  flex-shrink: 0;
}

.mobile-nav-details[open] .mobile-nav-arrow {
  transform: rotate(180deg);
}

.mobile-nav-sublist {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.2rem 0 0.6rem 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-sublink {
  color: #94a3b8;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.55rem 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: color 0.15s ease;
}
.mobile-nav-sublink:last-child {
  border-bottom: none;
}
.mobile-nav-sublink:hover {
  color: #ffffff;
}

.mobile-nav-sublink.see-all-link {
  color: var(--color-action-orange);
  font-weight: 800;
  padding-top: 0.65rem;
}

/* Call button at bottom of drawer */
.mobile-nav-phone-btn {
  background: var(--color-action-red);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 1.2rem;
  display: block;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
  transition: background 0.15s ease;
}
.mobile-nav-phone-btn:hover {
  background: #b0021c;
}

/* HERO SECTION - DARK MOODY MOUNTAIN OVERLAY */
.hero-dark {
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.94) 0%, rgba(28, 37, 65, 0.96) 100%),
              url('/assets/images/hero-van.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 3.5rem 0 4rem;
  border-bottom: 4px solid var(--color-action-red);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

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

.hero-pre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 4, 41, 0.2);
  border: 1px solid var(--color-action-red);
  color: #ff8595;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

.hero-dark h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: #ffffff;
}

@media (max-width: 600px) {
  .hero-dark h1 {
    font-size: 2rem;
  }
}

.hero-dark .lead {
  font-size: 1.18rem;
  color: #e2e8f0;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.btn-primary-lg {
  background: var(--color-action-red);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(217, 4, 41, 0.4);
  text-decoration: none !important;
  min-height: 52px;
  transition: all 0.2s ease;
}

.btn-primary-lg:hover {
  background: var(--color-action-red-hover);
  transform: translateY(-2px);
}

.btn-secondary-lg {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  min-height: 52px;
  transition: all 0.2s ease;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  border-left: 3px solid var(--color-action-red);
  padding-left: 0.8rem;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-lbl {
  font-size: 0.82rem;
  color: #cbd5e1;
}

/* HERO CALL CARD */
.hero-call-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #0f172a;
}

.hero-call-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #cbd5e1;
}

.hero-call-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-call-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 19, 43, 0.92);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.hero-call-card-body {
  padding: 1.4rem 1.6rem;
  text-align: center;
}

.hero-call-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.hero-call-card-body p {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 1rem;
}

.dispatch-phone-lg {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--color-action-red);
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(217, 4, 41, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.dispatch-phone-lg:hover {
  background: var(--color-action-red-hover);
  transform: scale(1.02);
}

/* EXECUTIVE SUMMARY BLUF CALLOUT BOX */
.bluf-callout {
  background: var(--color-accent-ice);
  border: 2px solid var(--color-accent-blue);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  margin: 2.5rem 0 2rem 0;
  box-shadow: var(--shadow-sm);
}

.bluf-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0369a1;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.bluf-callout p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #0c4a6e;
  font-weight: 600;
}

/* SECTION TITLES & LAYOUT SPACING */
.page-section {
  padding: 3.5rem 0;
}

.section-header {
  margin-bottom: 2rem;
  text-align: left;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

/* VISUAL SERVICE GRID (3x2 CARDS) */
.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent-blue);
}

.service-card-img-wrap {
  margin: -1.8rem -1.8rem 1.4rem -1.8rem;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #cbd5e1;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1.4rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
}

.service-sla-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-action-red);
  background: #fef2f2;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}

.service-card-link {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* WASATCH FRONT DISPATCH MAP */
.map-dispatch-section {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
}

.city-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.city-pill {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  text-decoration: none !important;
  box-shadow: var(--shadow-sm);
}

.city-pill:hover {
  background: #0f172a;
  border-color: #0f172a;
  transform: translateY(-2px);
}

.city-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f172a;
}

.city-pill:hover .city-name {
  color: #ffffff;
}

.city-status {
  font-size: 0.75rem;
  font-weight: 800;
  color: #047857;
  background: #d1fae5;
  padding: 0.18rem 0.5rem;
  border-radius: 12px;
}

/* 3-STEP HORIZONTAL TIMELINE GRID (HOMEPAGE 1-ROW GRID) */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin: 1.5rem 0 3.5rem 0;
}

@media (max-width: 860px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-step {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  border-top: 5px solid var(--color-action-orange);
  padding: 2rem 1.8rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-action-orange);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.timeline-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* COMPACT 5-CARD ROW FOR STEP-BY-STEP TRIAGE PROTOCOL */
.compact-5-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1080px) {
  .compact-5-row {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}

.compact-step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  padding: 1.3rem 1.1rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-step-card:hover {
  border-color: var(--color-action-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.compact-step-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-action-orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.compact-step-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.compact-step-text {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.5;
}

/* MODERN SLEEK INTERACTIVE FAQ ACCORDION */
.modern-faq-section {
  margin: 3.5rem 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.6rem;
}

.faq-accordion-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-item[open] {
  border-color: var(--color-accent-blue);
  background: #f0f9ff;
  box-shadow: var(--shadow-md);
}

.faq-accordion-summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-accordion-summary::-webkit-details-marker {
  display: none;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-accordion-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-accordion-content {
  padding: 0 1.5rem 1.3rem 1.5rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
}

/* REVIEWS MASONRY GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.review-text {
  font-size: 0.98rem;
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
}

/* E-E-A-T CREDENTIAL GRID */
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.eeat-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-accent-blue);
}

.eeat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

/* COMPREHENSIVE FOOTER */
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  border-top: 4px solid var(--color-action-red);
  padding: 4.5rem 0 1.8rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: #cbd5e1;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: none;
}

.status-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  margin-top: 0.8rem;
}

.footer-trust-logos {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}

.trust-logo-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* FIXED MOBILE BOTTOM DOCKED CALL BAR (< 768px) - CLEAN SINGLE ICON & DYNAMIC TEXT */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary-dark);
  z-index: 9999;
  display: flex;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 769px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-btn-call-full {
  width: 100%;
  background: var(--color-action-red);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 3.8vw, 1.05rem);
  font-weight: 800;
  padding: 0.85rem 0.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none !important;
  box-shadow: 0 -4px 15px rgba(217, 4, 41, 0.4);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
