:root {
    /* Logo-forward blue & white (T on brand polos — primary actions use this blue) */
    --bg-main: #070f1a;
    --bg-card: rgba(12, 24, 42, 0.92);
    --primary: #1e5a9a;
    --primary-light: #3d8fd4;
    --primary-dark: #0f3d66;
    --accent: #1e5a9a;
    --accent-red: #e63946;
    --text-main: #ffffff;
    --text-muted: #8fa0b9;
    --text-dark: #0f2438;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    
    /* Typography - Industrial & Professional */
    --font-header: 'Anton', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Scaling */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-width: 1200px;
    
    /* Effects */
    --shadow-premium: 0 20px 50px rgba(0,0,0,0.8);
    --blur: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* Base Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

html { 
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Subtle hauling / route-to-yard motif (non-interactive) */
.haul-bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 60% at 50% -20%, rgba(30, 90, 154, 0.18), transparent 55%),
        linear-gradient(180deg, #070f1a 0%, #0a1628 40%, #060a12 100%);
    opacity: 1;
}

.haul-bg-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath fill='%23ffffff' fill-opacity='0.035' d='M8 88h18l4-12h24l6 18H8V88zm62-40h20l-2 8H70l2-8zM95 28l-6 20H65l8-20h22z'/%3E%3Ccircle cx='102' cy='98' r='3' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 140px 140px;
    animation: haulPatternDrift 90s linear infinite;
}

.haul-bg-layer::after {
    content: "";
    position: absolute;
    inset: -20% -10%;
    background:
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 48px,
            rgba(30, 90, 154, 0.04) 48px,
            rgba(30, 90, 154, 0.04) 50px
        ),
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(230, 57, 70, 0.06), transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 30%, rgba(30, 90, 154, 0.1), transparent 55%);
    animation: haulRoadPulse 28s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes haulRoadPulse {
    0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    100% { transform: translate(-2%, 1%) scale(1.02); opacity: 1; }
}

@keyframes haulPatternDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-80px, -80px); }
}

#main-header,
main,
footer,
.geo-region-strip {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.est-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.est-item.active {
    border-color: var(--primary) !important;
    background: rgba(30, 90, 154, 0.12) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes doorOpen {
    0% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cinematic Entrance — above header (1000), thumb bar (1500), bot (2000) */
#entrance-gate {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: radial-gradient(ellipse 120% 80% at 50% 20%, #0f2844 0%, #070f1a 45%, #04080f 100%);
    z-index: 50000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
    transform: translateY(0);
    pointer-events: auto;
    isolation: isolate;
    overflow: hidden;
}

.entrance-gate-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    max-width: min(520px, 92vw);
    text-align: center;
}

#entrance-gate .entrance-logo {
    width: min(220px, 55vw);
    height: auto;
    animation: entranceLogoPulse 2.4s ease-in-out infinite;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

@keyframes entranceLogoPulse {
    0%, 100% { transform: scale(1); opacity: 0.92; }
    50% { transform: scale(1.04); opacity: 1; }
}

.entrance-scene {
    position: relative;
    width: min(420px, 88vw);
    height: 100px;
    margin-top: 0.5rem;
}

.entrance-road {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 8px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.18), rgba(255,255,255,0.06));
    border-radius: 4px;
    box-shadow: 0 0 24px rgba(30, 90, 154, 0.25);
}

.entrance-load {
    position: absolute;
    left: 50%;
    bottom: 38px;
    width: 56px;
    height: 36px;
    margin-left: -28px;
    background: linear-gradient(145deg, #4a5568, #2d3748);
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: transform 2.2s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.6s ease;
}

.entrance-truck {
    position: absolute;
    left: -25%;
    bottom: 12px;
    width: 120px;
    height: auto;
    transition: transform 2.2s cubic-bezier(0.45, 0, 0.2, 1);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.4));
}

#entrance-gate.entrance-haul .entrance-truck {
    transform: translateX(calc(100vw * 0.55));
}

#entrance-gate.entrance-haul .entrance-load {
    transform: translateX(calc(100vw * 0.52)) rotate(4deg);
    opacity: 0;
}

.entrance-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    max-width: 320px;
    line-height: 1.5;
}

.entrance-caption .text-accent-red {
    font-weight: 700;
}

