:root {
    --primary-navy: #1B263B;
    --primary-light: #415A77;
    --accent-orange: #F48C06;
    --accent-gold: #FFB703;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-main: #0D1B2A;
    --text-muted: #64748B;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glass: rgba(255, 255, 255, 0.8);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.header {
    padding: 14px 0;
    background: transparent;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: none;
}

@media (max-width: 768px) {
    .header { display: none; }
}

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

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1.5px;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
}

.logo-v {
    background: var(--accent-orange);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 8px;
    font-size: 1.2rem;
    transform: rotate(-5deg);
}

.logo-img {
    height: 108px;
    width: auto;
    display: block;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.logo-img:hover {
    opacity: 1;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover { color: #ffffff; }

/* --- Urgency Banner --- */
.urgency-banner {
    background: linear-gradient(135deg, #064E3B 0%, #059669 100%);
    color: white;
    padding: 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1100;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .urgency-banner { padding: 0 12px; font-size: 0.74rem; height: 42px; }
}

.urgency-banner span { color: white; font-weight: 900; }

/* Pulsing Green Live Beacon */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.urgency-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    white-space: nowrap;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.mobile-hero-cta {
    display: none; /* Hide on desktop by default */
}

.btn-primary { background: var(--primary-navy); color: white; }
@media (hover: hover) {
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(27, 38, 59, 0.3); }
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E67E00 100%);
    color: white;
    width: 100%;
    font-size: 1.1rem;
    padding: 20px;
    box-shadow: 0 4px 14px 0 rgba(244, 140, 6, 0.39);
}

@media (hover: hover) {
    .btn-cta:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(244, 140, 6, 0.45); }
}

/* --- Hero Section --- */
.hero {
    min-height: calc(100vh - 128px);
    display: flex;
    align-items: center;
    padding: 140px 0 80px 0;
    background-image: linear-gradient(to right, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.8) 50%, rgba(13, 27, 42, 0.25) 100%), 
                      url('assets/images/service-area/hero-clifton-va-timber-estate.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: #ffffff !important;
}

.hero .hero-lead {
    color: #cbd5e1 !important;
}

.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(244, 140, 6, 0.4);
    color: var(--accent-orange);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    background: rgba(244, 140, 6, 0.08);
}

h1 {
    font-size: 4.2rem;
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--primary-navy);
}

.hero-lead {
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.4;
}

.trust-item {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: var(--primary-navy);
}

.trust-item .icon {
    width: 24px;
    height: 24px;
    background: #DCFCE7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.7rem;
}

/* --- Booking Card --- */
.booking-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.card-header h2 { font-size: 1.75rem; letter-spacing: -1px; margin-bottom: 8px; }
.card-header p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }

.t-shirt-sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.size-btn {
    padding: 20px 8px;
    border: 2px solid #F1F5F9;
    background: #F8FAFC;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
    color: var(--primary-navy);
}

.size-btn:hover { border-color: var(--primary-light); background: white; }

/* --- Pillars --- */
.pillars { padding: 120px 0; background: var(--bg-white); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { font-size: 3rem; font-weight: 900; letter-spacing: -2px; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar-card {
    padding: 48px 32px;
    border-radius: 24px;
    background: var(--bg-light);
    transition: transform 0.3s;
    border: 1px solid transparent;
}

@media (hover: hover) {
    .pillar-card:hover { transform: translateY(-10px); background: white; border-color: #F1F5F9; box-shadow: var(--shadow-md); }
}
.pillar-icon { font-size: 3.5rem; margin-bottom: 24px; display: block; }
.pillar-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.pillar-card p { font-size: 1rem; color: var(--text-muted); }

/* --- Recent Local Activity --- */
.local-activity {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid #F1F5F9;
}

.activity-strip {
    display: flex;
    align-items: center;
    background: #F8FAFC;
    padding: 20px 30px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.activity-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-orange);
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #E2E8F0;
    white-space: nowrap;
}

.activity-items {
    display: flex;
    gap: 40px;
    overflow: hidden;
    white-space: nowrap;
}

.activity-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Home Prep Section --- */
.prep-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.prep-card {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

@media (hover: hover) {
    .prep-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }
}

.prep-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.prep-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

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

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-md);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
    .gallery-card:hover .gallery-image {
        transform: scale(1.1);
    }
}

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, transparent 100%);
    color: white;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--accent-orange);
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.4;
}

.gallery-link {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 4px;
}

/* --- Peace of Mind FAQ --- */
.faq {
    padding: 120px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid #F1F5F9;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .faq-item:hover {
        border-color: rgba(244, 140, 6, 0.3);
        box-shadow: var(--shadow-sm);
    }
}

.faq-item.active {
    background: white;
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-orange);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg); /* Turns '+' into 'x' */
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Big enough to fit the answer */
    opacity: 1;
    padding-bottom: 24px;
}

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

/* --- Footer Grid --- */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}


@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .activity-strip { border-radius: 20px; flex-direction: column; text-align: center; }
    .activity-title { border-right: none; padding-right: 0; margin-right: 0; margin-bottom: 15px; }
    .activity-items { flex-direction: column; gap: 15px; align-items: center; }
}

/* --- Real Result Showcase --- */
.results-showcase {
    padding: 120px 0;
    background: #0F172A;
    color: white;
}

.results-showcase .section-header h2 {
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
    .result-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-orange);
    }
}

.result-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.result-info {
    padding: 32px;
    text-align: center;
}

.result-info h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--accent-orange);
}

.result-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

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

