/* ═══════════════════════════════════════════════
   Roof Repair Pembroke Pines — Design System
   South Florida Palette · Mobile-First · 2025
   ═══════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --primary: #0C2340;
  --primary-light: #16365c;
  --primary-dark: #071628;
  --primary-foreground: #ffffff;
  --accent: #0EA5E9;
  --accent-dark: #0284C7;
  --accent-light: #38BDF8;
  --accent-soft: rgba(14, 165, 233, 0.12);
  --cta: #F97316;
  --cta-dark: #EA580C;
  --cta-light: #FDBA74;
  --cta-soft: rgba(249, 115, 22, 0.12);
  --bg: #FAFAFA;
  --bg-alt: #F1F5F9;
  --bg-subtle: #F8FAFC;
  --bg-dark: #0B1528;
  --bg-dark-alt: #132238;
  --card: #FFFFFF;
  --card-border: #E2E8F0;
  --text: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-on-dark: #F1F5F9;
  --text-on-dark-muted: #94A3B8;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(12,35,64,0.18);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 60px; /* Space for mobile sticky CTA bar */
}

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

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  max-width: 100%;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: all var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
  letter-spacing: -0.015em;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-tag svg {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
}

.section-title {
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin: 0 auto;
  text-align: center;
}

.text-accent { color: var(--accent); }
.text-cta { color: var(--cta); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: normal;
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

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

.btn-cta {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-cta:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  font-weight: 700;
}

.btn-white:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.875rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-pair {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .cta-pair {
    flex-direction: row;
    align-items: center;
  }
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.header-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .header-logo img {
    height: 40px !important;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.header-nav .nav-link,
.header-nav > a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-nav .nav-link:hover,
.header-nav > a:hover {
  color: var(--accent-dark);
  background: var(--bg-alt);
}

.header-nav .nav-link.active,
.header-nav > a.active {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

/* ── Mega Menu Dropdown ── */
.nav-item-dropdown {
  /* Each dropdown owns its hover bridge.  Keeping this relative prevents the
     Services bridge from covering the Areas trigger. */
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.dropdown-chevron {
  width: 15px;
  height: 15px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown:focus-within .dropdown-chevron,
.nav-item-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--accent-dark);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 980px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 20px 50px -10px rgba(12, 35, 64, 0.18), 0 0 0 1px rgba(12, 35, 64, 0.04);
  padding: 24px 28px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.2s;
  z-index: 1050;
  overflow: hidden;
}

/* Bridge the small visual gap from a trigger to its own menu only. */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-item-dropdown:hover .mega-menu,
.nav-item-dropdown:focus-within .mega-menu,
.nav-item-dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service Areas: keep all four regional groups on a single row. */
.mega-menu-grid.mega-grid-4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mega-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.mega-col-title svg {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 9px 10px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.mega-menu-item:hover {
  background: var(--bg-alt) !important;
  transform: translateX(3px);
}

.mega-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-item-icon svg {
  width: 18px;
  height: 18px;
}

.mega-menu-item:hover .mega-item-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.mega-item-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mega-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-item-title {
  color: var(--accent-dark);
}

.mega-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
  font-weight: 400;
}

.mega-menu-footer {
  margin-top: 18px;
  margin-left: -28px;
  margin-right: -28px;
  padding: 14px 28px;
  border-top: 1px solid var(--card-border);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.mega-footer-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.mega-footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.mega-footer-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mega-footer-call svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.mega-footer-call:hover {
  color: var(--accent-dark);
  background: var(--card-border);
}

/* ── Mobile Nav Accordion ── */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

.mobile-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.mobile-dropdown-toggle.active .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding: 4px 0 6px 10px;
  gap: 2px;
  border-left: 2px solid var(--accent-soft);
  margin-left: 14px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 12px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  border-radius: 6px !important;
  transition: all var(--transition) !important;
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
  background: var(--bg-alt) !important;
  color: var(--accent-dark) !important;
}

.mobile-submenu a.mobile-submenu-all {
  font-weight: 700 !important;
  color: var(--accent-dark) !important;
  margin-top: 4px;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--card-border);
  cursor: pointer;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}

.hamburger:hover {
  background: var(--bg-alt);
}

.hamburger svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

/* ── Mobile Navigation Drawer ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(11, 21, 40, 0.6);
  backdrop-filter: blur(6px);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100%;
  background: var(--card);
  padding: 24px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  animation: slideDrawer 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDrawer {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 16px;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--bg-alt);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
}

.mobile-nav-close svg {
  pointer-events: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}

.mobile-nav-links a:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

.mobile-nav-cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Fixed Mobile Sticky Bottom CTA Bar ── */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 995;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  background: var(--primary);
}

.mobile-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-sticky-cta .btn-sticky-estimate {
  background: var(--cta);
  color: #fff;
}

.mobile-sticky-cta .btn-sticky-call {
  background: var(--primary);
  color: #fff;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.mobile-sticky-cta svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .header-actions { display: flex; }
  .hamburger { display: none; }
  .mobile-sticky-cta { display: none; }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,0.94) 0%, rgba(11,21,40,0.90) 50%, rgba(14,165,233,0.35) 100%);
}

