/* ===== CSS Variables & Reset ===== */
:root {
    --primary-solid: #0B1628;
    --primary-light: #111D33;
    --primary-mid: #162540;
    --accent: #DC2626;
    --accent-glow: rgba(220, 38, 38, 0.25);
    --accent-hover: #B91C1C;
    --gold: #D4A853;
    --text-main: #CBD5E1;
    --text-light: #7A8BA8;
    --white: #F8FAFC;
    --bg-dark: #060D18;
    --blue-accent: #3B82F6;
    --gradient-hero: linear-gradient(135deg, rgba(6, 13, 24, 0.88) 0%, rgba(6, 13, 24, 0.35) 50%, rgba(6, 13, 24, 0.75) 100%);
    --gradient-card: linear-gradient(180deg, transparent 0%, rgba(6, 13, 24, 0.85) 100%);

    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --shadow-md: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--white); line-height: 1.15; font-weight: 700; }
p { color: var(--text-light); }

/* ===== Splash Intro Animation ===== */
.splash-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.splash-overlay.splash-done {
    opacity: 0;
    pointer-events: none;
}

.splash-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: splashAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, filter 0.8s ease;
}

.splash-logo-wrapper.splash-shrink {
    transform: scale(0.25) translateY(-65vh);
    opacity: 0;
    filter: blur(20px);
}

.splash-logo-img {
    width: 450px;
    height: auto;
    filter: invert(1);
    mix-blend-mode: screen;
}

@keyframes splashAppear {
    0% {
        opacity: 0;
        transform: scale(0.6);
        filter: blur(12px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-fade-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-text-reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state */
.anim-fade-up.anim-visible,
.anim-fade-down.anim-visible,
.anim-text-reveal.anim-visible,
.anim-on-scroll.anim-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger delays */
.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }
.anim-delay-3 { transition-delay: 0.45s; }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.9rem 0;
    z-index: 1000;
    background: rgba(6, 13, 24, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    background: rgba(6, 13, 24, 0.92);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; }
.site-logo { height: 76px; width: auto; filter: invert(1); mix-blend-mode: screen; transition: height 0.3s ease; }
.navbar.scrolled .site-logo { height: 56px; }

.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    transition: var(--transition-smooth);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 0.6rem; align-items: center; }

.call-btn, .text-btn, .aog-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.call-btn {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--white) !important;
}
.call-btn:hover { background: rgba(59, 130, 246, 0.25); transform: translateY(-1px); }

.text-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white) !important;
}
.text-btn:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-1px); }

.aog-btn {
    background: var(--accent);
    color: var(--white) !important;
    box-shadow: 0 4px 12px var(--accent-glow);
}
.aog-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-btn span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition-fast); }

/* ===== Hero with Carousel ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 120px;
}

.hero-carousel {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease, transform 8s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 80px;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 3px;
    height: 24px;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}
.carousel-indicators .indicator.active {
    background: var(--accent);
    height: 40px;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
}
.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--white);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    margin-bottom: 1.8rem;
    max-width: 750px;
    font-weight: 800;
    letter-spacing: -1px;
}

.accent-text {
    background: linear-gradient(135deg, var(--accent), #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.08rem;
    font-weight: 300;
    max-width: 580px;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    line-height: 1.75;
}

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

.primary-btn, .submit-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.primary-btn {
    background: var(--white);
    color: var(--bg-dark);
}
.primary-btn:hover {
    background: var(--text-main);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.call-hero-btn, .text-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.call-hero-btn {
    background: var(--accent);
    color: var(--white) !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.call-hero-btn:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3); }

.text-hero-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    backdrop-filter: blur(10px);
}
.text-hero-btn:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }

/* ===== Trust Stats ===== */
.trust-stats-wrapper {
    position: absolute;
    bottom: -45px; left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    padding: 0 2rem;
}

.trust-stats {
    display: flex;
    background: rgba(17, 29, 51, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
}

.stat-item {
    flex: 1;
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}
.stat-item:hover { background: rgba(255, 255, 255, 0.03); }

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 25%;
    height: 50%; width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-item h2 { font-size: 1.6rem; margin-bottom: 0.3rem; font-weight: 800; }
.stat-item p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin: 0;
    color: var(--text-light);
}

/* ===== Sections ===== */
section {
    padding: 7rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.section-title { max-width: 600px; margin-bottom: 3.5rem; }
.section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 50px; height: 3px;
    background: var(--accent);
    margin-top: 0.8rem;
    border-radius: 2px;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}
.service-card:hover .card-img { transform: scale(1.05); }
.card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: var(--gradient-card);
}

.card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent);
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.card-content h3 { font-size: 1.25rem; margin-bottom: 0.7rem; font-weight: 700; }
.card-content p { margin-bottom: 1rem; font-size: 0.9rem; flex-grow: 1; line-height: 1.7; }