/* --- Comparison --- */
.comparison { padding: 120px 0; background: var(--bg-light); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 64px; }
.comparison-card { padding: 48px; border-radius: 24px; background: white; border: 1px solid #E2E8F0; }
.velocity-way { background: var(--primary-navy); color: white; border: none; transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-lg); }
.velocity-way h3 { color: var(--accent-orange); }
.comparison-card ul { list-style: none; margin-top: 32px; }
.comparison-card li { margin-bottom: 20px; display: flex; align-items: center; font-weight: 500; }
.comparison-card span { margin-right: 16px; font-weight: 800; font-size: 1.2rem; }

/* --- Testimonials --- */
.testimonials { 
    padding: 120px 0; 
    background: var(--bg-white); 
    overflow: hidden; 
}

.marquee-container {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 40s linear infinite;
    white-space: nowrap;
}

.marquee-track-reverse {
    display: flex;
    gap: 30px;
    animation: scroll-right 40s linear infinite;
    white-space: nowrap;
}
@media (hover: hover) {
    .marquee-container:hover .marquee-track,
    .marquee-container:hover .marquee-track-reverse {
        animation-play-state: paused;
    }
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    width: 450px;
    flex-shrink: 0;
    white-space: normal;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
}

@media (hover: hover) {
    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        background: white;
        box-shadow: var(--shadow-lg);
        border-color: var(--accent-orange);
    }
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px; left: 20px;
    font-size: 4rem;
    color: var(--accent-orange);
    opacity: 0.1;
    font-family: serif;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@keyframes scroll-right {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .testimonial-card { width: 320px; padding: 30px; }
    .marquee-track, .marquee-track-reverse { animation-duration: 25s; }
}

/* --- Owner --- */
.owner { padding: 120px 0; background: var(--bg-light); }
.owner-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: center; }
.photo-box {
    background: linear-gradient(45deg, #1B263B, #415A77);
    aspect-ratio: 4/5;
    border-radius: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    h1 { font-size: 3.2rem; }
    .hero-grid, .comparison-grid, .owner-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .trust-item { justify-content: center; }
    .velocity-way { transform: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 12px !important; }
    .pillars-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
    .nav-links { display: none; }
    
    /* Reclaim "Above-the-Fold" Space on Mobile Hero */
    .hero { 
        padding: 40px 0; 
        min-height: calc(100dvh - 80px); /* Full screen minus mobile header height */
        display: flex;
        align-items: center;
        background-image: linear-gradient(to bottom, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.75) 100%), 
                          url('assets/images/service-area/hero-clifton-va-timber-estate.webp');
        background-size: cover;
        background-position: center;
    }
    .hero-grid { 
        gap: 0; 
        display: block; 
        width: 100%;
    }
    h1 { font-size: 2rem; letter-spacing: -1.5px; margin-bottom: 12px; line-height: 1.1; }
    .badge-outline { margin-bottom: 12px; font-size: 0.65rem; padding: 4px 12px; }
    .hero-lead { font-size: 1rem; margin-bottom: 20px; line-height: 1.4; }
    
    .mobile-hero-cta { 
        display: block !important; 
        margin-top: 16px; 
        box-shadow: 0 10px 15px -3px rgba(244, 140, 6, 0.4); 
    }
    
    .booking-card { display: none !important; } /* Completely hide bulky card on mobile */
    .hero-content .trust-points { display: none; }
    .hero-services-grid { justify-content: center !important; margin-top: 16px !important; }
    
    /* Compact elements for edge-to-edge */
    .pillar-card { padding: 30px 16px; border-radius: 16px; }
    .prep-card { padding: 30px 16px; border-radius: 16px; }
    .faq-item { border-radius: 12px; }
    .faq-question { padding: 16px; }
    .faq-answer { padding: 0 16px; }
    .faq-item.active .faq-answer { padding-bottom: 16px; }
    .owner-grid { gap: 40px; }
    .photo-box { border-radius: 16px; }
}

/* --- Trust Banner --- */
.trust-banner {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    border-top: 1px solid #E2E8F0;
    padding: 30px 0;
}
.trust-banner-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: center;
}
.trust-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    width: 100%;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: white;
    border: 1px solid #E2E8F0;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
    .trust-chip:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-light);
    }
}
@media (max-width: 968px) {
    .trust-banner { padding: 24px 0; }
    .trust-banner-title { margin-bottom: 16px; font-size: 0.75rem; }
    .trust-links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .trust-chip {
        width: 100%;
        padding: 12px 16px;
        justify-content: flex-start;
        border-radius: 16px;
    }
    .trust-chip:last-child {
        grid-column: span 2;
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .trust-links-grid {
        grid-template-columns: 1fr;
    }
    .trust-chip {
        justify-content: flex-start;
    }
    .trust-chip:last-child {
        grid-column: span 1;
        justify-content: flex-start;
    }
}

/* --- Scroll-Activated Floating Mobile CTA --- */
.floating-cta-container {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 450px;
    background: white;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    padding: 12px 18px;
    border-radius: 20px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-cta-container.visible {
    bottom: 20px;
}
@media (max-width: 768px) {
    .floating-cta-container {
        display: flex;
    }
}

/* --- Direct Contact Pill --- */
.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    margin-right: 16px;
    backdrop-filter: blur(8px);
}

.contact-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-orange);
}

.contact-pill .divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* --- Hero Service Pills --- */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-navy);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .hero-pill:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-orange);
        color: var(--accent-orange);
    }
}

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1200;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Mobile Menu Dropdown --- */
.mobile-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.mobile-menu-dropdown a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s ease;
}

.mobile-menu-dropdown a:hover {
    color: var(--accent-orange);
}

/* --- Media Queries for Mobile Header --- */
@media (max-width: 768px) {
    .header {
        display: block !important;
        position: absolute !important;
        top: 42px !important; /* sits below the 42px mobile urgency banner */
    }
    
    .header-cta .contact-pill,
    .header-cta .btn-primary {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 80px !important;
    }
    
    .mobile-menu-dropdown.active {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