.hero-content {
  position: relative;
  padding: 44px 0 52px;
  display: grid;
  gap: 36px;
  align-items: start;
}

.hero-text {
  animation: fadeInUp 0.6s ease-out;
}

.hero-content--centered {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-content--centered .cta-pair,
.hero-content--centered .hero-badges {
  justify-content: center;
}

@media (min-width: 769px) {
  .hero-content--centered .hero-text h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }
}

.hero-text h1 {
  font-size: clamp(1.85rem, 4.5vw, 3.15rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-text h1 .highlight {
  color: var(--cta);
}

.hero-text p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 15px;
  height: 15px;
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ── Hero Lead Form Card ── */
.hero-form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4px;
}

.hero-form-title .highlight {
  color: var(--cta);
}

.hero-form-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.input-group {
  position: relative;
}

.input-group svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--text-light);
  pointer-events: none;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: all var(--transition);
  appearance: none;
}

.input-group input::placeholder {
  color: var(--text-light);
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--accent);
  background: var(--card);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

.input-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 6px;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.15fr 420px;
    gap: 52px;
    align-items: center;
    padding: 64px 0 72px;
  }
  .hero-content--centered {
    grid-template-columns: 1fr;
  }
  .hero-form-card {
    padding: 32px 28px;
  }
}

/* ── Section Spacing & Theme Variations ── */
.section {
  padding: 56px 0;
}

.section-lg {
  padding: 72px 0;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section-lg { padding: 96px 0; }
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section-subtitle {
  color: var(--text-on-dark-muted);
}

.section-dark .section-tag {
  background: rgba(14, 165, 233, 0.18);
  color: var(--accent-light);
}

.section-dark .section-tag svg {
  color: var(--accent-light);
}

.section-alt {
  background: var(--bg-alt);
}

.section-subtle {
  background: var(--bg-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-header-left {
  margin-bottom: 36px;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-text h2 {
  margin-bottom: 18px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ── About Mini Stats ── */
.about-mini-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.about-mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 100px;
  transition: all var(--transition);
}

.about-mini-stat:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.about-mini-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1.2;
}

.about-mini-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-top: 2px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* ── Card Grids ── */
.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid-2 { grid-template-columns: 1fr; }
.card-grid-3 { grid-template-columns: 1fr; }
.card-grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Feature Cards (Why Choose Us) ── */
.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

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

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Service Cards ── */
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,0.35);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

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

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

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

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

/* ── Roofing Systems Grid ── */
.system-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.system-card:hover {
  border-color: rgba(14,165,233,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.system-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
}

.system-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.system-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Residential / Commercial Split ── */
.split-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.split-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.split-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(14,165,233,0.3);
}

.split-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
}

.split-icon svg {
  width: 28px;
  height: 28px;
}

.split-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.split-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Process / Vertical Timeline (Centered) ── */
.process-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0EA5E9;
  margin-bottom: 12px;
}

.process-tag svg {
  width: 16px;
  height: 16px;
  color: #0EA5E9;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  color: #0C2340;
  letter-spacing: -0.02em;
}

