:root {
 /* Color Palette */
 --primary: #1B2E5C;
 --primary-light: #2A4080;
 --primary-dark: #0F1D3D;

 --accent: #0EB77A;
 --accent-light: #E6F9F0;
 --accent-dark: #0A9663;

 --secondary: #FF7A30;
 --secondary-light: #FFF0E6;

 --surface-1: #F7F8FC;
 --surface-2: #EEF0F6;
 --surface-3: #DDE1EC;

 --text-1: #1B2E5C;
 --text-2: #5A6785;
 --text-3: #8B95AB;

 --white: #ffffff;
 --dark: #0F172A;

 --shadow-sm: 0 2px 8px rgba(27, 46, 92, 0.06);
 --shadow-md: 0 8px 24px rgba(27, 46, 92, 0.08);
 --shadow-lg: 0 16px 48px rgba(27, 46, 92, 0.12);
 --shadow-card: 0 4px 20px rgba(27, 46, 92, 0.07);
 --shadow-hover: 0 12px 32px rgba(27, 46, 92, 0.14);

 --radius-sm: 6px;
 --radius-md: 12px;
 --radius-lg: 20px;
 --radius-xl: 28px;
 --radius-full: 9999px;

 --transition-fast: 0.2s ease;
 --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
 font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 background-color: var(--white);
 color: var(--text-2);
 line-height: 1.7;
 overflow-x: hidden;
 font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
 font-family: 'Outfit', 'Inter', sans-serif;
 line-height: 1.2;
 font-weight: 700;
 color: var(--text-1);
 margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; display: block; }
p { margin-bottom: 1em; }
ul { list-style: none; }

/* ============ Utilities ============ */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.grid { display: grid; gap: 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* Background utilities */
.bg-white { background-color: var(--white); }
.bg-surface { background-color: var(--surface-1); }

/* Layout helpers */
.flex-wrap-gap { display: flex; gap: 24px; flex-wrap: wrap; }
.btn-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.w-full { width: 100%; }
.mt-50 { margin-top: 50px; }

/* Section label centered (in text-center headers) */
.section-label-center { justify-content: center; }

/* Icon sizes */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 22px; height: 22px; }
.icon-xl { width: 24px; height: 24px; }
.icon-2xl { width: 26px; height: 26px; }
.icon-3xl { width: 28px; height: 28px; }
.icon-accent { color: var(--accent); }

/* ============ Section Header ============ */
.section-label {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 font-size: 0.8rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 2px;
 color: var(--accent);
 margin-bottom: 14px;
}

.section-label::before {
 content: '';
 width: 32px;
 height: 3px;
 background: var(--accent);
 border-radius: 2px;
}

.section-title { color: var(--text-1); margin-bottom: 16px; }

.section-subtitle {
 font-size: 1.05rem;
 color: var(--text-2);
 max-width: 640px;
 line-height: 1.8;
}

.section-subtitle.centered { margin: 0 auto; }
.section-header { margin-bottom: 60px; }

/* ============ Buttons ============ */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 14px 32px;
 font-weight: 600;
 border-radius: var(--radius-full);
 cursor: pointer;
 transition: var(--transition-base);
 border: none;
 font-size: 0.95rem;
 gap: 10px;
 font-family: inherit;
 white-space: nowrap;
}

.btn-primary {
 background: var(--accent);
 color: var(--white);
 box-shadow: 0 4px 16px rgba(14, 183, 122, 0.3);
}
.btn-primary:hover {
 background: var(--accent-dark);
 transform: translateY(-2px);
 box-shadow: 0 8px 24px rgba(14, 183, 122, 0.4);
}

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