/* Photo splash — truck recedes “down the road” and dissipates */
.entrance-gate-inner.entrance-splash-scene {
    max-width: min(960px, 100vw);
    width: 100%;
    min-height: 52vh;
    position: relative;
    justify-content: flex-end;
    padding-bottom: clamp(1.5rem, 5vh, 3rem);
}

.entrance-splash-road {
    position: absolute;
    left: -15%;
    right: -15%;
    bottom: 0;
    height: 42%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(7, 15, 26, 0.5) 45%, #050a12 100%),
        repeating-linear-gradient(
            -8deg,
            transparent,
            transparent 28px,
            rgba(255, 255, 255, 0.05) 28px,
            rgba(255, 255, 255, 0.05) 30px
        );
    transform: perspective(320px) rotateX(58deg);
    transform-origin: 50% 100%;
    opacity: 0.85;
    pointer-events: none;
}

.entrance-truck-photo {
    position: relative;
    z-index: 2;
    width: min(92vw, 720px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.55));
    transition:
        transform 3.2s cubic-bezier(0.42, 0, 0.2, 1),
        opacity 2.4s ease 0.65s,
        filter 2.8s ease 0.5s;
}

#entrance-gate.entrance-drive-away .entrance-truck-photo {
    transform: translateY(42vh) scale(0.68);
    opacity: 0;
    filter: drop-shadow(0 0 0 transparent) blur(10px);
}

#entrance-gate.entrance-drive-away .entrance-splash-road {
    opacity: 0.35;
    transition: opacity 2s ease;
}

#entrance-gate.entrance-drive-away .entrance-caption {
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.site-splash-active {
    overflow: hidden;
}

.entrance-skip-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    padding: 0.55rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
    background: rgba(7, 15, 26, 0.75);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.entrance-skip-btn:hover {
    background: rgba(30, 90, 154, 0.45);
    border-color: rgba(61, 143, 212, 0.5);
}

body.site-body.site-home {
    padding-top: 0;
}

body.site-body.page-sub {
    padding-top: 7rem;
}

@media (max-width: 992px) {
    body.site-body.page-sub {
        padding-top: 5.75rem;
    }
}

#main-header.site-header-sticky {
    background: linear-gradient(to bottom, rgba(7, 15, 26, 0.98), rgba(7, 15, 26, 0.94));
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

.logo.logo-enhanced img {
    height: 48px;
    width: auto;
    filter:
        drop-shadow(0 2px 10px rgba(30, 90, 154, 0.5))
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.15));
    transition: transform 0.22s ease, filter 0.22s ease;
}

.logo.logo-enhanced:hover img {
    transform: scale(1.04);
    filter:
        drop-shadow(0 5px 18px rgba(61, 143, 212, 0.55))
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
}

.hero-follow-strip {
    position: relative;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(30, 90, 154, 0.14),
        rgba(12, 24, 42, 0.92),
        rgba(30, 90, 154, 0.14)
    );
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.9rem 0;
}

.hero-follow-inner p {
    margin: 0;
    text-align: center;
    font-size: clamp(0.88rem, 2.2vw, 1rem);
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.hero-follow-inner a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 700;
}

.hero-follow-inner a:hover {
    text-decoration: underline;
}

.hero-follow-inner i {
    margin-right: 0.35rem;
    color: var(--primary-light);
}

/* Book page — two funnels (estimate vs. job + deposit) */
.booking-funnel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.booking-funnel-card {
    display: block;
    padding: 1.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    background: rgba(12, 24, 42, 0.65);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a.booking-funnel-card:hover {
    border-color: rgba(61, 143, 212, 0.45);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.booking-funnel-card h2,
.booking-funnel-card h3 {
    font-family: var(--font-header);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.booking-funnel-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.booking-funnel-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.booking-funnel-badge--estimate {
    background: rgba(61, 143, 212, 0.2);
    color: var(--primary-light);
}

.booking-funnel-badge--job {
    background: rgba(230, 57, 70, 0.2);
    color: #ff8a93;
}

.booking-section-title {
    scroll-margin-top: 6.5rem;
}

/* Site footer — balanced columns */
.site-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
        align-items: start;
    }
    .site-footer-inner .site-footer-brand {
        text-align: center;
    }
}

.site-footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.site-footer-links a:hover {
    color: var(--primary-light);
}

/* About page accent band */
.about-accent-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(12, 24, 42, 0.97) 0%, rgba(7, 15, 26, 0.92) 50%, rgba(30, 90, 154, 0.15) 100%),
        url("assets/hero-team.webp") center / cover no-repeat;
    background-blend-mode: normal;
}