.process-timeline {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.process-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 36px;
}

.process-item:last-child {
  padding-bottom: 0;
}

/* Continuous connecting line between circles */
.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 21px; /* center of 44px circle */
  bottom: 0;
  width: 2px;
  background: #38BDF8;
  z-index: 1;
}

.process-badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #0B192C;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(11, 25, 44, 0.15);
}

.process-text {
  padding-top: 6px;
}

.process-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 6px;
  line-height: 1.3;
}

.process-text p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

/* ── Damage Causes (Dark Background) ── */
.damage-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .damage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-dark .icon-list li {
  border-bottom-color: rgba(255,255,255,0.08);
  color: var(--text-on-dark);
}

.icon-list li:last-child {
  border-bottom: none;
}

.icon-list li strong {
  color: #fff;
}

.icon-list-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

/* ── FAQ & Signs Accordion ── */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-list--home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 10px 16px;
    max-width: 1100px;
    align-items: start;
  }

  .faq-list--home .faq-item {
    margin-bottom: 0;
  }
}

/* ── Warning Signs Cards ── */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 560px) {
  .signs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.sign-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.sign-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sign-accent, var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
}

.sign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--sign-accent, var(--accent)) 30%, transparent);
}

.sign-card-number {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--sign-accent, var(--accent)) 50%, transparent);
  letter-spacing: 0.05em;
}

.sign-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--sign-accent, var(--accent)) 12%, transparent);
  color: var(--sign-accent, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

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

.sign-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.sign-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 560px) {
  .sign-card {
    padding: 22px 18px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .sign-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .sign-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .sign-card-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    width: 100%;
  }

  .sign-card-desc {
    font-size: 0.84rem;
    width: 100%;
  }

  .sign-card-number {
    top: 12px;
    right: 14px;
  }
}


.faq-item {
  border-bottom: 1px solid var(--card-border);
  background: var(--card);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: rgba(14,165,233,0.35);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  gap: 14px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Leak Trace Checklist Section ── */
.leak-trace-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .leak-trace-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }
}

.leak-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.leak-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent);
  margin-top: 2px;
}

/* ── Emergency Banner ── */
.emergency-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 36px 24px;
}

@media (min-width: 768px) {
  .emergency-banner {
    padding: 48px 40px;
  }
}

.emergency-banner-bg {
  position: absolute;
  inset: 0;
}

.emergency-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emergency-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,0.95), rgba(11,21,40,0.92));
}

.emergency-banner-content {
  position: relative;
  color: #fff;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.emergency-banner h2 {
  color: #fff;
  margin-bottom: 14px;
}

.emergency-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.7;
}

.emergency-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.925rem;
}

.emergency-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.emergency-banner .emergency-list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* ── Comparison Cards (Repair vs Replace) ── */
.compare-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all var(--transition);
}

.compare-card:hover {
  box-shadow: var(--shadow-md);
}

.compare-card.repair {
  border-top: 4px solid var(--accent);
}

.compare-card.replace {
  border-top: 4px solid var(--cta);
}

.compare-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.compare-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-card.repair li svg { color: var(--accent); }
.compare-card.replace li svg { color: var(--cta); }

/* ── Checklist (Prevention Tips) ── */
.check-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .check-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.check-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent);
  margin-top: 3px;
}

/* ── Pricing Section ── */
.pricing-tiers {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .pricing-tiers {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.pricing-tier-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-tier-moderate {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.pricing-tier-moderate:hover {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-xl);
}

.pricing-tier-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier-badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-tier-range {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-separator {
  font-size: 1.5rem;
  color: var(--text-light);
  margin: 0 4px;
}

.pricing-plus {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.pricing-tier-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 56px;
}

.pricing-tier-includes {
  list-style: none;
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-tier-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.pricing-tier-includes svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent);
}

/* Pricing Table */
.pricing-table-wrapper {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.pricing-table-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  padding: 20px 24px;
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-subtle);
}

.pricing-table-title svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table thead th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 14px 24px;
  border-bottom: 2px solid var(--card-border);
  background: var(--bg-alt);
}