.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============ Animations ============ */
.reveal {
 opacity: 0;
 transform: translateY(28px);
 transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
 opacity: 0;
 transform: translateX(-40px);
 transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-right {
 opacity: 0;
 transform: translateX(40px);
 transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }

/* ============ Top Bar ============ */
.top-bar {
 background: var(--primary);
 color: white;
 padding: 10px 0;
 font-size: 0.82rem;
 letter-spacing: 0.3px;
}
.top-bar a { color: white; text-decoration: none; transition: opacity 0.3s ease; }
.top-bar a:hover { opacity: 0.8; }
.top-bar .highlight { color: var(--secondary); font-weight: 700; }
.top-bar-item { display: flex; align-items: center; gap: 7px; }
.top-bar-location {
 text-transform: uppercase;
 font-weight: 700;
 letter-spacing: 1.5px;
 font-size: 0.8rem;
}
.top-bar__right {
 display: flex;
 align-items: center;
 gap: 14px;
 flex-shrink: 0;
}
.top-bar__right .social {
 display: inline-flex;
 align-items: center;
 gap: 8px;
}

/* Nav / Footer logos */
.nav-logo { height: 58px; width: auto; }
.mobile-logo { height: 40px; width: auto; }
.footer-logo { height: 46px; width: auto; filter: brightness(0) invert(1); }

/* Dropdown section header */
.dropdown-header {
 padding: 10px 14px;
 font-weight: 700;
 color: var(--primary);
 border-bottom: 1px solid var(--surface-2);
 margin-bottom: 8px;
 font-size: 0.88rem;
}

/* Hero container z-index */
.hero-container { position: relative; z-index: 2; }

/* Trust avatar colors */
.trust-stars {
 font-size: 1.1rem;
 letter-spacing: 0.08em;
 color: #fbbf24;
 line-height: 1;
}
.trust-avatar-2 { background: #d1fae5; }
.trust-avatar-3 { background: #fef3c7; }
.trust-avatar-4 { background: #ede9fe; }

/* Float icon variants */
.hero-float-icon-orange { background: rgba(255,122,48,0.15); color: var(--secondary); }
.hero-float-icon-purple { background: rgba(99,102,241,0.15); color: #6366f1; }

/* Reveal delay helpers */
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.3s; }
.delay-7 { transition-delay: 0.35s; }
.delay-8 { transition-delay: 0.4s; }
.delay-9 { transition-delay: 0.45s; }

/* Map iframe */
.map-iframe { border: 0; display: block; }

/* ============ Navigation ============ */
.navbar {
 position: sticky;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.97);
 backdrop-filter: blur(16px);
 border-bottom: 1px solid var(--surface-2);
 height: 78px;
 display: flex;
 align-items: center;
 transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-links {
 display: flex;
 gap: 0;
 list-style: none;
 align-items: center;
}
.nav-links > li {
 display: flex;
 align-items: center;
}
/* Vertical separator between nav tabs */
.nav-links > li:not(:first-child)::before {
 content: '';
 width: 1px;
 height: 20px;
 background: var(--surface-3);
 margin-left: 18px;
 margin-right: 18px;
 flex-shrink: 0;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-2);
 font-size: 0.95rem;
 position: relative;
 display: flex;
 align-items: center;
 gap: 4px;
 padding: 6px 0;
}
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--accent);
 border-radius: 2px;
 transition: var(--transition-base);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* ============ Hamburger Button ============ */
.mobile-menu-btn {
 display: none;
 flex-direction: column;
 gap: 5px;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}

.mobile-menu-btn span {
 display: block;
 width: 26px;
 height: 3px;
 background: var(--primary);
 border-radius: 3px;
 transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
 transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
 opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
 transform: rotate(-45deg) translate(5px, -6px);
}

/* ============ Mobile Menu Overlay & Drawer ============ */
.mobile-menu-overlay {
 position: fixed;
 inset: 0;
 background: rgba(15, 23, 42, 0.5);
 z-index: 9998;
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.3s ease, visibility 0.3s ease;
 pointer-events: none;
}

.mobile-menu-overlay.active {
 opacity: 1;
 visibility: visible;
 pointer-events: auto;
}

.mobile-menu {
 position: fixed;
 top: 0;
 right: -320px;
 width: 300px;
 max-width: 85vw;
 height: 100vh;
 height: 100dvh;
 max-height: 100dvh;
 background: var(--white);
 z-index: 9999;
 box-shadow: -8px 0 30px rgba(0,0,0,0.15);
 transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 display: flex;
 flex-direction: column;
 overflow: hidden;
}

.mobile-menu.active {
 right: 0;
}

.mobile-menu-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 20px;
 border-bottom: 1px solid var(--surface-2);
 flex-shrink: 0;
}

.mobile-close-btn {
 background: none;
 border: none;
 cursor: pointer;
 color: var(--text-2);
 padding: 4px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 transition: var(--transition-fast);
}

.mobile-close-btn:hover {
 background: var(--surface-1);
 color: var(--primary);
}

.mobile-menu-links {
 flex: 1 1 auto;
 min-height: 0;
 padding: 16px 20px;
 display: flex;
 flex-direction: column;
 overflow-x: hidden;
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
 overscroll-behavior: contain;
 scrollbar-width: thin;
}

.mobile-menu-links > a {
 padding: 14px 0;
 font-weight: 600;
 font-size: 1rem;
 color: var(--text-1);
 border-bottom: 1px solid var(--surface-2);
 display: block;
}

.mobile-menu-links > a:hover {
 color: var(--accent);
}

/* Mobile accordion */
.mobile-accordion {
 border-bottom: 1px solid var(--surface-2);
}

.mobile-accordion-btn {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 14px 0;
 background: none;
 border: none;
 cursor: pointer;
 font-weight: 600;
 font-size: 1rem;
 color: var(--text-1);
 font-family: inherit;
}

.mobile-accordion-btn i {
 transition: transform 0.3s ease;
}

.mobile-accordion-btn.active i {
 transform: rotate(180deg);
}

.mobile-accordion-content {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.35s ease;
}

/* Cap panel height so Home / About / Contact stay reachable; scroll inside panel */
.mobile-accordion-content.active {
 max-height: min(36vh, 260px);
 overflow-y: auto;
 overflow-x: hidden;
 -webkit-overflow-scrolling: touch;
 overscroll-behavior: contain;
 scrollbar-width: thin;
 border-radius: 0 0 10px 10px;
 background: var(--surface-1);
 margin: 0 0 4px;
 border: 1px solid var(--surface-2);
 border-top: 0;
}

@media (min-height: 640px) {
 .mobile-accordion-content.active {
 max-height: min(40vh, 300px);
 }
}

.mobile-accordion-content a {
 display: block;
 padding: 10px 16px;
 font-size: 0.9rem;
 color: var(--text-2);
 border-radius: var(--radius-sm);
}

.mobile-accordion-content a:hover {
 background: var(--accent-light);
 color: var(--accent-dark);
}

.mobile-accordion-content .nav__areaLink,
.mobile-menu-links .nav__areaLink {
 display: flex;
 align-items: center;
 gap: 10px;
}

.mobile-menu-footer {
 padding: 20px;
 border-top: 1px solid var(--surface-2);
 flex-shrink: 0;
 background: var(--white);
}

/* ============ Dropdown (Desktop) ============ */
.nav-dropdown { position: relative; }

.nav-dropdown-content {
 display: block;
 position: absolute;
 top: calc(100% + 10px);
 left: 50%;
 transform: translateX(-50%) translateY(12px);
 background: var(--white);
 min-width: 280px;
 max-width: min(560px, calc(100vw - 32px));
 max-height: min(72vh, 520px);
 overflow-y: auto;
 overflow-x: hidden;
 overscroll-behavior: contain;
 -webkit-overflow-scrolling: touch;
 scrollbar-width: thin;
 box-shadow: var(--shadow-lg);
 border-radius: var(--radius-lg);
 opacity: 0;
 visibility: hidden;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 z-index: 1100;
 padding: 12px;
 border: 1px solid var(--surface-2);
}
.nav-dropdown:hover .nav-dropdown-content {
 opacity: 1;
 visibility: visible;
 transform: translateX(-50%) translateY(0);
}
.dropdown-item {
 padding: 10px 14px;
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 0.88rem;
 color: var(--text-2);
 border-radius: var(--radius-md);
 transition: var(--transition-fast);
 font-weight: 500;
}
.dropdown-item:hover {
 background: var(--accent-light);
 color: var(--accent-dark);
 padding-left: 14px;
}
.dropdown-grid {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 4px;
 min-width: min(520px, calc(100vw - 48px));
}
.dropdown-zip-grid {
 display: block;
 min-width: min(300px, calc(100vw - 48px));
}
.dropdown-zip-grid .dropdown-item {
 text-align: left;
 font-weight: 600;
 font-size: 0.88rem;
 display: flex;
 align-items: center;
 gap: 10px;
 list-style: none;
 margin-left: 0;
 padding: 10px 14px;
}
.dropdown-zip-grid .dropdown-item:hover {
 background: var(--accent-light);
 color: var(--accent-dark);
 padding-left: 14px;
}

/* Areas We Serve → ZIP list (reference: bold header row, single column, no bullets, scrollbar on list) */
.nav-dropdown-content:has(.areasServeZipFlyout) {
 padding: 0;
 overflow: hidden;
 max-height: min(74vh, 560px);
 min-width: min(320px, calc(100vw - 32px));
}

.areasServeZipFlyout {
 display: flex;
 flex-direction: column;
 min-height: 0;
}

.areasServeZipFlyout__head {
 flex-shrink: 0;
 padding: 14px 16px 12px;
 margin-bottom: 0;
 font-weight: 700;
 font-size: 0.92rem;
 color: #1e293b;
 text-align: left;
 letter-spacing: 0.01em;
 border-bottom: 1px solid var(--surface-2);
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}

.areasServeZipFlyout__list {
 flex: 1 1 auto;
 min-height: 0;
 max-height: min(58vh, 480px);
 overflow-y: auto;
 overflow-x: hidden;
 -webkit-overflow-scrolling: touch;
 scrollbar-width: thin;
 scrollbar-color: rgba(100, 116, 139, 0.45) transparent;
 padding: 6px 6px 12px 4px;
}

.areasServeZipFlyout__list .dropdown-item {
 padding: 9px 16px 9px 12px;
 font-weight: 600;
 text-align: left;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}

/* ============ Hero ============ */
.hero {
 position: relative;
 padding: 80px 0 80px;
 display: flex;
 align-items: center;
 background: url('/brand-logo/Home/images.jpeg') center/cover no-repeat;
 overflow: hidden;
}

.hero-bg-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(
 135deg,
 rgba(15, 29, 61, 0.92) 0%,
 rgba(27, 46, 92, 0.85) 40%,
 rgba(10, 150, 99, 0.35) 100%
 );
 z-index: 1;
}

