/* ═══════════════════════════════════════════════════
   Louisiana FAST HVAC — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────── */
:root {
  --navy:        #091F35;
  --blue:        #156DB5;
  --light-blue:  #EAF5FC;
  --orange:      #F28C28;
  --white:       #FFFFFF;
  --light-gray:  #F4F7FA;
  --text:        #263746;
  --text-muted:  #5A7184;
  --border:      #D9E6F0;
  --shadow-sm:   0 2px 8px rgba(9,31,53,0.08);
  --shadow-md:   0 4px 20px rgba(9,31,53,0.12);
  --shadow-lg:   0 8px 40px rgba(9,31,53,0.16);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --header-h:    76px;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-head:   'Poppins', 'Inter', system-ui, sans-serif;
  --transition:  all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 70px; /* reserve space for mobile call bar */
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
address { font-style: normal; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }

/* ── Skip link ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Container ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.content-narrow { max-width: 820px; }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #d97a1e;
  border-color: #d97a1e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,140,40,0.35);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: #125fa0;
  border-color: #125fa0;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-phone {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}
.btn-phone:hover {
  background: #d97a1e;
  border-color: #d97a1e;
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

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

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

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ── Header ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* Logo */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-icon svg { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--orange); font-weight: 800; }

/* Primary nav */
.header-nav { display: flex; align-items: center; }

.primary-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.1rem;
}
.primary-menu > li { position: relative; }
.primary-menu > li > a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.primary-menu > li > a:hover,
.primary-menu > li > a:focus-visible,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-page-ancestor > a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 100;
}
.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-menu .sub-menu li a {
  display: block;
  padding: 0.55rem 1.2rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.primary-menu .sub-menu li a:hover { background: var(--light-blue); color: var(--blue); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--orange);
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Drawer ──────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 92vw);
  height: 100dvh;
  background: var(--navy);
  z-index: 2000;
  overflow-y: auto;
  transition: right 0.3s ease;
  overscroll-behavior: contain;
}
.mobile-drawer.is-open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,31,53,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-drawer-inner { padding: 1rem; }
.mobile-close {
  display: block;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  line-height: 1;
}
.mobile-call-top { display: flex; width: 100%; justify-content: center; margin: 1rem 0; }

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
}
.mobile-menu li a:hover { color: var(--orange); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(520px, 75vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Crect width='1600' height='900' fill='%23091F35'/%3E%3C!-- Simulated HVAC background --%3E%3Crect x='600' y='100' width='800' height='650' rx='8' fill='%23156DB5' opacity='.08'/%3E%3Ccircle cx='1100' cy='400' r='260' fill='%23156DB5' opacity='.06'/%3E%3Ccircle cx='1300' cy='200' r='120' fill='%23F28C28' opacity='.05'/%3E%3C!-- Grid lines --%3E%3Cpath stroke='%23fff' stroke-width='1' opacity='.03' d='M0 150h1600M0 300h1600M0 450h1600M0 600h1600M0 750h1600M200 0v900M400 0v900M600 0v900M800 0v900M1000 0v900M1200 0v900M1400 0v900'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,31,53,0.97) 0%,
    rgba(9,31,53,0.85) 50%,
    rgba(9,31,53,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}
.hero-text { max-width: 640px; }

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Trust Strip ────────────────────────────────── */
.trust-strip {
  background: var(--blue);
  padding: 1.15rem 0;
}
.trust-strip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}
.trust-icon {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

/* ── Sections ───────────────────────────────────── */
.section { padding: 5rem 0; }
.bg-light { background: var(--light-gray); }
.bg-navy  { background: var(--navy); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; }

.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,0.7); }

.section-label {
  display: inline-block;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ── Services Grid ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.service-card:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--light-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: auto;
  transition: var(--transition);
}
.service-card-link:hover { color: var(--orange); gap: 0.55rem; }

/* ── Urgent CTA ─────────────────────────────────── */
.urgent-cta { background: var(--light-blue); padding: 3.5rem 0; }
.urgent-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.urgent-cta-text h2 { color: var(--navy); margin-bottom: 0.5rem; }
.urgent-cta-text p  { color: var(--text-muted); max-width: 560px; margin: 0; }

.urgent-pulse { animation: pulse-ring 2.5s ease-out infinite; }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(242,140,40,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(242,140,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,140,40,0); }
}