.pricing-table tbody tr {
  transition: background var(--transition);
}

.pricing-table tbody tr:hover {
  background: var(--bg-alt);
}

.pricing-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-type-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-type-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-type-icon svg {
  width: 18px;
  height: 18px;
}

.pricing-type-cell strong {
  font-size: 0.92rem;
  color: var(--primary);
  white-space: nowrap;
}

.pricing-range-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Labor Rate Note */
.pricing-labor-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(14,165,233,0.03));
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.pricing-labor-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.pricing-labor-icon svg {
  width: 20px;
  height: 20px;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
  font-style: italic;
}

/* ── Pricing Mobile Responsive ── */
@media (max-width: 767px) {
  .pricing-tiers {
    gap: 16px;
    margin-bottom: 32px;
  }

  .pricing-tier-card {
    padding: 24px 18px;
    border-radius: var(--radius);
  }

  .pricing-tier-badge {
    font-size: 0.78rem;
    margin-bottom: 12px;
  }

  .pricing-amount {
    font-size: 1.8rem;
  }

  .pricing-dollar {
    font-size: 1.05rem;
  }

  .pricing-separator {
    font-size: 1.2rem;
  }

  .pricing-tier-desc {
    font-size: 0.84rem;
    margin-bottom: 16px;
    min-height: auto;
  }

  .pricing-tier-includes {
    padding-top: 14px;
    gap: 8px;
  }

  .pricing-tier-includes li {
    font-size: 0.84rem;
  }

  .pricing-tier-popular {
    font-size: 0.7rem;
    padding: 4px 14px;
    top: -11px;
  }

  /* Convert table to stacked cards on mobile */
  .pricing-table {
    min-width: unset;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    border-bottom: 1px solid var(--card-border);
    gap: 10px;
  }

  .pricing-table tbody tr:last-child {
    border-bottom: none;
  }

  .pricing-table tbody td {
    display: block;
    padding: 0;
    border-bottom: none;
  }

  .pricing-table tbody td:nth-child(2) {
    order: -1;
  }

  .pricing-type-cell {
    gap: 10px;
  }

  .pricing-type-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .pricing-type-icon svg {
    width: 16px;
    height: 16px;
  }

  .pricing-type-cell strong {
    font-size: 0.88rem;
  }

  .pricing-range-badge {
    font-size: 0.82rem;
    padding: 4px 12px;
  }

  .pricing-table tbody td:last-child {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 42px;
  }

  .pricing-table-title {
    font-size: 0.95rem;
    padding: 16px 18px;
    gap: 8px;
  }

  .pricing-table-title svg {
    width: 20px;
    height: 20px;
  }

  /* Labor note mobile */
  .pricing-labor-note {
    padding: 16px;
    gap: 12px;
    font-size: 0.84rem;
  }

  .pricing-labor-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .pricing-labor-icon svg {
    width: 18px;
    height: 18px;
  }

  .pricing-disclaimer {
    font-size: 0.78rem;
  }
}

@media (max-width: 374px) {
  .pricing-tier-card {
    padding: 20px 14px;
  }

  .pricing-amount {
    font-size: 1.55rem;
  }

  .pricing-dollar {
    font-size: 0.95rem;
  }

  .pricing-table tbody td:last-child {
    padding-left: 0;
  }

  .pricing-labor-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    font-size: 0.82rem;
  }
}

/* ── Equipment & Tools Section ── */
.tool-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
  }
}

.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  transition: all var(--transition);
}

.tool-item:hover {
  border-color: rgba(14,165,233,0.3);
  box-shadow: var(--shadow-sm);
}

.tool-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tool-icon svg {
  width: 18px;
  height: 18px;
}

.tool-item strong {
  display: block;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.tool-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Recent Work / Gallery Placeholders ── */
.gallery-section-title {
  margin-top: 36px;
  margin-bottom: 20px;
  font-size: 1.35rem;
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .gallery-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.gallery-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.gallery-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.gallery-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

/* ── Case Studies ── */
.case-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
}

.case-header {
  background: var(--primary);
  padding: 18px 24px;
  color: #fff;
}

.case-header h3 {
  color: #fff;
  font-size: 1.1rem;
}

.case-body {
  padding: 24px;
}

.case-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
}