/* Animated particles */
.hero-particles {
 position: absolute;
 inset: 0;
 z-index: 1;
 pointer-events: none;
 overflow: hidden;
}

.particle {
 position: absolute;
 width: 10px;
 height: 10px;
 background: rgba(14, 183, 122, 0.8);
 border-radius: 50%;
 animation: particleFloat 8s infinite ease-in-out;
 box-shadow: 0 0 15px rgba(14, 183, 122, 0.5);
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1.5s; animation-duration: 9s; width: 8px; height: 8px; }
.particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 3s; animation-duration: 6s; width: 14px; height: 14px; background: rgba(255,122,48,0.7); box-shadow: 0 0 15px rgba(255,122,48,0.4); }
.particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 2s; animation-duration: 10s; width: 7px; height: 7px; }
.particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; animation-duration: 8s; background: rgba(255,255,255,0.6); width: 18px; height: 18px; box-shadow: 0 0 20px rgba(255,255,255,0.3); }
.particle:nth-child(6) { top: 10%; left: 90%; animation-delay: 1s; animation-duration: 11s; width: 6px; height: 6px; }

@keyframes particleFloat {
 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
 25% { transform: translate(40px, -50px) scale(1.4); opacity: 1; }
 50% { transform: translate(-30px, -100px) scale(0.8); opacity: 0.7; }
 75% { transform: translate(50px, -40px) scale(1.2); opacity: 0.9; }
}

/* Hero split grid */
.hero-grid-split {
 display: grid;
 grid-template-columns: 1.1fr 0.9fr;
 gap: 60px;
 align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: rgba(14, 183, 122, 0.15);
 color: var(--accent);
 padding: 8px 18px;
 border-radius: var(--radius-full);
 font-size: 0.82rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 margin-bottom: 24px;
 border: 1px solid rgba(14, 183, 122, 0.25);
 backdrop-filter: blur(8px);
 animation: fadeInDown 0.8s ease-out;
}

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

.hero h1 {
 color: var(--white);
 margin-bottom: 12px;
 letter-spacing: -0.5px;
}

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

.hero-location {
 font-size: 1.15rem;
 font-weight: 600;
 color: rgba(255,255,255,0.8);
 margin-bottom: 20px;
 display: flex;
 align-items: center;
 gap: 8px;
}

.hero-desc {
 font-size: 1.05rem;
 color: rgba(255,255,255,0.75);
 line-height: 1.8;
 margin-bottom: 8px;
}

.hero-tagline {
 font-weight: 700;
 color: var(--secondary);
 font-size: 1rem;
 margin-bottom: 28px;
}

.hero-actions {
 display: flex;
 gap: 14px;
 align-items: center;
 flex-wrap: wrap;
}

/* Glowing CTA button */
.btn-glow {
 position: relative;
 animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
 0%, 100% { box-shadow: 0 4px 16px rgba(14, 183, 122, 0.3); }
 50% { box-shadow: 0 4px 28px rgba(14, 183, 122, 0.55), 0 0 60px rgba(14, 183, 122, 0.15); }
}