.service-card.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border: none;
}
.service-card.highlight .card-img::after {
    background: linear-gradient(0deg, rgba(185, 28, 28, 0.6) 0%, transparent 100%);
}
.service-card.highlight p,
.service-card.highlight h3 { color: var(--white); }

.aog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white) !important;
    margin-top: auto;
    padding: 0.6rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.aog-link span { transition: transform 0.3s ease; font-size: 1.2rem; }
.service-card.highlight:hover .aog-link span { transform: translateX(6px); }

.services-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--accent);
}
.services-note p { font-size: 0.85rem; color: var(--text-light); }
.services-note strong { color: var(--text-main); }

/* ===== Why Us ===== */
.why-us {
    background: linear-gradient(180deg, var(--primary-solid) 0%, var(--bg-dark) 100%);
    max-width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.why-us-container { max-width: 1240px; margin: 0 auto; }
.why-us-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.why-us-text > p { margin-bottom: 3rem; max-width: 650px; font-size: 1rem; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}
.why-item:hover {
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.why-icon { flex-shrink: 0; line-height: 1; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(220, 38, 38, 0.08); border-radius: 10px; }
.why-item h4 { margin-bottom: 0.5rem; font-size: 1.05rem; font-weight: 700; }
.why-item p { font-size: 0.88rem; line-height: 1.65; }

/* ===== Coverage with Real Map ===== */
.coverage-layout {
    display: grid;
    grid-template-columns: 1.6fr 0.4fr;
    gap: 2.5rem;
    align-items: start;
}

/* Map Zoom-Out Container */
.map-zoom-container {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.map-frame {
    width: 100%;
    height: 100%;
    position: relative;
    transform: scale(2.5);
    transform-origin: center;
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-zoom-container.map-zoomed .map-frame {
    transform: scale(1);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 2s, transform 0.6s ease 2s;
}
.map-zoom-container.map-zoomed .map-overlay-badge {
    opacity: 1;
    transform: translateY(0);
}

.map-badge-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(6, 13, 24, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}
.map-badge-inner strong {
    display: block;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
}
.map-badge-inner span {
    display: block;
    color: var(--text-light);
    font-size: 0.7rem;
}

.coverage-cards { display: flex; flex-direction: column; gap: 1.5rem; }

.states-list { display: flex; flex-direction: column; gap: 0.8rem; }

.state-badge {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.state-badge::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}
.state-badge:hover::before { transform: scaleX(1); }
.state-badge:hover { border-color: rgba(220, 38, 38, 0.2); transform: translateY(-3px); box-shadow: var(--shadow-glow); }

.state-icon {
    margin: 0 auto 0.5rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 10px;
}

.state-badge h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.state-badge p { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.5px; }

.coverage-note { font-size: 0.85rem; font-style: italic; text-align: center; }

/* ===== Contact ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
}

.contact-info h2 { margin-bottom: 1rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact-info > p { margin-bottom: 2rem; font-size: 0.95rem; }
.info-blocks { display: flex; flex-direction: column; gap: 1rem; }

.info-block {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    background: var(--primary-light);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}
.info-block:hover { border-color: rgba(255, 255, 255, 0.1); transform: translateX(4px); }

.info-block .icon {
    font-size: 1.2rem;
    background: var(--primary-mid);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.info-block h4 { margin-bottom: 0.15rem; font-size: 0.95rem; font-weight: 700; }
.info-block p { font-size: 0.85rem; }
.info-block a { color: var(--accent); font-weight: 500; }
.info-block a:hover { text-decoration: underline; }

/* Contact Methods */
.contact-methods {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-methods h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 0.8rem;
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    color: var(--text-main);
}
.method-card:hover {
    border-color: var(--accent);
    background: rgba(220, 38, 38, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
    color: var(--white);
}
.method-card svg { opacity: 0.7; transition: var(--transition-smooth); }
.method-card:hover svg { opacity: 1; stroke: var(--accent); }
.method-card span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3px; }

/* ===== CTA Panel (replaces Form) ===== */
.cta-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-hero-box {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.cta-hero-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.12);
    color: var(--accent);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.cta-hero-box h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    max-width: 400px;
}

.cta-hero-box p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 380px;
    line-height: 1.65;
}

.cta-buttons { display: flex; flex-direction: column; gap: 0.8rem; }

.cta-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2rem;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    text-align: center;
}
.cta-call-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.cta-secondary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.cta-text-btn, .cta-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.cta-text-btn {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: var(--white) !important;
}
.cta-text-btn:hover { background: rgba(59, 130, 246, 0.22); transform: translateY(-2px); }

.cta-email-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white) !important;
}
.cta-email-btn:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

/* ===== Testimonials ===== */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.testimonial-card {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.4rem;
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

.testimonial-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.82rem;
}
.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.7rem;
}