.case-row:last-child {
  border-bottom: none;
}

.case-label {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
  margin-bottom: 3px;
}

.case-value {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Weather Section ── */
.weather-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .weather-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 36px;
  }
}

.weather-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.weather-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(14,165,233,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.weather-icon svg {
  width: 20px;
  height: 20px;
}

.weather-item p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  line-height: 1.7;
}

/* ── Service Areas (Detailed Cards) ── */
.area-grid-detailed {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .area-grid-detailed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .area-grid-detailed {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.area-detail-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 18px;
  transition: all var(--transition);
}

.area-detail-card:hover {
  border-color: rgba(14,165,233,0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.area-detail-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.area-detail-card-header svg {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.area-detail-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.area-detail-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.area-detail-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Things to Do Cards ── */
.place-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.place-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,0.3);
}

.place-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.place-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.place-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.place-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.place-links a:hover {
  color: var(--accent);
}

/* ── ZIP Code Badges ── */
.zip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.zip-badge {
  padding: 8px 20px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-dark);
  transition: all var(--transition);
}

.zip-badge:hover {
  background: var(--accent);
  color: #fff;
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,0.94), rgba(11,21,40,0.92));
}

.cta-content {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 60px 0 24px;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
    gap: 40px;
  }
}

.footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand .footer-desc {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
}

.footer-contact-info a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-info a:hover {
  color: var(--accent-light);
}

.footer-contact-info .footer-phone-val {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
  transform: translateX(2px);
}

.footer-map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-container iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 0.815rem;
  color: var(--text-on-dark-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  margin: 0;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-balance {
  text-wrap: balance;
}

/* ══════════════════════════════════════════════════════
   Comprehensive Mobile & Tablet Optimization Engine
   ══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Global Base & Containers */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    padding: 0 20px;
    line-height: 1.7;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 60px 0 24px;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
    gap: 40px;
  }
}

.footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand .footer-desc {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
}

.footer-contact-info a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-info a:hover {
  color: var(--accent-light);
}

.footer-contact-info .footer-phone-val {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
  transform: translateX(2px);
}