.hero-trust {
 display: flex;
 align-items: center;
 gap: 16px;
 margin-top: 32px;
 padding-top: 28px;
 border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-avatars { display: flex; }

.trust-avatar {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 border: 3px solid rgba(255,255,255,0.3);
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 font-size: 0.7rem;
 color: var(--primary);
 margin-left: -10px;
}
.trust-avatar:first-child { margin-left: 0; }

.trust-text {
 font-size: 0.88rem;
 color: rgba(255,255,255,0.75);
 line-height: 1.5;
}
.trust-text strong {
 color: var(--white);
 display: block;
}

/* ============ Hero Floating Cards ============ */
.hero-floating-cards {
 display: flex;
 flex-direction: column;
 gap: 20px;
 position: relative;
 z-index: 2;
}

.hero-float-card {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 22px 26px;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(16px);
 border: 1px solid rgba(255, 255, 255, 0.15);
 border-radius: var(--radius-lg);
 color: var(--white);
 transition: var(--transition-base);
}

.hero-float-card:hover {
 background: rgba(255, 255, 255, 0.16);
 transform: translateX(-6px);
 box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.float-1 { animation: floatIn 0.6s ease-out 0.4s both; }
.float-2 { animation: floatIn 0.6s ease-out 0.6s both; }
.float-3 { animation: floatIn 0.6s ease-out 0.8s both; }

@keyframes floatIn {
 from { opacity: 0; transform: translateX(40px); }
 to { opacity: 1; transform: translateX(0); }
}

.hero-float-icon {
 width: 52px;
 height: 52px;
 background: rgba(14, 183, 122, 0.15);
 color: var(--accent);
 border-radius: var(--radius-md);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}

.hero-float-value {
 font-size: 1.5rem;
 font-weight: 800;
 font-family: 'Outfit', sans-serif;
 line-height: 1.2;
}

.hero-float-label {
 font-size: 0.82rem;
 color: rgba(255,255,255,0.65);
 font-weight: 500;
}

/* ============ Form Section (Separate) ============ */
.form-section {
 padding: 100px 0;
}

.form-section-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: start;
}

.form-info-cards {
 display: flex;
 flex-direction: column;
 gap: 18px;
 margin-top: 32px;
}

.form-info-card {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 18px 20px;
 background: var(--white);
 border-radius: var(--radius-md);
 border: 1px solid var(--surface-2);
 transition: var(--transition-base);
}

.form-info-card:hover {
 box-shadow: var(--shadow-card);
 transform: translateY(-2px);
}

.form-info-icon {
 width: 48px;
 height: 48px;
 background: var(--accent-light);
 color: var(--accent);
 border-radius: var(--radius-md);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}

.form-info-card h4 {
 font-size: 0.95rem;
 margin-bottom: 2px;
 color: var(--text-1);
}

.form-info-card a,
.form-info-card span {
 font-size: 0.88rem;
 color: var(--text-2);
}

.form-info-card a:hover {
 color: var(--accent);
}

.hero-form-card {
 background: var(--white);
 border-radius: var(--radius-xl);
 padding: 36px 32px;
 box-shadow: var(--shadow-lg);
 border: 1px solid var(--surface-2);
 position: relative;
 z-index: 2;
}
.hero-form-card h2 {
 font-size: 1.35rem;
 color: var(--primary);
 margin-bottom: 6px;
}
.hero-form-card .form-subtitle {
 font-size: 0.9rem;
 color: var(--text-3);
 margin-bottom: 24px;
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group textarea {
 width: 100%;
 padding: 13px 16px;
 border: 1.5px solid var(--surface-3);
 border-radius: var(--radius-md);
 background: var(--surface-1);
 font-size: 0.92rem;
 transition: var(--transition-fast);
 color: var(--text-1);
 outline: none;
 font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
 border-color: var(--accent);
 background: var(--white);
 box-shadow: 0 0 0 4px rgba(14, 183, 122, 0.08);
}
.form-group textarea { height: 90px; resize: vertical; }

::placeholder { color: var(--text-3); font-size: 0.9rem; }

.form-submit-btn {
 width: 100%;
 padding: 15px;
 background: var(--accent);
 color: var(--white);
 border: none;
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-weight: 700;
 cursor: pointer;
 transition: var(--transition-base);
 font-family: inherit;
 margin-top: 6px;
 letter-spacing: 0.5px;
}
.form-submit-btn:hover {
 background: var(--accent-dark);
 transform: translateY(-1px);
 box-shadow: 0 6px 20px rgba(14, 183, 122, 0.35);
}

/* ============ Metrics Strip ============ */
.metrics-section {
 padding: 70px 0;
 border-bottom: 1px solid var(--surface-2);
}
.metrics-intro {
 font-size: 1.1rem;
 max-width: 800px;
 margin: 0 auto 50px;
 text-align: center;
 color: var(--text-2);
 line-height: 1.8;
 font-weight: 500;
}
.metrics-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 0;
}
.metric-card {
 text-align: center;
 padding: 36px 24px;
 position: relative;
}
.metric-card:not(:last-child)::after {
 content: '';
 position: absolute;
 right: 0;
 top: 20%;
 height: 60%;
 width: 1px;
 background: var(--surface-2);
}
.metric-icon {
 width: 56px;
 height: 56px;
 background: var(--accent-light);
 color: var(--accent);
 border-radius: var(--radius-md);
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 18px;
}
.metric-value {
 font-size: 2.8rem;
 font-weight: 800;
 color: var(--primary);
 line-height: 1;
 margin-bottom: 8px;
 font-family: 'Outfit', sans-serif;
}
.metric-label {
 font-size: 0.88rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 color: var(--text-3);
}

/* ============ About ============ */
.about-section {
 padding: 100px 0;
 overflow: hidden;
}
.about-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 70px;
 align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
 border-radius: var(--radius-xl);
 width: 100%;
 height: 460px;
 object-fit: cover;
 box-shadow: var(--shadow-lg);
}
.about-badge {
 position: absolute;
 bottom: -20px;
 right: -20px;
 background: var(--primary);
 color: var(--white);
 padding: 24px 28px;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-lg);
 z-index: 2;
}
.about-badge-value {
 font-size: 2.2rem;
 font-weight: 800;
 font-family: 'Outfit', sans-serif;
 line-height: 1;
 display: flex;
 align-items: baseline;
 gap: 2px;
}
.about-badge-value span { font-size: 1rem; font-weight: 600; }
.about-badge-label {
 font-size: 0.8rem;
 margin-top: 4px;
 opacity: 0.85;
 text-transform: uppercase;
 letter-spacing: 1px;
 font-weight: 600;
}
.about-highlight {
 font-weight: 700;
 color: var(--primary);
 font-size: 1.05rem;
 margin-bottom: 20px;
}
.about-text { color: var(--text-2); line-height: 1.85; }
.about-features {
 display: flex;
 flex-direction: column;
 gap: 14px;
 margin: 28px 0;
}
.about-feature {
 display: flex;
 align-items: center;
 gap: 12px;
 font-weight: 500;
 color: var(--text-1);
}
.about-feature-icon {
 width: 28px;
 height: 28px;
 background: var(--accent-light);
 color: var(--accent);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}