.about-accent-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 90, 154, 0.25), transparent 55%);
    pointer-events: none;
}

.about-accent-band .container {
    position: relative;
    z-index: 1;
}

/* Gallery hub v2 */
.gallery-v2-hero {
    position: relative;
    padding: clamp(6rem, 14vw, 10rem) 0 4rem;
    background:
        linear-gradient(180deg, rgba(7, 15, 26, 0.92) 0%, rgba(7, 15, 26, 0.75) 45%, #070f1a 100%),
        url("before-after/chrisafter%20%281%29.jpg") center 30% / cover no-repeat;
    border-bottom: 1px solid var(--glass-border);
}

.gallery-v2-hero .container {
    position: relative;
    z-index: 1;
}

.gallery-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    padding-bottom: var(--section-padding);
}

.gallery-v2-card {
    position: relative;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    background: var(--bg-card);
}

.gallery-v2-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 143, 212, 0.45);
    box-shadow: var(--shadow-premium);
}

.gallery-v2-card-img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    display: block;
}

.gallery-v2-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.gallery-v2-card-title {
    font-family: var(--font-header);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.gallery-v2-card-meta {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 0.06em;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.text-accent-red {
    color: var(--accent-red);
    font-weight: 600;
}

/* Typography Overhaul */
h1, h2, h3, h4, .val-title, .hero-title, .section-title, .faq-subtitle {
    font-family: var(--font-header);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    line-height: 0.9;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
    margin-bottom: 0.75rem;
}

.hero-kicker {
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 600;
    margin-bottom: 1.75rem;
    max-width: 520px;
    line-height: 1.45;
}
@media (max-width: 600px) {
    .hero-title { font-size: 3.2rem; line-height: 1; }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 22px rgba(61, 143, 212, 0.2), 0 0 34px rgba(230, 57, 70, 0.14);
}

/* Glassmorphism Refined */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

/* Headers & Nav — full bar stays on screen while scrolling */
header#main-header,
header.site-header-sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(to bottom, rgba(7, 15, 26, 0.97), rgba(7, 15, 26, 0.94));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-promo-banner {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light), var(--primary), var(--primary-dark));
    background-size: 200% 100%;
    animation: promoSheen 12s ease-in-out infinite;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@keyframes promoSheen {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-promo-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    padding: 0.55rem 1rem;
    text-align: center;
}

.nav-promo-text {
    margin: 0;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.45;
    max-width: 52rem;
}

.nav-promo-text i {
    margin-right: 0.35rem;
    opacity: 0.95;
}

.nav-promo-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.nav-promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    color: var(--primary);
}

.top-bar {
    background: rgba(6, 12, 22, 0.75);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s;
    font-weight: 500;
}

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

.main-nav {
    padding: 1rem 0;
}

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

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.desktop-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 2.5rem;
    transition: var(--transition);
    opacity: 0.9;
}

.desktop-nav a:hover { 
    opacity: 1;
    color: var(--primary-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.1em;
}

.btn-red { 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(30, 90, 154, 0.35);
}

.btn-red:hover { 
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 90, 154, 0.45);
}

.btn-white { 
    background: white; 
    color: var(--text-dark); 
}

.btn-white:hover { 
    background: #f8f8f8;
    transform: translateY(-5px);
}

.btn-large { padding: 1.5rem 4rem; font-size: 1.1rem; }

/* Hero Slider Section */
.hero-section {
    position: relative;
    padding: 18rem 0 12rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -3;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease-in-out, transform 10s linear;
}

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

.hero-slide-picture.active {
    transform: none;
}

.hero-slide-picture.active .hero-picture-img {
    animation: heroKenBurns 14s ease-out forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide-picture.active .hero-picture-img {
        animation: none;
    }
}

.hero-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    z-index: -2;
}