/* ===== Footer ===== */
footer {
    background: var(--primary-solid);
    padding: 4rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand { max-width: 300px; }
.footer-brand p { margin-top: 1rem; font-size: 0.82rem; line-height: 1.7; }
.footer-address {
    margin-top: 0.8rem !important;
    font-size: 0.8rem !important;
    color: var(--accent) !important;
    font-weight: 600;
}

.footer-links-group { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 { margin-bottom: 0.6rem; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a { font-size: 0.82rem; color: var(--text-light); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== Floating Call Button ===== */
.floating-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-call 2.5s infinite;
}
.floating-call:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(220, 38, 38, 0.5); }
.floating-call svg { width: 28px; height: 28px; }

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* ===== Cockpit Banner ===== */
.cockpit-banner {
    position: relative;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cockpit-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cockpit-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(6, 13, 24, 0.8) 0%, rgba(6, 13, 24, 0.6) 50%, rgba(6, 13, 24, 0.85) 100%);
}

.cockpit-content { position: relative; z-index: 1; text-align: center; padding: 2rem; }

.cockpit-quote {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white) !important;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.cockpit-divider { display: block; width: 60px; height: 2px; background: var(--accent); margin: 0 auto 1.2rem; }

.cockpit-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--text-light) !important;
}

@media screen and (max-width: 1024px) {
    .trust-stats { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; }
    .stat-item:nth-child(2)::after { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .coverage-layout { grid-template-columns: 1fr; gap: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
    html, body { overflow-x: hidden; }

    /* ---- Navbar Mobile ---- */
    .site-logo { height: 44px; }
    .navbar { padding: 0.5rem 0; }
    .navbar.scrolled .site-logo { height: 38px; }
    .nav-container { padding: 0 1rem; }
    .nav-links, .nav-actions { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: rgba(11, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        z-index: 100;
    }
    .nav-links.active a {
        font-size: 1.05rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        color: var(--white);
    }
    .mobile-menu-btn { display: flex; }

    /* ---- Splash Mobile ---- */
    .splash-logo-img { width: 160px; }

    /* ---- Hero Mobile ---- */
    .hero {
        flex-direction: column;
        align-items: stretch;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 60px;
        padding-bottom: 0;
    }
    .hero-content {
        padding: 2rem 1.2rem 2rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }
    .hero-badge {
        font-size: 0.58rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 1.2rem;
        letter-spacing: 0.5px;
        align-self: flex-start;
    }
    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
        max-width: 100%;
        line-height: 1.1;
    }
    .hero p {
        font-size: 0.88rem;
        margin-bottom: 1.8rem;
        line-height: 1.65;
        max-width: 100%;
        color: rgba(203, 213, 225, 0.9);
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
    }
    .primary-btn,
    .call-hero-btn,
    .text-hero-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        padding: 0.95rem 1rem;
        font-size: 0.92rem;
        text-align: center;
        box-sizing: border-box;
        border-radius: 10px;
    }
    .call-hero-btn { box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35); }

    /* Carousel mobile */
    .carousel-indicators {
        bottom: auto;
        top: 50%;
        right: 0.8rem;
        transform: translateY(-50%);
    }
    .carousel-indicators .indicator { height: 16px; }
    .carousel-indicators .indicator.active { height: 28px; }
    .carousel-slide { background-position: center center; }

    /* ---- Trust Stats Mobile ---- */
    .trust-stats-wrapper {
        position: relative;
        bottom: auto;
        width: 100%;
        padding: 0;
        margin-top: 0;
    }
    .trust-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-radius: 0;
        width: 100%;
        backdrop-filter: none;
        background: var(--primary-light);
    }
    .stat-item {
        padding: 1.2rem 0.8rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
    .stat-item h2 { font-size: 1.3rem; }
    .stat-item p { font-size: 0.6rem; letter-spacing: 0.8px; }

    /* ---- Sections Mobile ---- */
    section {
        padding: 3rem 1.2rem;
        max-width: 100%;
        overflow: hidden;
    }
    .section-title { margin-bottom: 2rem; }
    .section-title h2 { font-size: 1.6rem; }
    .section-title p { font-size: 0.88rem; }

    /* ---- Services Mobile ---- */
    .services-grid { gap: 1rem; }
    .card-img { height: 220px; }
    .card-content { padding: 1.4rem; }
    .card-content h3 { font-size: 1.15rem; }
    .card-content p { font-size: 0.85rem; }
    .service-tag { font-size: 0.62rem; padding: 0.18rem 0.6rem; }
    .services-note { margin-top: 1rem; }
    .services-note p { font-size: 0.8rem; }

    /* ---- Why Us Mobile ---- */
    .why-us { padding: 3rem 1.2rem; max-width: 100%; }
    .why-us-text h2 { font-size: 1.6rem; }
    .why-us-text > p { font-size: 0.88rem; margin-bottom: 1.5rem; }
    .why-grid { gap: 0.8rem; }
    .why-item { padding: 1.4rem; gap: 0.8rem; }
    .why-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; }
    .why-icon svg { width: 20px; height: 20px; }
    .why-item h4 { font-size: 1rem; }
    .why-item p { font-size: 0.82rem; }

    /* ---- Cockpit Banner Mobile ---- */
    .cockpit-banner { height: 220px; }
    .cockpit-bg { background-attachment: scroll; }
    .cockpit-quote { font-size: 1.1rem; margin-bottom: 0.8rem; padding: 0 0.5rem; }
    .cockpit-subtitle { font-size: 0.6rem; letter-spacing: 2px; }

    /* ---- Coverage & Map Mobile ---- */
    .coverage-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .map-zoom-container { height: 300px; border-radius: 12px; }
    .map-frame { transform: scale(2); }
    .map-overlay-badge { bottom: 0.6rem; left: 0.6rem; }
    .map-badge-inner { padding: 0.5rem 0.8rem; }
    .map-badge-inner strong { font-size: 0.72rem; }
    .map-badge-inner span { font-size: 0.6rem; }
    .states-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
    }
    .state-badge { padding: 0.8rem 0.4rem; }
    .state-icon { width: 32px; height: 32px; margin-bottom: 0.3rem; }
    .state-icon svg { width: 18px; height: 18px; }
    .state-badge h3 { font-size: 0.82rem; }
    .state-badge p { font-size: 0.5rem; }
    .coverage-note { font-size: 0.8rem; }

    /* ---- Contact Mobile ---- */
    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info h2 { font-size: 1.5rem; }
    .contact-info > p { font-size: 0.88rem; }
    .info-blocks { gap: 0.7rem; }
    .info-block { padding: 0.9rem 1rem; border-radius: 12px; }
    .info-block .icon { width: 40px; height: 40px; border-radius: 10px; }
    .info-block h4 { font-size: 0.9rem; }
    .info-block p, .info-block a { font-size: 0.82rem; }

    .methods-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .method-card { padding: 1rem 0.5rem; border-radius: 10px; }
    .method-card svg { width: 22px; height: 22px; }
    .method-card span { font-size: 0.7rem; }

    /* ---- CTA Panel Mobile ---- */
    .cta-panel { gap: 1rem; }
    .cta-hero-box { padding: 1.8rem 1.4rem; border-radius: 14px; }
    .cta-hero-box h3 { font-size: 1.3rem; max-width: 100%; }
    .cta-hero-box p { font-size: 0.85rem; max-width: 100%; margin-bottom: 1.5rem; }
    .cta-call-btn { padding: 1rem; font-size: 0.95rem; border-radius: 12px; }
    .cta-secondary-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .cta-text-btn, .cta-email-btn { padding: 0.8rem; font-size: 0.82rem; border-radius: 10px; }

    /* ---- Testimonials Mobile ---- */
    .testimonials { gap: 0.6rem; }
    .testimonial-card { padding: 1.2rem; }
    .testimonial-card p { font-size: 0.82rem; }
    .author-avatar { width: 32px; height: 32px; font-size: 0.65rem; }
    .testimonial-author strong { font-size: 0.78rem; }
    .testimonial-author span { font-size: 0.65rem; }

    /* ---- Footer Mobile ---- */
    footer { padding: 2.5rem 1.2rem 1rem; }
    .footer-container { flex-direction: column; gap: 2rem; margin-bottom: 2rem; }
    .footer-brand { max-width: 100%; }
    .footer-brand .site-logo { height: 36px; }
    .footer-brand p { font-size: 0.8rem; }
    .footer-links-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-links h4 { font-size: 0.78rem; }
    .footer-links a { font-size: 0.78rem; }
    .footer-bottom { font-size: 0.68rem; padding-top: 1rem; }

    /* ---- Floating Call Mobile ---- */
    .floating-call { width: 52px; height: 52px; bottom: 1rem; right: 1rem; }
    .floating-call svg { width: 24px; height: 24px; }
}

/* ===== Extra Small (< 380px) ===== */
@media screen and (max-width: 380px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.82rem; }
    .hero-badge { font-size: 0.52rem; }
    .stat-item h2 { font-size: 1.1rem; }
    .stat-item p { font-size: 0.55rem; }
    .states-list { grid-template-columns: 1fr !important; }
    .state-badge { padding: 0.8rem; }
    .primary-btn, .call-hero-btn, .text-hero-btn { font-size: 0.85rem; padding: 0.85rem 0.8rem; }
    .methods-grid { grid-template-columns: 1fr; }
    .cta-secondary-row { grid-template-columns: 1fr; }
}