/* ============ Services (ALL visible, 3-column grid) ============ */
.services-section {
 padding: 100px 0;
}

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

.service-card {
 background: var(--white);
 border: 1.5px solid var(--surface-2);
 border-radius: var(--radius-lg);
 padding: 28px;
 transition: var(--transition-base);
 position: relative;
 overflow: hidden;
 display: flex;
 flex-direction: column;
}

.service-card__link {
 position: absolute;
 inset: 0;
 z-index: 1;
}

.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 4px;
 height: 0;
 background: var(--accent);
 transition: height 0.4s ease;
 border-radius: 0 0 4px 0;
}

.service-card:hover {
 border-color: var(--accent);
 box-shadow: var(--shadow-hover);
 transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }

.service-card-header {
 display: flex;
 gap: 14px;
 align-items: flex-start;
 margin-bottom: 12px;
}

.service-icon {
 width: 48px;
 height: 48px;
 background: var(--accent-light);
 color: var(--accent);
 border-radius: var(--radius-md);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 transition: var(--transition-base);
}
.service-card:hover .service-icon {
 background: var(--accent);
 color: var(--white);
}

.service-card h3 {
 font-size: 1.15rem;
 font-weight: 700;
 color: var(--primary);
 margin-bottom: 0;
 line-height: 1.4;
 letter-spacing: -0.01em;
 transition: all 0.3s ease;
}

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

/* Unique design for service cards without a header icon */
.service-card > h3 {
 font-size: 1.25rem;
 color: var(--primary);
 border-left: 4px solid var(--accent);
 padding-left: 14px;
 margin-bottom: 16px;
 background: linear-gradient(90deg, var(--accent-light) 0%, transparent 80%);
 padding-top: 8px;
 padding-bottom: 8px;
 border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.service-card:hover > h3 {
 color: var(--primary-dark);
 border-left-color: var(--primary);
 transform: translateX(4px);
 background: linear-gradient(90deg, var(--surface-2) 0%, transparent 95%);
}

.service-card p {
 font-size: 0.88rem;
 color: var(--text-2);
 line-height: 1.7;
 margin-bottom: 12px;
}

.service-card ul {
 list-style: none;
 padding: 0;
 margin: 0 0 16px;
 display: flex;
 flex-direction: column;
 gap: 6px;
}

.service-card > a.btn {
 position: relative;
 z-index: 2;
 margin-top: auto;
 align-self: flex-start;
}

/* Legal Documentation Pages (Privacy / Terms) */
.legal-content {
 color: var(--text-2);
 line-height: 1.8;
}
.legal-content h2 {
 color: var(--primary);
 margin-bottom: 15px;
 margin-top: 40px;
 font-size: 1.8rem;
}
.legal-content p {
 margin-bottom: 20px;
}
.service-card ul li {
 font-size: 0.84rem;
 color: var(--text-2);
 display: flex;
 align-items: center;
 gap: 8px;
}
.service-card ul li::before {
 content: '';
 width: 5px;
 height: 5px;
 background: var(--accent);
 border-radius: 50%;
 flex-shrink: 0;
}

/* ============ How It Works ============ */
.process-section {
 padding: 100px 0;
 position: relative;
}
.process-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 40px;
 position: relative;
}
.process-grid::before {
 content: '';
 position: absolute;
 top: 48px;
 left: 16%;
 right: 16%;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--primary));
 border-radius: 2px;
 z-index: 0;
}
.process-step {
 text-align: center;
 position: relative;
 z-index: 1;
}
.process-number {
 width: 72px;
 height: 72px;
 margin: 0 auto 24px;
 background: var(--white);
 border: 3px solid var(--accent);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 4px 20px rgba(14, 183, 122, 0.15);
 transition: var(--transition-base);
}
.process-step:hover .process-number {
 background: var(--accent);
 transform: scale(1.08);
}
.process-number-inner {
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--accent);
 transition: var(--transition-base);
}
.process-step:hover .process-number-inner { color: var(--white); }
.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p {
 font-size: 0.9rem;
 color: var(--text-3);
 max-width: 280px;
 margin: 0 auto;
 line-height: 1.7;
}