.hero-section-photo .hero-overlay-photo {
    /* Lighter on the right so faces / team photo stay readable above the headline block */
    background: linear-gradient(105deg, rgba(7, 15, 26, 0.92) 0%, rgba(7, 15, 26, 0.55) 38%, rgba(7, 15, 26, 0.15) 72%, rgba(7, 15, 26, 0.35) 100%);
    z-index: -2;
}

.hero-slider-single .hero-slide {
    /* Anchor photo higher so faces sit above the text column */
    background-position: center 5%;
}

.hero-slide-picture {
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
}

.hero-picture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
}

.hero-slider-single .hero-slide-picture {
    background-image: none;
}

.hero-subtitle-trust {
    text-transform: none;
    letter-spacing: 0.04em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.hero-title-primary {
    font-size: clamp(2.15rem, 7.5vw, 4rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
}

.hero-big-three {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 720px;
}

.hero-big-three li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
}

.hero-big-three-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(30, 90, 154, 0.35);
    color: var(--primary-light);
    font-size: 1rem;
}

.hero-big-three-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-muted);
}

.hero-big-three-text strong {
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-subtext-tight {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 560px;
}

@media (max-width: 720px) {
    .hero-big-three {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Header: less noise on small screens */
@media (max-width: 768px) {
    .top-bar-secondary-phone {
        display: none !important;
    }

    .top-bar-inner {
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        justify-content: center;
    }

    .contact-info-compact .top-bar-hit {
        margin-right: 0.75rem;
    }

    .top-bar-sms-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .top-bar-phone-main {
        font-size: 0.72rem;
    }
}

.nav-promo-minimal {
    animation: none;
    background: linear-gradient(105deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.nav-promo-stars {
    font-weight: 800;
    opacity: 0.95;
}

/* Sticky mobile “text photos” FAB */
.mobile-text-fab {
    display: none;
}

@media (max-width: 768px) {
    .mobile-text-fab {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 6.25rem;
        right: 1rem;
        z-index: 1600;
        padding: 0.65rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--accent-red), #c1121f);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
        border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .mobile-text-fab i {
        font-size: 1rem;
    }

    .trust-badge-floating {
        bottom: 118px;
        max-width: min(260px, 70vw);
    }
}

@media (min-width: 769px) {
    .mobile-text-fab {
        display: none !important;
    }
}

/* T&M Way */
.tm-way-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tm-way-card {
    padding: 2rem 1.5rem;
    text-align: center;
}

.tm-way-card-title {
    font-family: var(--font-header);
    font-size: 1rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    color: #fff;
}

@media (max-width: 768px) {
    .tm-way-grid {
        grid-template-columns: 1fr;
    }
}

/* Load estimator (dark) */
.load-estimator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.load-viz-wrap {
    padding: 2rem 1.5rem;
    text-align: center;
}

.load-viz-trailer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    max-width: 280px;
    margin: 0 auto 1.25rem;
    height: 120px;
}

.load-viz-cab {
    width: 52px;
    height: 56px;
    background: linear-gradient(180deg, #3d566e, #1e2a36);
    border-radius: 8px 4px 4px 8px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.load-viz-trailer-bed {
    flex: 1;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px 8px 8px 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.load-viz-fill {
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, var(--primary-light), var(--primary-dark));
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 4px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.load-viz-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 6px,
        rgba(0, 0, 0, 0.06) 6px,
        rgba(0, 0, 0, 0.06) 12px
    );
    pointer-events: none;
}

.load-viz-caption {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.load-pct-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.load-pct-btn {
    font: inherit;
    cursor: pointer;
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    text-align: left;
}

.load-pct-btn:hover {
    border-color: var(--primary);
    background: rgba(30, 90, 154, 0.15);
}

.load-pct-btn.active {
    border-color: var(--primary-light);
    background: rgba(30, 90, 154, 0.28);
    box-shadow: 0 0 0 1px var(--primary);
}

@media (max-width: 768px) {
    .load-estimator-layout {
        grid-template-columns: 1fr;
    }
}

/* Service areas hub cards */
.service-area-card {
    display: block;
    padding: 1rem 1.25rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-main) !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

.service-area-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

#thumb-bar .thumb-bar-sms {
    background: rgba(230, 57, 70, 0.25);
    color: #fff;
    border: 1px solid rgba(230, 57, 70, 0.45);
}

#thumb-bar .thumb-bar-sms:hover {
    background: rgba(230, 57, 70, 0.4);
}

/* Photo hero: gap under sticky header so top bar (phones, text, email) stays visible; image starts lower */
.hero-section.hero-section-photo .hero-slider,
.hero-section.hero-section-photo .hero-overlay-photo {
    top: 5.75rem;
}

@media (max-width: 992px) {
    .hero-section.hero-section-photo .hero-slider,
    .hero-section.hero-section-photo .hero-overlay-photo {
        top: 5.25rem;
    }
}

/* Photo hero: sit copy lower so it does not cover faces */
.hero-section.hero-section-photo {
    align-items: flex-end;
    padding: 11rem 0 clamp(4rem, 11vh, 9rem);
    min-height: min(100vh, 920px);
}

.hero-section.hero-section-photo .hero-container {
    width: 100%;
}

.hero-cta-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.5;
}

.hero-cta-note a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

.hero-cta-note a:hover {
    text-decoration: underline;
}

.hero-text-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle { 
    font-size: 1.4rem; 
    margin-bottom: 0.75rem; 
    font-weight: 600; 
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtext { 
    font-size: 1.25rem; 
    margin-bottom: 3rem; 
    line-height: 1.5; 
    max-width: 700px; 
    color: #f0f4fa;
}

/* Value Props & Who We Help */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.who-card {
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.who-card h4 {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.who-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.who-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 0;
    overflow: hidden;
    color: var(--text-main);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 0;
    transition: transform 1s ease;
}

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

.service-card h3 {
    padding: 2rem 2rem 0.5rem;
    font-size: 1.8rem;
    color: white !important;
}

.service-card p {
    padding: 0 2rem 3rem;
    color: var(--text-muted);
}

/* Booking Form Refined */
.booking-form {
    position: relative;
    background: var(--bg-card);
    padding: clamp(2rem, 5vw, 5rem);
    border: 1px solid var(--glass-border);
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-input {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
}

.booking-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.booking-form select.form-input,
.booking-form input[type="date"].form-input {
    color-scheme: dark;
}

.booking-form select.form-input option {
    background: #0f2438;
    color: #f0f4fa;
}

.booking-form input[type="file"].form-input {
    color: var(--text-muted);
}

.booking-form input[type="file"].form-input::file-selector-button {
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(30, 90, 154, 0.35);
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
}

/* Footer Section */
.footer-main {
    padding: 4rem 0 2rem;
    background: #060d18;
    border-top: 1px solid var(--glass-border);
}

.footer-main a {
    color: var(--text-muted) !important;
}

.footer-main .site-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem 2.25rem;
}

.footer-main .site-footer-inner > div,
.footer-main .site-footer-inner > nav {
    flex: 1 1 240px;
    min-width: 220px;
}

.footer-main .site-footer-brand {
    text-align: left !important;
}

.footer-main .site-footer-brand > div {
    justify-content: flex-start !important;
}

@media (max-width: 860px) {
    .footer-main .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-main .site-footer-brand,
    .footer-main .site-footer-brand > div {
        text-align: center !important;
        justify-content: center !important;
    }
}

/* Page-specific background personalities */
body.page-contact main {
    background:
        radial-gradient(circle at 12% 16%, rgba(230, 57, 70, 0.18), transparent 36%),
        radial-gradient(circle at 84% 18%, rgba(61, 143, 212, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(6, 13, 24, 0.95), rgba(8, 18, 31, 0.98));
}

body.page-service-areas main {
    background:
        linear-gradient(180deg, rgba(6, 13, 24, 0.92), rgba(8, 18, 31, 0.96)),
        radial-gradient(circle at 20% 18%, rgba(61, 143, 212, 0.12), transparent 36%),
        radial-gradient(circle at 76% 24%, rgba(230, 57, 70, 0.11), transparent 38%),
        repeating-linear-gradient(48deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(-42deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 38px);
}

body.page-gallery main {
    background:
        linear-gradient(180deg, rgba(5, 10, 16, 0.97), rgba(8, 18, 30, 0.98)),
        radial-gradient(circle at 18% 30%, rgba(61, 143, 212, 0.16), transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(230, 57, 70, 0.14), transparent 36%);
}

body.page-reviews main {
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.98), rgba(7, 14, 24, 1)),
        radial-gradient(circle at 14% 16%, rgba(255, 204, 0, 0.12), transparent 25%),
        radial-gradient(circle at 80% 18%, rgba(61, 143, 212, 0.16), transparent 34%);
}

body.page-booking main {
    background:
        linear-gradient(180deg, rgba(7, 14, 24, 0.96), rgba(6, 13, 24, 1)),
        radial-gradient(circle at 16% 20%, rgba(230, 57, 70, 0.16), transparent 35%),
        radial-gradient(circle at 85% 26%, rgba(61, 143, 212, 0.18), transparent 35%);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    :root {
        --section-padding: 5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .desktop-nav {
        display: none; /* In a real app, I'd add a mobile menu burger */
    }
    
    .glass {
        padding: 1.5rem;
    }
    .hero-section {
        padding: 12rem 0 6rem;
    }

    .hero-section.hero-section-photo {
        padding: 9rem 0 clamp(3.5rem, 10vh, 6rem);
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-slider-single .hero-slide {
        background-position: center 3%;
    }

    .hero-picture-img {
        object-position: center 3%;
    }
    .hero-subtext {
        font-size: 1.1rem;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-cta-note {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* Visual Volume Estimator */
.estimator-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .estimator-container { grid-template-columns: 1fr; }
}

.truck-viewport {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: #fdfdfd;
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid #eee;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.truck-graphic {
    position: relative;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.truck-cargo-area {
    position: absolute;
    top: 51%;
    left: 2%;
    width: 70%;
    height: 35%;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 4px;
    transform: perspective(100px) rotateY(-5deg);
}

.cargo-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cargo-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.1) 10px,
        rgba(0,0,0,0.2) 10px,
        rgba(0,0,0,0.2) 20px
    );
}

/* Custom Slider */
.range-container {
    margin: 3rem 0;
}

.load-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    background: #eee;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
}

.load-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 34px;
    height: 34px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(30, 90, 154, 0.35);
    cursor: pointer;
    transition: transform 0.2s;
}

.load-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }

.load-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: #999;
    font-size: 0.75rem;
    font-weight: 700;
}

.quick-add-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.img-artifact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

.img-artifact:hover img {
    transform: scale(1.05);
}

.img-trinity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .img-trinity {
        grid-template-columns: 1fr;
    }
}


/* Before/After Transformation Slider */
.ba-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
}

@media (max-width: 1024px) {
    .ba-container { height: 400px; }
}

@media (max-width: 600px) {
    .ba-container { height: min(72vw, 340px); }
}

.ba-after, .ba-before {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-before {
    width: 50%;
    border-right: 4px solid var(--primary);
    z-index: 2;
}

button.ba-handle {
    font: inherit;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.ba-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.ba-tag {
    position: absolute;
    top: 12px;
    z-index: 3;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    pointer-events: none;
}

.ba-tag-before { left: 12px; }
.ba-tag-after { right: 12px; }

.ba-filename-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    word-break: break-word;
}

.ba-slider-grid .ba-slider-card {
    margin-bottom: 0;
}

.ba-slider-card {
    margin-bottom: 2rem;
}

.ba-slider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
    align-items: start;
}

.job-showcase {
    margin-bottom: clamp(4rem, 10vw, 7rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--glass-border);
}

.job-showcase:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-showcase-header {
    margin-bottom: 2.5rem;
}

.job-showcase-eyebrow {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.job-showcase-title {
    font-family: var(--font-header);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.job-showcase-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
}

.featured-ba.ba-container {
    max-height: 560px;
}

@media (max-width: 600px) {
    .ba-container {
        height: 380px;
    }
}

/* AI Assistant & Floating UI */
#bot-container {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 380px;
    height: 550px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#bot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bot-header {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    padding: 1.25rem;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#bot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 1rem;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.9rem;
}

.message.bot { background: rgba(255,255,255,0.05); }
.message.user { 
    background: var(--primary); 
    align-self: flex-end;
    color: white;
}

.bot-input-area {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.75rem;
}

#bot-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
}