.footer-map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-container iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 0.815rem;
  color: var(--text-on-dark-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  margin: 0;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-balance {
  text-wrap: balance;
}

/* ══════════════════════════════════════════════════════
   Comprehensive Mobile & Tablet Optimization Engine
   ══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Global Base & Containers */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Header on Mobile */
  .header {
    height: 60px;
  }

  .header-logo img {
    height: 34px !important;
  }

  .hamburger {
    width: 38px;
    height: 38px;
  }

  /* Hero Section Mobile Tuning */
  .hero {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .hero-content {
    padding: 32px 0 28px;
    gap: 28px;
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
    max-width: 100%;
    min-width: 0;
  }

  .hero-text h1 {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
    line-height: 1.25;
    margin: 14px auto 16px auto;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-text p {
    font-size: 0.9375rem;
    line-height: 1.62;
    margin: 0 auto 20px auto;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    max-width: 560px;
    overflow-wrap: anywhere;
  }

  .cta-pair {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .cta-pair .btn {
    width: auto;
    flex: 1 1 calc(50% - 6px);
    max-width: 260px;
    min-width: 135px;
    padding: 11px 12px;
    font-size: 0.84rem;
    font-weight: 700;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    min-width: 0;
  }

  .hero-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-badge {
    width: auto;
    font-size: 0.75rem;
    padding: 5px 10px;
    gap: 5px;
    justify-content: center;
  }

  .hero-badge svg {
    width: 13px;
    height: 13px;
  }

  /* Lead Form Card Mobile */
  .hero-form-card {
    padding: 22px 16px;
    border-radius: 14px;
    margin-top: 4px;
  }

  .hero-form-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }

  .hero-form-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 16px;
  }

  /* Form Inputs (16px to prevent iOS auto-zoom) */
  .input-group input,
  .input-group select,
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px !important;
    padding: 12px 14px 12px 38px;
  }

  .btn-submit {
    padding: 13px 18px;
    font-size: 0.95rem;
  }

  /* Section Spacing & Headings */
  .section {
    padding: 42px 0;
  }

  .section-lg {
    padding: 52px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* General Buttons on Mobile */
  .btn {
    padding: 12px 20px;
    font-size: 0.92rem;
    border-radius: 8px;
  }

  .btn-lg {
    padding: 13px 22px;
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Cards & Grids on Mobile */
  .services-grid,
  .signs-grid,
  .process-grid,
  .coverage-grid,
  .reviews-grid,
  .stats-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card,
  .sign-card,
  .process-step,
  .review-card,
  .about-text {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .service-card-title {
    font-size: 1.15rem;
  }

  /* FAQ Section Mobile */
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9375rem;
    text-align: left;
    gap: 10px;
  }

  .faq-answer-inner {
    padding: 0 16px 14px;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  /* ZIP Badges Mobile */
  .zip-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  .zip-badge {
    font-size: 0.8rem;
    padding: 6px 11px;
    border-radius: 6px;
  }

  /* Tables Mobile Responsive Scroll */
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Footer Mobile Layout */
  .footer {
    padding: 44px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-brand .footer-desc {
    max-width: 100%;
    font-size: 0.85rem;
  }

  .footer-contact-info {
    font-size: 0.85rem;
    gap: 5px;
  }

  .footer-map-container iframe {
    height: 150px;
  }

  .footer-bottom {
    padding-top: 18px;
    text-align: center;
    font-size: 0.78rem;
    gap: 8px;
  }

  /* Mobile Sticky Bottom CTA Bar */
  .mobile-sticky-cta {
    height: 50px;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .mobile-sticky-cta a {
    padding: 12px 8px;
    font-size: 0.825rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 1.4rem;
    margin: 16px auto 14px auto;
    text-align: center;
  }

  .hero-text p {
    font-size: 0.875rem;
    margin: 0 auto 16px auto;
    text-align: center;
  }

  .cta-pair {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-pair .btn {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 10px 10px;
    font-size: 0.8125rem;
    gap: 6px;
  }

  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .hero-badge {
    width: auto;
    font-size: 0.72rem;
    padding: 4px 8px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: clamp(1.35rem, 5.4vw, 1.7rem);
    max-width: 100%;
  }

  .cta-pair {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-pair .btn {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
}

/* ── 4-Column Mega Menu for Service Areas ── */
.mega-menu.mega-menu-wide {
  width: 1180px;
}

.mega-menu-grid.mega-grid-4col {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px;
}

.mega-grid-4col .mega-col-title {
  font-size: 0.72rem;
}

.mega-grid-4col .mega-menu-item {
  padding: 7px 8px !important;
  gap: 10px !important;
}

.mega-grid-4col .mega-item-icon {
  width: 28px;
  height: 28px;
}

.mega-grid-4col .mega-item-icon svg {
  width: 15px;
  height: 15px;
}

.mega-grid-4col .mega-item-title {
  font-size: 0.8125rem;
}

.mega-grid-4col .mega-item-desc {
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════
   FAQ Accordion Component
   ═══════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

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

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  line-height: 1.45;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-item.active .faq-question {
  color: var(--accent-dark);
}

.faq-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.35rem 1.5rem;
  border-top: 1px dashed transparent;
  animation: faqFadeIn 0.3s ease-out;
}

.faq-item.active .faq-answer {
  display: block;
  border-top-color: var(--card-border);
  padding-top: 0.85rem;
}

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

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════
   Legal & Sitemap Page Layout (Pembroke Pines Replica)
   ═══════════════════════════════════════════════════ */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.legal-sidebar {
  position: sticky;
  top: 90px;
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
}

.legal-nav h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.legal-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.legal-nav-links a:hover {
  color: var(--accent-dark);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section {
  scroll-margin-top: 100px;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section-num {
  background: var(--accent-soft);
  color: var(--accent-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.legal-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.legal-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Sitemap Specific Component */
.sitemap-toolbar {
  margin-bottom: 32px;
}

.sitemap-search-box {
  position: relative;
  margin-bottom: 16px;
}

.sitemap-search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.sitemap-search-input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  font-size: 1rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition);
}

.sitemap-search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.sitemap-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sitemap-chip {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.sitemap-chip:hover, .sitemap-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.sitemap-section {
  margin-bottom: 48px;
}

.sitemap-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--card-border);
}

.sitemap-section-title {
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-section-title svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.sitemap-count-badge {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.sitemap-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xs);
}

.sitemap-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.sitemap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sitemap-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sitemap-card-icon svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

.sitemap-card-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  transition: transform var(--transition);
}

.sitemap-card:hover .sitemap-card-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.sitemap-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.sitemap-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sitemap-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.775rem;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px dashed var(--card-border);
}

.sitemap-card-tag {
  font-weight: 600;
  color: var(--accent-dark);
}

.sitemap-no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  background: var(--card);
  border: 1px dashed var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.sitemap-no-results svg {
  width: 48px;
  height: 48px;
  color: var(--text-light);
  margin-bottom: 14px;
}




/* ═══════════════════════════════════════════════════
   Pages — About, Legal, Contact Styles (Pembroke Replica)
   ═══════════════════════════════════════════════════ */

/* ── Page Hero (Compact) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 40%, #0a1e3d 100%);
  padding: 8.5rem 0 4rem;
}

@media (max-width: 767px) {
  .page-hero { padding: 7rem 0 2.5rem; }
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.page-hero-glow-1 {
  width: 400px; height: 400px;
  top: -10%; left: 10%;
  background: radial-gradient(circle, rgba(14,165,233,.15), transparent 70%);
  animation: pageGlowPulse 8s ease-in-out infinite;
}

.page-hero-glow-2 {
  width: 350px; height: 350px;
  bottom: -5%; right: 5%;
  background: radial-gradient(circle, rgba(249,115,22,.12), transparent 70%);
  animation: pageGlowPulse 10s ease-in-out 3s infinite;
}

@keyframes pageGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
}

.page-hero-content.centered {
  text-align: center;
  margin: 0 auto;
}

/* Breadcrumb */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
}

.page-breadcrumb a {
  color: rgba(255,255,255,.6);
  transition: color 0.2s;
}

.page-breadcrumb a:hover { color: #fff; }

.page-breadcrumb svg {
  width: 14px; height: 14px;
  opacity: 0.5;
}

.page-hero-content.centered .page-breadcrumb {
  justify-content: center;
}

/* Hero Badge */
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.25rem;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.3);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.page-hero-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: badgePulseP 2s ease-in-out infinite;
}

@keyframes badgePulseP {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Hero Heading */
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4.8vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.page-hero h1 mark {
  background: linear-gradient(135deg, #38BDF8 0%, var(--accent) 50%, #7DD3FC 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-color: transparent;
}

.page-hero-desc {
  color: rgba(255,255,255,.72);
  font-size: clamp(0.9rem, 1.7vw, 1.04rem);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.page-hero-content.centered .page-hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.page-hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9999px;
  color: rgba(255,255,255,.7);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 1.25rem;
}

.page-hero-date svg {
  width: 14px; height: 14px;
  opacity: 0.7;
}

/* Legal Layout */
.legal-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 260px 1fr;
    gap: 3.5rem;
  }
}

.legal-sidebar {
  position: relative;
}

@media (min-width: 1024px) {
  .legal-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
  }
}

.legal-nav {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  overflow: hidden;
}

.legal-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
}

.legal-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}

.legal-nav-links a:hover,
.legal-nav-links a.active {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-left-color: var(--accent);
}

.legal-content {
  max-width: 820px;
}

.legal-section {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.legal-section:hover {
  border-color: rgba(14,165,233,0.2);
  box-shadow: var(--shadow-xs);
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.legal-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
}

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

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0.75rem 0;
  padding-left: 0;
}

.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-section ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.55rem;
}

.legal-section strong {
  color: var(--text);
  font-weight: 600;
}

.legal-section a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(14,165,233,0.3);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