/* ============ Trust Banner ============ */
.trust-banner {
 padding: 80px 0;
 background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
 color: var(--white);
 position: relative;
 overflow: hidden;
}
.trust-banner::before {
 content: '';
 position: absolute;
 top: -100px;
 right: -100px;
 width: 400px;
 height: 400px;
 background: rgba(14, 183, 122, 0.1);
 border-radius: 50%;
 pointer-events: none;
}
.trust-banner::after {
 content: '';
 position: absolute;
 bottom: -80px;
 left: -80px;
 width: 300px;
 height: 300px;
 background: rgba(255, 122, 48, 0.08);
 border-radius: 50%;
 pointer-events: none;
}
.trust-grid {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 60px;
 align-items: center;
 position: relative;
 z-index: 1;
}
.trust-content h2 { color: var(--white); margin-bottom: 20px; }
.trust-content p {
 color: rgba(255,255,255,0.8);
 font-size: 1.05rem;
 line-height: 1.8;
 margin-bottom: 28px;
}
.trust-stats {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.trust-stat {
 text-align: center;
 padding: 24px 16px;
 background: rgba(255,255,255,0.07);
 border-radius: var(--radius-lg);
 border: 1px solid rgba(255,255,255,0.1);
 backdrop-filter: blur(8px);
 transition: var(--transition-base);
}
.trust-stat:hover {
 background: rgba(255,255,255,0.12);
 transform: translateY(-3px);
}
.trust-stat-value {
 font-size: 2.2rem;
 font-weight: 800;
 color: var(--secondary);
 font-family: 'Outfit', sans-serif;
 line-height: 1;
 margin-bottom: 6px;
}
.trust-stat-label {
 font-size: 0.78rem;
 text-transform: uppercase;
 letter-spacing: 1px;
 color: rgba(255,255,255,0.7);
 font-weight: 600;
}

/* ============ Landmarks ============ */
.landmarks-section {
 padding: 100px 0;
}
.landmarks-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
 gap: 16px;
}
.landmark-item {
 padding: 20px;
 background: var(--surface-1);
 border-radius: var(--radius-md);
 border: 1px solid var(--surface-2);
 transition: var(--transition-base);
 position: relative;
 overflow: hidden;
}
.landmark-item::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 3px;
 background: var(--accent);
 transform: scaleX(0);
 transition: transform 0.3s ease;
}
.landmark-item:hover {
 background: var(--white);
 box-shadow: var(--shadow-card);
 transform: translateY(-3px);
}
.landmark-item:hover::before { transform: scaleX(1); }
.landmark-code { font-size: 0.75rem; font-weight: 800; color: var(--accent); letter-spacing: 1px; }
.landmark-name { font-size: 1.05rem; margin: 8px 0; color: var(--text-1); }
.landmark-link {
 font-size: 0.8rem;
 color: var(--accent);
 font-weight: 600;
 display: inline-flex;
 align-items: center;
 gap: 4px;
}
.landmark-link:hover { gap: 8px; }

.zip-strip {
 margin-top: 50px;
 background: var(--surface-1);
 border: 1px solid var(--surface-2);
 border-radius: var(--radius-xl);
 padding: 40px;
 text-align: center;
}
.zip-strip h3 { margin-bottom: 24px; font-size: 1.15rem; }
.zip-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 justify-content: center;
}
.zip-item {
 font-size: 0.88rem;
 font-weight: 700;
 color: var(--primary);
 background: var(--white);
 padding: 10px 20px;
 border-radius: var(--radius-full);
 border: 1.5px solid var(--surface-3);
 transition: var(--transition-base);
 cursor: default;
}
.zip-item:hover {
 background: var(--accent);
 color: var(--white);
 border-color: var(--accent);
 transform: translateY(-2px);
 box-shadow: 0 4px 12px rgba(14, 183, 122, 0.2);
}

/* ============ Map ============ */
.map-section {
 padding: 48px 0 40px;
}
.map-wrap {
 border-radius: var(--radius-xl);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 border: 2px solid var(--surface-2);
}
.map-wrap iframe { display: block; border: none; }

/* ============ Premium Footer ============ */
.footer-premium {
 position: relative;
 background: transparent;
 margin-top: 56px;
}
.footer-cta {
 background: var(--primary);
 border-radius: var(--radius-xl);
 padding: 48px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 box-shadow: var(--shadow-hover);
 position: absolute;
 top: -80px;
 left: 24px;
 right: 24px;
 z-index: 10;
 overflow: hidden;
}
.footer-cta::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -10%;
 width: 300px;
 height: 300px;
 background: radial-gradient(circle, rgba(14, 183, 122, 0.4) 0%, rgba(14, 183, 122, 0) 70%);
 pointer-events: none;
}
.cta-content h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-content p { color: rgba(255,255,255,0.8); margin: 0; font-size: 1rem; }
.cta-action { flex-shrink: 0; }

.footer-premium-bg {
 background: var(--dark);
 padding: 120px 0 24px;
 color: var(--text-3);
 border-top-left-radius: 40px;
 border-top-right-radius: 40px;
}

.footer-main-grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
 gap: 50px;
 margin-bottom: 50px;
}

.footer-brand p {
 font-size: 0.9rem;
 line-height: 1.8;
 margin-top: 20px;
 margin-bottom: 24px;
 color: rgba(255,255,255,0.7);
}

.footer-social-modern {
 display: flex;
 gap: 12px;
}
.footer-social-modern a {
 width: 40px;
 height: 40px;
 border-radius: var(--radius-full);
 background: rgba(255,255,255,0.05);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--white);
 transition: var(--transition-base);
 border: 1px solid rgba(255,255,255,0.1);
}
.footer-social-modern a:hover {
 background: var(--accent);
 border-color: var(--accent);
 transform: translateY(-4px);
 box-shadow: 0 4px 12px rgba(14, 183, 122, 0.3);
}