/* ── Split Sections ─────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-text { display: flex; flex-direction: column; gap: 1rem; }
.split-text h2 { margin-bottom: 0.25rem; }
.split-text p  { color: var(--text-muted); }

.split-visual { display: flex; justify-content: center; align-items: center; }

.visual-card {
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 360px;
}
.visual-card-dark { background: var(--navy); }
.visual-card h3   { margin: 1rem 0 0.35rem; font-size: 1.15rem; }
.visual-card p    { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.visual-icon { width: 80px; height: 80px; margin-inline: auto; }

/* ── Check List ─────────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.25rem 0;
}
.check-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--light-blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23156DB5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 5 8 13 4 9'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Problems Section ───────────────────────────── */
.problems-section { background: var(--light-gray); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.problem-item:hover { border-color: var(--orange); color: var(--navy); }
.problem-check {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.problems-cta { text-align: center; }

/* ── Why Section ────────────────────────────────── */
.why-section { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  transition: var(--transition);
}
.why-item:hover { background: rgba(255,255,255,0.1); }
.why-icon {
  width: 40px;
  height: 40px;
  background: rgba(242,140,40,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}

/* ── Maintenance Benefits ───────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-blue);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.section-footer-cta { text-align: center; }

/* ── Residential / Commercial ───────────────────── */
.resi-commercial { padding: 5rem 0; }
.resi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.rc-icon { margin-bottom: 0.5rem; }
.rc-icon svg { width: 60px; height: 60px; }
.resi-card h3 { font-size: 1.3rem; }
.resi-card p  { color: var(--text-muted); font-size: 0.95rem; }

/* ── Process Steps ──────────────────────────────── */
.process-section { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  counter-reset: steps;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.process-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ── Service Areas ──────────────────────────────── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.areas-grid-lg { justify-content: flex-start; margin-bottom: 2rem; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.area-chip:hover { border-color: var(--blue); color: var(--blue); }
.area-chip-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-weight: 700;
}
.area-chip-primary svg { stroke: var(--orange); }
.areas-cta { text-align: center; }

/* ── Reviews ────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--orange); font-size: 1.15rem; margin-bottom: 0.75rem; }
.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.review-card cite { font-size: 0.85rem; color: var(--text-muted); font-style: normal; font-weight: 600; }
.reviews-cta { text-align: center; }

/* ── FAQ ────────────────────────────────────────── */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  user-select: none;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  transition: transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-answer a { color: var(--blue); }

/* ── Final CTA ──────────────────────────────────── */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #123456 100%);
  padding: 5.5rem 0;
  text-align: center;
}
.final-cta-inner { max-width: 700px; margin-inline: auto; }
.final-cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta-section p  { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 1.05rem; }

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.final-address {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin: 0;
}

/* ── CTA Strip ──────────────────────────────────── */
.cta-strip { background: var(--navy); padding: 3rem 0; }
.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-strip-text { color: var(--white); font-size: 1.1rem; font-weight: 600; margin: 0; }

/* ── Page Hero ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #123456 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero-title { color: var(--white); margin-bottom: 0.75rem; }
.page-hero-sub   { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 1.75rem; }

/* ── Page Body ──────────────────────────────────── */
.page-body { padding: 5rem 0; }
.page-body h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.page-body h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }

/* ── Contact Page ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 0;
}
.contact-info-card, .contact-area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h2, .contact-area-card h2 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-detail strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-phone-link { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.contact-phone-link:hover { color: var(--orange); }
.contact-cta-btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
.contact-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; }

.area-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  color: var(--text);
}
.area-list li svg { stroke: var(--blue); flex-shrink: 0; }

/* ── Notice box ─────────────────────────────────── */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--light-blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.notice-box svg { stroke: var(--blue); flex-shrink: 0; margin-top: 0.1rem; }
.notice-box p { margin: 0; font-size: 0.95rem; color: var(--navy); }

.notice-box-urgent {
  background: #FFF8F0;
  border-color: var(--orange);
}
.notice-box-urgent svg { stroke: var(--orange); }

/* ── About address ──────────────────────────────── */
.about-address {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 0.5rem 0 1rem;
  line-height: 1.8;
}
.about-address a { color: var(--blue); font-weight: 600; }

/* ── Footer ─────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.footer-logo-text strong { color: var(--orange); }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-phone:hover { color: #e8810f; }

.footer-heading {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-links li a {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--orange); }

.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  background: rgba(0,0,0,0.15);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-tagline, .footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Mobile Sticky Call Bar ─────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--orange);
  padding: 0;
}
.mobile-call-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
}
.mobile-call-bar-link svg { stroke: var(--white); }
.mobile-call-bar-link:hover { color: var(--white); background: #d97a1e; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }

  .header-nav { display: none; }
  .menu-toggle { display: flex; }

  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse { direction: ltr; }
  .split-visual { order: -1; }

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

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: 500px; }
  .hero-content { padding-block: 3.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-strip-grid { gap: 0.75rem 1.5rem; }
  .trust-item { font-size: 0.82rem; }

  .urgent-cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }

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

  .mobile-call-bar { display: block; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .btn-xl { font-size: 0.95rem; padding: 0.9rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 375px) {
  h1 { font-size: 1.5rem; }
  .container { padding-inline: 1rem; }
  .service-card { padding: 1.25rem; }
}

/* ── Accessibility: reduce motion ───────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