/* Floating Action Bar (Mobile Premium) */
#thumb-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1500;
    box-shadow: var(--shadow-premium);
}

#thumb-bar a, #thumb-bar div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

#thumb-bar a:hover, #thumb-bar div:hover {
    background: rgba(255,255,255,0.1);
}

#thumb-bar .thumb-bar-email {
    background: var(--primary);
    color: #fff;
}

#thumb-bar .thumb-bar-email:hover {
    background: var(--primary-light);
}

@media (max-width: 520px) {
    #thumb-bar {
        flex-wrap: wrap;
        justify-content: center;
        max-width: calc(100vw - 1.25rem);
        border-radius: 24px;
        padding: 0.65rem 1rem;
    }
    #thumb-bar a, #thumb-bar div {
        font-size: 0.62rem;
        padding: 0.45rem 0.7rem;
    }
}


/* ==========================================================================
   GOD-MODE GALLERY: PROOF OF PERFORMANCE
   ========================================================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: rgba(8, 16, 28, 0.6);
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-phase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.phase-meta {
    padding-right: 2rem;
}

.phase-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 5px;
    margin-bottom: 1rem;
    display: block;
}

.phase-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.phase-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

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

.img-artifact {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #111;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}

.img-artifact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.img-artifact:hover img {
    transform: scale(1.05);
}

.img-artifact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0.5;
}

@media (max-width: 992px) {
    .gallery-phase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .phase-meta {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .img-trinity {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .img-artifact {
        aspect-ratio: 16/9;
    }
    #bot-container {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 90px;
    }
}



/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #070f1a;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.mobile-nav-links a {
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .nav-content { justify-content: space-between !important; width: 100%; }
}

@media (max-width: 768px) {
    .contact-info a:last-child { display: none; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   FORM STATES
   ========================================================================== */