.footer-nav h4, .footer-contact-widget h4, .footer-brand-title {
 color: var(--white);
 font-size: 1.05rem;
 margin-bottom: 24px;
 position: relative;
 padding-bottom: 12px;
}
.footer-nav h4::after, .footer-contact-widget h4::after, .footer-brand-title::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 30px;
 height: 3px;
 background: var(--accent);
 border-radius: 2px;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 14px; }
.footer-nav a {
 color: rgba(255,255,255,0.65);
 font-size: 0.9rem;
 transition: var(--transition-fast);
 display: inline-block;
}
.footer-nav a:hover, .footer-nav a.highlight-link {
 color: var(--accent);
 transform: translateX(4px);
}
.footer-nav a.highlight-link { font-weight: 600; }

.contact-item {
 display: flex;
 gap: 14px;
 margin-bottom: 20px;
 align-items: flex-start;
}
.contact-item:last-child { margin-bottom: 0; }
.c-icon {
 width: 32px;
 height: 32px;
 background: rgba(14, 183, 122, 0.1);
 color: var(--accent);
 border-radius: var(--radius-sm);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.c-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.c-text span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.c-text span.text-accent { color: var(--accent); }
.c-link { color: var(--white); font-weight: 500; transition: var(--transition-fast); }
.c-link:hover { color: var(--accent); }

.footer-disclaimer {
 border-top: 1px solid rgba(255,255,255,0.08);
 padding-top: 30px;
 margin-bottom: 30px;
}
.footer-disclaimer p {
 font-size: 0.75rem;
 color: rgba(255,255,255,0.4);
 line-height: 1.8;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.6); }

.footer-bottom-bar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 24px;
 border-top: 1px solid rgba(255,255,255,0.08);
 font-size: 0.85rem;
 color: rgba(255,255,255,0.6);
}
.footer-bottom-links {
 display: flex;
 gap: 24px;
}
.footer-bottom-links a {
 color: rgba(255,255,255,0.6);
 transition: var(--transition-fast);
}
.footer-bottom-links a:hover {
 color: var(--white);
}

/* ============ Floating Call Button ============ */
.floating-call-btn {
 position: fixed;
 bottom: 30px;
 right: 30px;
 width: 60px;
 height: 60px;
 background: var(--accent);
 color: var(--white);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 4px 16px rgba(14, 183, 122, 0.4);
 z-index: 9900;
 transition: var(--transition-base);
 animation: floatingPulse 2s infinite;
}

.floating-call-btn:hover {
 background: var(--accent-dark);
 transform: translateY(-4px);
 box-shadow: 0 8px 24px rgba(14, 183, 122, 0.5);
}

@keyframes floatingPulse {
 0% { box-shadow: 0 0 0 0 rgba(14, 183, 122, 0.5); }
 70% { box-shadow: 0 0 0 15px rgba(14, 183, 122, 0); }
 100% { box-shadow: 0 0 0 0 rgba(14, 183, 122, 0); }
}
/* ============ Responsive ============ */

/* Tablet */
@media (max-width: 1024px) {
 .nav-links { display: none; }
 .mobile-menu-btn { display: flex; }

 .hero-grid-split { grid-template-columns: 1fr; gap: 40px; }
 .hero-floating-cards { flex-direction: row; flex-wrap: wrap; }
 .hero-float-card { flex: 1; min-width: 180px; }
 .hero { min-height: 70vh; padding: 60px 0 80px; }

 .about-grid { grid-template-columns: 1fr; gap: 40px; }
 .about-image-wrap img { height: 360px; }

 .form-section-grid { grid-template-columns: 1fr; gap: 40px; }
 .services-grid-all { grid-template-columns: repeat(2, 1fr); }
 .trust-grid { grid-template-columns: 1fr; }
 .footer-main-grid { grid-template-columns: 1fr 1fr; }
 .process-grid::before { display: none; }

 /* Footer CTA: drop “floating card” overlap — stack under map (tablet + phone) */
 .footer-premium {
 margin-top: 40px;
 }
 .footer-cta {
 position: relative;
 top: auto;
 left: auto;
 right: auto;
 width: 100%;
 max-width: 100%;
 margin: 0 0 20px;
 z-index: 1;
 }
 .footer-premium-bg {
 padding-top: 32px;
 border-top-left-radius: 32px;
 border-top-right-radius: 32px;
 }
}