.form-input.error {
    border-color: #e05050 !important;
}

.form-error-msg {
    color: #e05050;
    font-size: 0.75rem;
    display: block;
    margin-top: 4px;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary) !important;
    background: rgba(255,255,255,0.05) !important;
}

/* ==========================================================================
   UTILITY CLASSES (replace common inline styles)
   ========================================================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }

.label-eyebrow {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.section-pad {
    padding: var(--section-padding) 0;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stats-row {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    flex-wrap: wrap;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* ==========================================================================
   SERVICE PAGE STYLES
   ========================================================================== */
.service-page-hero {
    padding: var(--section-padding) 0;
}

.qa-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.qa-block:last-child {
    border-bottom: none;
}

.qa-block h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
}

.qa-block p {
    color: var(--text-muted);
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-pill i {
    color: var(--primary);
}

/* ==========================================================================
   NEIGHBORHOOD PAGE STYLES
   ========================================================================== */
.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.neighborhood-card {
    text-align: center;
}

.neighborhood-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.neighborhood-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.75rem;
}

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

/* ==========================================================================
   BLUE THEME EXTRAS: spotlight grid, bright process, FAQ on light
   ========================================================================== */
.spotlight-ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.spotlight-job-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.section-process-bright {
    background: linear-gradient(180deg, #f7fafc 0%, #e8f0fa 55%, #dfeaf6 100%);
    color: var(--text-dark);
    border-top: 1px solid rgba(30, 90, 154, 0.12);
    border-bottom: 1px solid rgba(30, 90, 154, 0.12);
}

.label-eyebrow-dark {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.section-title-on-light {
    color: var(--text-dark);
    text-shadow: none;
}

.process-lead {
    color: #3d5266;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.val-card-bright {
    text-align: center;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: 0 16px 40px rgba(15, 36, 56, 0.08);
    border: 1px solid rgba(30, 90, 154, 0.1);
    transition: var(--transition);
}

.val-card-bright:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 36, 56, 0.12);
    border-color: rgba(30, 90, 154, 0.22);
}

.process-step-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 1.25rem;
    font-family: var(--font-header);
}

.val-title-dark {
    color: var(--text-dark);
}

.process-card-text {
    color: #4a5f78;
    font-size: 1rem;
    line-height: 1.65;
}

.process-card-text a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.process-card-text a:hover {
    text-decoration: underline;
}

#faq .faq-item {
    border-bottom: 1px solid rgba(15, 61, 102, 0.12);
    padding: 1rem 0;
}

#faq .faq-item:first-of-type {
    border-top: 1px solid rgba(15, 61, 102, 0.12);
}

.geo-region-strip {
    background: rgba(8, 16, 28, 0.85) !important;
    border-top: 1px solid var(--glass-border) !important;
}