/* Mobile */
@media (max-width: 768px) {
 .section-padding { padding: 60px 0; }
 .container { padding: 0 16px; }

 /* Hide topbar on mobile */
 .top-bar { display: none; }

 .navbar { height: 68px; }
 .nav-cta { display: none; }

 .hero { min-height: auto; padding: 50px 0 60px; }
 .hero-floating-cards { flex-direction: column; }
 .hero-float-card { padding: 16px 20px; }
 .hero-float-value { font-size: 1.2rem; }
 .hero-float-icon { width: 44px; height: 44px; }

 .metrics-section { padding: 50px 0; }
 .metrics-grid { grid-template-columns: 1fr; gap: 0; }
 .metric-card:not(:last-child)::after { display: none; }
 .metric-card:not(:last-child) { border-bottom: 1px solid var(--surface-2); }
 .metric-card { padding: 28px 16px; }
 .metric-value { font-size: 2.2rem; }

 .about-section { padding: 60px 0; }
 .about-badge { right: 10px; bottom: -15px; padding: 18px 22px; }
 .about-badge-value { font-size: 1.6rem; }

 .services-section { padding: 60px 0; }
 .services-grid-all { grid-template-columns: 1fr; gap: 16px; }
 .service-card { padding: 22px; }

 .process-section { padding: 60px 0; }
 .process-grid { grid-template-columns: 1fr; gap: 32px; }

 .trust-banner { padding: 60px 0; }
 .trust-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
 .trust-stat { padding: 18px 10px; }
 .trust-stat-value { font-size: 1.6rem; }

 .landmarks-section { padding: 60px 0; }
 .landmarks-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

 .trust-text { flex-direction: column; align-items: flex-start; gap: 6px; }
 .hero-trust { flex-direction: column; align-items: flex-start; }
 .process-grid { grid-template-columns: 1fr; gap: 40px; }
 .landmarks-grid { grid-template-columns: 1fr; }

 .map-section {
 padding-bottom: 8px;
 }

 .footer-main-grid {
 display: flex;
 flex-direction: column;
 gap: 28px;
 }
 /* Logical order: brand → company → popular services → contact */
 .footer-brand { order: 1; }
 .footer-main-grid > .footer-brand + .footer-nav + .footer-nav { order: 2; }
 .footer-main-grid > .footer-brand + .footer-nav { order: 3; }
 .footer-contact-widget { order: 4; }

 .footer-cta {
 padding: 28px 22px;
 flex-direction: column;
 text-align: center;
 gap: 20px;
 }
 .footer-premium-bg {
 padding-top: 24px;
 padding-bottom: 20px;
 border-top-left-radius: 28px;
 border-top-right-radius: 28px;
 }
 
 .footer-bottom { 
 flex-direction: column; 
 gap: 16px; 
 text-align: center; 
 align-items: center; 
 }

 .footer-bottom-bar {
 flex-direction: column;
 align-items: center;
 gap: 14px;
 text-align: center;
 }
 .footer-bottom-links {
 flex-wrap: wrap;
 justify-content: center;
 }

 .zip-strip { padding: 28px 20px; }

 .form-section { padding: 60px 0; }

 .footer { padding: 60px 0 20px; }

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

 h1 { font-size: 2rem; }
 h2 { font-size: 1.6rem; }

 /* City / ZIP hero: stack copy then metric cards so text is not covered on narrow viewports */
 .hero.city-dynamic-bg .hero-grid-split {
 display: flex;
 flex-direction: column;
 align-items: stretch;
 gap: 28px;
 }
 .hero.city-dynamic-bg .hero-content {
 order: 1;
 width: 100%;
 max-width: 100%;
 min-width: 0;
 }
 .hero.city-dynamic-bg .hero-floating-cards {
 order: 2;
 width: 100%;
 }
 .hero.city-dynamic-bg .heroTitleMain {
 font-size: clamp(1.2rem, 5vw, 1.65rem);
 line-height: 1.2;
 }
 .hero.city-dynamic-bg .hero-container {
 padding-top: 10px;
 }

 /* Marketing + service heroes: contact card below copy on mobile */
 .hero .hero__layout {
 display: flex;
 flex-direction: column;
 gap: 24px;
 }
 .hero .hero__col--copy {
 order: 1;
 width: 100%;
 min-width: 0;
 }
 .hero .hero-form-card {
 order: 2;
 width: 100%;
 max-width: 100%;
 margin-top: 4px;
 }
}

/* Small Mobile */
@media (max-width: 480px) {
 .hero-actions { flex-direction: column; width: 100%; }
 .hero-actions .btn { width: 100%; justify-content: center; }
 .hero-trust { flex-direction: column; text-align: center; }
 .trust-avatars { justify-content: center; }

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

 .trust-stats { grid-template-columns: 1fr; }

 .dropdown-zip-grid { min-width: auto; }
}

/* ============ Utility Classes ============ */
.grid-align-start { align-items: flex-start !important; }
.mb-50 { margin-bottom: 50px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.overflow-hidden { overflow: hidden !important; }
.w-full { width: 100% !important; }
.max-w-800 { max-width: 800px !important; }
.line-height-12 { line-height: 1.2 !important; }

.radius-xl-wrapper { border-radius: var(--radius-xl) !important; overflow: hidden !important; }

/* Hero Centering Utilities */
.hero-full { grid-template-columns: 1fr !important; text-align: center !important; }
.hero-location-centered { justify-content: center !important; margin-top: 15px !important; }
.hero-actions-centered { justify-content: center !important; }

@media (min-width: 1025px) {
 .sticky-desktop {
 position: sticky !important;
 top: 120px !important;
 }
}

@media (max-width: 1024px) {
 .mobile-reverse {
 display: flex !important;
 flex-direction: column-reverse !important;
 }
}

/* Service Detail Utilities */
.mb-20 { margin-bottom: 20px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mt-1 { margin-top: 5px !important; } /* alignment for icons */
.line-height-18 { line-height: 1.8 !important; }
.text-color-2 { color: var(--text-2) !important; }
.text-color-1 { color: var(--text-1) !important; }
.text-primary { color: var(--primary) !important; }
.font-size-105 { font-size: 1.05rem !important; }
.font-size-090 { font-size: 0.9rem !important; }
.font-size-110 { font-size: 1.1rem !important; }

/* Service feature card list wrapper styling */
.feature-box {
 background: var(--surface-1);
 padding: 30px;
 border-radius: var(--radius-lg);
 border-left: 4px solid var(--accent);
}
.feature-list {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 20px;
}
.feature-item {
 display: flex;
 gap: 15px;
 align-items: flex-start;
}

/* FAQ / White Service Card */
.service-card-white {
 background: var(--white) !important;
}

/* site.css adds body { padding-top: 112px } for legacy fixed .topbar + .header.
 ClearStream template uses .top-bar + .navbar (sticky); that padding only adds a blank gap. */
body {
 padding-top: 0 !important;
}
/* scorecard-link */
a.metric-card.metric-card--link,
a.trust-stat.trust-stat--link {
 text-decoration: none;
 color: inherit;
 cursor: pointer;
 display: block;
}
a.metric-card.metric-card--link:hover,
a.trust-stat.trust-stat--link:hover {
 transform: translateY(-2px);
}
a.metric-card.metric-card--link:focus-visible,
a.trust-stat.trust-stat--link:focus-visible {
 outline: 2px solid var(--accent, #0b3fbf);
 outline-offset: 2px;
}
