/* ══════════════════════════════════════════════════════
   BigBullMovers Homepage Styles
   Extracted from index.php – keep in sync
   ══════════════════════════════════════════════════════ */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.custom-shadow {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}
* {
    box-sizing: border-box;
}
html {
    background: #002045;
    overflow-x: clip;
    margin: 0;
    padding: 0;
}
body {
    background: #002045;
    margin: 0;
    padding: 0;
    overflow-x: clip;
}
html:has(.page-box) {
    background: #002045;
}
html:has(.page-box) body {
    background: #002045;
}

/* ── Full-width Layout ── */
.page-box {
    max-width: 100%;
    margin: 0 auto;
    background: #f7fafc;
    position: relative;
    min-height: 100vh;
    overflow-x: clip;
}
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Site Shell (unified container) ── */
.site-shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 768px) {
    .site-shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .site-shell {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ── Brand Logo ── */
.brand-logo-container {
    position: absolute;
    top: 0;
    left: 1rem;
    width: 120px;
    height: 135px;
    background-color: #002045;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    z-index: 60;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
}
.brand-logo-container .brand-text { display: block; }
.brand-logo-container .brand-img { width: 72px; height: 72px; margin-bottom: 0.15rem; }

/* Inline mobile logo — hidden on desktop by default */
.mobile-brand-inline { display: none; }
.mobile-cta-center { display: none; }

/* ── Header ── */
.site-header {
    background: #001a38 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
}
.site-header .site-shell {
    position: relative;
}
.top-tier, .desktop-nav {
    padding-inline: 0;
}
.desktop-nav {
    position: relative;
}

/* ── Mobile toggle ── */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mobile-menu-toggle .material-symbols-outlined {
    font-size: 26px;
    color: #ffffff;
}

/* ── Mobile slide-in overlay ── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
}
.mobile-menu-overlay.open {
    pointer-events: auto;
    visibility: visible;
}
.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    transition: opacity .35s ease;
}
.mobile-menu-overlay.open .mobile-menu-backdrop {
    opacity: 1;
}
.mobile-menu-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #002045;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu-overlay.open .mobile-menu-drawer {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.mobile-menu-logo img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
}
.mobile-menu-logo-text {
    display: flex;
    flex-direction: column;
}
.mobile-menu-brand {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Manrope', sans-serif;
}
.mobile-menu-sub {
    color: #adc7f7;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 2px;
}
.mobile-menu-header button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.mobile-menu-header button:hover {
    background: rgba(255,255,255,.18);
}
.mobile-menu-links {
    flex: 1;
    padding: 0 0 24px;
}
.mobile-menu-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0 24px;
    transition: background 0.2s;
}
.mobile-menu-links a:hover {
    background: rgba(255,255,255,.06);
}
.mobile-menu-cta {
    padding: 16px 24px 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s;
}
.mobile-menu-cta .menu-cta-quote {
    background: #b52426;
    color: #fff;
    margin-bottom: 10px;
}
.mobile-menu-cta .menu-cta-quote:hover { background: #a12022; }
.mobile-menu-cta .menu-cta-call {
    background: rgba(181,36,38,.12);
    color: #b52426;
    border: 1px solid rgba(181,36,38,.25);
}
.mobile-menu-cta .menu-cta-call:hover { background: rgba(181,36,38,.2); }
body.menu-open { overflow: hidden; }

/* ── Hero ── */
.hero-section {
    padding-top: 2.5rem;
    min-height: 100vh;
    height: auto;
    width: 100%;
}

/* ── Hero Slideshow ── */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    height: 100%;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,32,69,.55);
    width: 100%;
    height: 100%;
}
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: background .3s, transform .3s;
    padding: 0;
}
.hero-dot.active {
    background: #c31e2b;
    transform: scale(1.25);
}

/* ── Mega Dropdown (Frido full-width style) ── */
.mega-dropdown-trigger {
    position: static;
}
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 150px;
    right: 0;
    margin-top: 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,.06);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.10);
    padding: 28px 32px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 100;
    pointer-events: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
/* JS-controlled open state only */
.mega-dropdown-trigger.dd-open .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mega-dropdown-grid {
    display: grid;
    gap: 6px;
}
.mega-dropdown-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.mega-dropdown-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mega-dropdown-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.mega-dropdown-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.mega-dropdown-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 10px;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.mega-dropdown-grid a:hover {
    background: #f3f4f6;
    color: #002045;
}
/* Icon container inside dropdown links */
.dd-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
}
.mega-dropdown-grid a:hover .dd-icon {
    background: #e5e7eb;
}
.dd-icon .material-symbols-outlined {
    font-size: 20px;
    color: #002045;
}
/* Section headings inside dropdown */
.mega-dropdown-heading {
    grid-column: 1 / -1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
    padding: 12px 14px 4px;
    margin-top: 4px;
}
.mega-dropdown-heading:first-child { margin-top: 0; padding-top: 0; }
.mega-dropdown-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

/* ── Mobile Accordion (inside slide-in) ── */
.mobile-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0 24px;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    transition: background .2s;
}
.mobile-accordion-toggle:hover { background: rgba(255,255,255,.06); }
.mobile-accordion-toggle .material-symbols-outlined {
    font-size: 20px;
    transition: transform .25s ease;
}
.mobile-accordion-toggle.acc-open .material-symbols-outlined {
    transform: rotate(180deg);
}
.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: rgba(0,0,0,.18);
}
.mobile-accordion-panel.acc-open {
    max-height: 2000px;
}
.mobile-accordion-panel .acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 12px 12px 16px;
}
.mobile-accordion-panel .acc-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 0;
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 4px 8px;
    gap: 6px;
    transition: background .2s;
}
.mobile-accordion-panel .acc-grid a:hover {
    background: rgba(255,255,255,.08);
    color: #ffffff;
}
/* Icon container in mobile accordion */
.acc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.acc-icon .material-symbols-outlined {
    font-size: 20px;
    color: #ffffff;
}

/* ── Experience Carousel (hidden on desktop) ── */
.exp-carousel-dots {
    display: none;
}

/* ── Footer ── */
.site-footer {
    overflow: hidden;
}
.site-footer-grid {
    gap: clamp(1rem, 3vw, 3rem);
}
.site-footer .footer-btn {
    min-height: 44px;
}


/* ══════════════════════════════════════════════════════
   DESKTOP-FIRST:  ≥ 992 px  — hide mobile-only items
   ══════════════════════════════════════════════════════ */
@media (min-width: 992px) {
    .mobile-call,
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-brand-inline,
    .mobile-cta-center {
        display: none !important;
    }
    .mobile-nav-right {
        display: contents;
    }
}

/* ══════════════════════════════════════════════════════
   TABLET & BELOW  ≤ 991 px  (iPad landscape & down)
   ══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    /* ── Header ── */
    .top-tier { display: none !important; }
    .mobile-brand-inline { display: none !important; }

    /* Scale the floating logo down for mobile */
    .brand-logo-container {
        width: 72px;
        height: 78px;
        padding: 0.3rem;
        left: 1rem;
    }
    .brand-logo-container .brand-img { width: 36px; height: 36px; margin-bottom: 0.1rem; }
    .brand-logo-container .brand-text span:first-child { font-size: 8px; }
    .brand-logo-container .brand-text span:last-child { font-size: 5px; }

    .desktop-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
    }
    .desktop-links, .desktop-divider { display: none !important; }
    .desktop-quote, .mobile-call { display: none !important; }
    .mobile-cta-center {
        display: inline-flex;
    }
    .mobile-cta-center a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #b52426;
        color: #ffffff;
        padding: 8px 16px;
        border-radius: 10px;
        font-weight: 800;
        font-size: 12px;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 2px 6px rgba(181,36,38,.3);
        border: 1px solid rgba(181,36,38,.4);
    }
    .mobile-cta-center a .material-symbols-outlined {
        font-size: 16px;
    }
    .mobile-menu-toggle { display: inline-flex; }
    .mobile-nav-right {
        display: none;
    }

    /* ── Hero ── */
    .hero-section { 
        padding-top: 3rem; 
        padding-bottom: 3rem; 
        min-height: 70vh;
        position: relative;
    }
    .hero-slideshow {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-slide img { 
        object-position: center 40%;
        width: 100%;
        height: 100%;
    }

    /* ── Experience cards: less extreme ratio on tablet ── */
    .experience-card { aspect-ratio: 3/4; }

    /* ── Experience Carousel ── */
    .exp-carousel-wrapper {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .exp-carousel-wrapper::-webkit-scrollbar { display: none; }
    .exp-carousel-wrapper .experience-card {
        display: block !important;
        flex: 0 0 calc(50% - 6px);
        scroll-snap-align: start;
        margin-top: 0 !important;
        aspect-ratio: 9/16;
    }
    .exp-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }
    .exp-carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0,32,69,.2);
        border: none;
        cursor: pointer;
        transition: background .3s, transform .3s;
        padding: 0;
    }
    .exp-carousel-dot.active {
        background: #002045;
        transform: scale(1.3);
    }

    /* ── Section spacing ── */
    section { padding-top: 3.5rem; padding-bottom: 3.5rem; }

    /* ── Services ── */
    .services-grid { grid-template-columns: 1fr 1fr !important; }
    .services-grid > div:first-child { grid-column: span 2; }
    .services-grid .service-card { min-height: 280px; }
}

/* ══════════════════════════════════════════════════════
   TABLET-PORTRAIT  ≤ 768 px  (iPad portrait & phablets)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 65vh;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        position: relative;
    }
    .hero-slideshow {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-slide img {
        object-position: center 35%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-section h1 { font-size: 2.5rem; }

    /* Hero form side-by-side → stacked */
    .hero-form-card { max-width: 100%; }

    /* Experiences grid: 2 cols only */
    .grid.grid-cols-2 { gap: 0.625rem; }

    /* Reviews: stack */
    .grid.grid-cols-1.md\:grid-cols-3 { grid-template-columns: 1fr; }

    /* Footer: 2-column */
    .site-footer-grid { grid-template-columns: 1fr 1fr !important; }
    .site-footer-grid > div:first-child,
    .site-footer-grid > div:last-child { grid-column: span 2; }
}

/* ══════════════════════════════════════════════════════
   LARGE PHONES  ≤ 576 px
   ══════════════════════════════════════════════════════ */
@media (max-width: 576px) {
    /* ── Shell ── */
    .site-shell { padding-left: 0.75rem; padding-right: 0.75rem; }

    /* ── Header ── */
    .desktop-nav { padding: 8px 0; }
    .brand-logo-container {
        width: 95px;
        height: 95px;
        padding: 0.6rem;
        left: 0.75rem;
    }
    .brand-logo-container .brand-img { width: 36px; height: 36px; }
    .brand-logo-container .brand-text span:first-child { font-size: 10px; }
    .brand-logo-container .brand-text span:last-child { font-size: 6px; }
    .mobile-cta-center a { padding: 7px 12px; font-size: 11px; }

    /* ── Hero ── */
    .hero-section { 
        padding-top: 2rem; 
        padding-bottom: 2rem; 
        min-height: 70vh;
        height: auto;
        position: relative;
        width: 100%;
    }
    .hero-slideshow {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    .hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    .hero-slide.active {
        opacity: 1;
    }
    .hero-slide img { 
        object-position: center 30%;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }
    .hero-slide-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,32,69,.55);
    }
    .hero-section h1 { font-size: 2rem; line-height: 1.15; }
    .hero-section p { font-size: 0.95rem; }
    .hero-section .flex-wrap { flex-direction: column; }
    .hero-section .flex-wrap button,
    .hero-section .flex-wrap a { width: 100%; justify-content: center; }

    /* ── Experience cards ── */
    .experience-card { aspect-ratio: 2/3; }

    /* ── Enquiry form ── */
    .hero-form-card { border-radius: 1rem; }
    .hero-form-card .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
    }
    .hero-form-card .grid-cols-3 button { padding: 0.5rem 0.25rem; }

    /* ── Services cards ── */
    .services-grid { grid-template-columns: 1fr !important; }
    .services-grid > div:first-child { grid-column: span 1; }
    .service-card { height: 260px !important; }

    /* ── Why Choose Us ── */
    .grid.grid-cols-1.sm\:grid-cols-2 { grid-template-columns: 1fr !important; }

    /* ── About badge ── */
    .about-badge {
        position: relative; bottom: auto; right: auto;
        margin-top: 1rem; display: inline-flex;
    }

    /* ── Section spacing ── */
    section { padding-top: 2.5rem; padding-bottom: 2.5rem; }

    /* ── Footer ── */
    .site-footer-grid { gap: 1.25rem; grid-template-columns: 1fr !important; }
    .site-footer-grid > div:first-child,
    .site-footer-grid > div:last-child { grid-column: span 1; }
    .site-footer h4 { margin-bottom: 0.75rem; }
    .site-footer ul { gap: 0.5rem; }
    .site-footer .footer-btn { min-height: 42px; font-size: 13px; }

    /* ── CTA section ── */
    .text-4xl.md\:text-6xl { font-size: 1.875rem; }
}

/* ══════════════════════════════════════════════════════
   SMALL PHONES  ≤ 430 px
   ══════════════════════════════════════════════════════ */
@media (max-width: 430px) {
    .hero-section {
        min-height: 65vh;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        position: relative;
        width: 100%;
    }
    .hero-slideshow {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-slide img {
        object-position: center 30%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-section h1 { font-size: 1.75rem; }
    .experience-card { aspect-ratio: 2/3; }
    .brand-logo-container {
        width: 85px;
        height: 85px;
        padding: 0.5rem;
        left: 0.75rem;
    }
    .brand-logo-container .brand-img { width: 32px; height: 32px; }
    .brand-logo-container .brand-text span:first-child { font-size: 9px; }
    .brand-logo-container .brand-text span:last-child { font-size: 5.5px; }
    .mobile-cta-center a { padding: 6px 10px; font-size: 10px; border-radius: 8px; }

    /* Tighter card heights */
    .service-card { height: 240px !important; }

    /* Form grid stays 3-col but tighter */
    .hero-form-card .grid-cols-3 button { padding: 0.4rem 0.15rem; }
    .hero-form-card .grid-cols-3 button .material-symbols-outlined { font-size: 18px; }
    .hero-form-card .grid-cols-3 button span:last-child { font-size: 9px; }
}

/* ══════════════════════════════════════════════════════
   EXTRA-SMALL  ≤ 360 px
   ══════════════════════════════════════════════════════ */
@media (max-width: 360px) {
    .site-shell { padding-left: 0.5rem; padding-right: 0.5rem; }

    .hero-section {
        min-height: 60vh;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        position: relative;
        width: 100%;
    }
    .hero-slideshow {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-slide img {
        object-position: center 25%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-section h1 { font-size: 1.5rem; }
    .hero-section p { font-size: 0.875rem; }
    .experience-card { aspect-ratio: 3/4; }

    .brand-logo-container {
        width: 75px;
        height: 75px;
        padding: 0.4rem;
        left: 0.5rem;
    }
    .brand-logo-container .brand-img { width: 28px; height: 28px; }
    .brand-logo-container .brand-text span:first-child { font-size: 8px; }
    .brand-logo-container .brand-text span:last-child { font-size: 5px; }

    .mobile-cta-center a { padding: 5px 8px; font-size: 9px; border-radius: 8px; }

    /* Form grid falls to 2 columns */
    .hero-form-card .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }

    /* Experiences grid tighter */
    .grid.grid-cols-2 { gap: 0.375rem; }

    .service-card { height: 200px !important; }

    /* CTA phone number */
    .text-3xl.md\:text-4xl { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════
   MID-DESKTOP  992–1199 px  — constrain mega dropdown
   ══════════════════════════════════════════════════════ */
@media (min-width: 992px) and (max-width: 1199px) {
    .mega-dropdown {
        padding: 20px 20px 24px;
        left: 0;
    }
    .mega-dropdown-grid.cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .mega-dropdown-grid.cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .mega-dropdown-grid a {
        font-size: 12.5px;
        padding: 8px 8px;
        gap: 8px;
    }
    .dd-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }
    .dd-icon .material-symbols-outlined {
        font-size: 17px;
    }
    .mega-dropdown-heading {
        font-size: 10px;
        padding: 8px 10px 3px;
    }
}

/* ══════════════════════════════════════════════════════
   LARGE DESKTOP  ≥ 1440 px
   ══════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
    .site-shell { max-width: 1320px; padding-left: 2.5rem; padding-right: 2.5rem; }
    .brand-logo-container { left: 2.5rem; width: 130px; height: 135px; }
    .brand-logo-container .brand-img { width: 60px; height: 60px; }
    .mega-dropdown { left: 180px; }
    .hero-section h1 { font-size: 5rem; }
    .service-card.md\:col-span-2 { height: 460px !important; }
    .service-card { height: 420px !important; }
}

/* ══════════════════════════════════════════════════════
   SERVICE PAGE STYLES
   ══════════════════════════════════════════════════════ */

/* svc-hero min height */
.svc-hero {
    min-height: 420px;
}

/* Prose content headings */
.prose-content h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #002045;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.prose-content h2:first-child {
    margin-top: 0;
}
.prose-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #002045;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* bg-surface-dim fallback */
.bg-surface-dim {
    background-color: #f1f4f6;
}

/* Prose content — body text for service/content pages */
.prose-content p {
    color: #3b4a5a;
    line-height: 1.8;
    font-size: 0.9375rem;
}
.prose-content a {
    text-decoration: none;
    transition: color .2s;
}
.prose-content a:hover {
    text-decoration: underline;
}
.prose-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.prose-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .5rem;
    color: #3b4a5a;
    line-height: 1.7;
    font-size: 0.9375rem;
}
.prose-content ul li::before {
    content: '\e86c'; /* check_circle */
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 1;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #b52426;
    font-size: 1.1rem;
}

/* FAQ details marker removal */
.svc-faq details summary::-webkit-details-marker,
.svc-faq details summary::marker {
    display: none;
    content: '';
}
.svc-faq details summary {
    list-style: none;
}

/* ══════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════ */
@media print {
    .site-header, .mobile-menu-overlay, .hero-form-card { display: none; }
    .hero-section { min-height: auto; padding: 2rem 0; }
    section { break-inside: avoid; }
}

/* ══════════════════════════════════════════════════════
   LEGACY-PAGE OVERRIDES
   Scoped to body:not(:has(.page-box)):not(.page-redesigned)
   so they ONLY fire on old service/location pages that
   load style.css. The homepage (.page-box) and redesigned
   pages (.page-redesigned) keep pure Tailwind styling.
   ══════════════════════════════════════════════════════ */

/* ── Reset old ".header" position:fixed conflict ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-header.site-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    z-index: 50 !important;
    background: #001a38 !important;
    width: 100% !important;
    transition: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    float: none !important;
}

/* ── Kill old .header-wrapper & .topbar from leaking ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-header .header-wrapper,
body:not(:has(.page-box)):not(.page-redesigned) .site-header .topbar,
body:not(:has(.page-box)):not(.page-redesigned) .site-header .container-m-30,
body:not(:has(.page-box)):not(.page-redesigned) .site-header #main-menu,
body:not(:has(.page-box)):not(.page-redesigned) .site-header .navbar {
    all: unset;
    display: contents;
}

/* ── Link overrides inside new header ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-header a,
body:not(:has(.page-box)):not(.page-redesigned) .site-header a:hover,
body:not(:has(.page-box)):not(.page-redesigned) .site-header a:focus,
body:not(:has(.page-box)):not(.page-redesigned) .site-header a:visited {
    color: inherit !important;
    text-decoration: none !important;
    outline: none !important;
    transition: color 0.15s ease !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .top-tier a {
    color: rgba(255,255,255,.8) !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .top-tier a:hover {
    color: #ffffff !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .desktop-links a {
    color: #ffffff !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .desktop-links a:hover {
    color: rgba(255,255,255,.7) !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .desktop-quote {
    color: #ffffff !important;
    background: #b52426 !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .desktop-quote:hover {
    background: #a12022 !important;
}

/* ── Mega dropdown link overrides ── */
body:not(:has(.page-box)):not(.page-redesigned) .mega-dropdown a,
body:not(:has(.page-box)):not(.page-redesigned) .mega-dropdown a:hover,
body:not(:has(.page-box)):not(.page-redesigned) .mega-dropdown a:focus {
    text-decoration: none !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .mega-dropdown a {
    color: #374151 !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .mega-dropdown a:hover {
    color: #002045 !important;
    background: #f3f4f6 !important;
}

/* ── Mobile menu overlay overrides ── */
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay,
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay * {
    box-sizing: border-box !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay a,
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay a:hover,
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay a:focus,
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay button {
    text-decoration: none !important;
    outline: none !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay .mobile-menu-links a {
    color: #ffffff !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay .mobile-menu-links a:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,.06) !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay .acc-grid a {
    color: rgba(255,255,255,.9) !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .mobile-menu-overlay .acc-grid a:hover {
    color: #ffffff !important;
}

/* ── Footer overrides (old .page-section & links) ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-footer.site-footer {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    background: #00152e !important;
    padding-top: 3rem !important;
    overflow: visible !important;
    border: none !important;
    float: none !important;
    font-size: 14px !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer a,
body:not(:has(.page-box)):not(.page-redesigned) .site-footer a:focus {
    text-decoration: none !important;
    outline: none !important;
    transition: color 0.15s ease !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer ul a {
    color: #9ca3af !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer ul a:hover {
    color: #ffffff !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer h4 {
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-top: 0 !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer p {
    margin: 0 !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer .footer-btn {
    color: #ffffff !important;
    background: #b52426 !important;
    text-decoration: none !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer .footer-btn:hover {
    background: #a12022 !important;
}

/* ── Fix: brand logo container on old pages ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-header .brand-logo-container {
    position: absolute !important;
    background-color: #002045 !important;
    display: flex !important;
    z-index: 60 !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .brand-logo-container .brand-img {
    display: flex !important;
    background: #ffffff !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-header .brand-logo-container .brand-img img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* ── Ensure site-shell works inside old wrapper ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-header .site-shell,
body:not(:has(.page-box)):not(.page-redesigned) .site-footer .site-shell {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    position: relative !important;
    width: 100% !important;
    float: none !important;
}
@media (min-width: 768px) {
    body:not(:has(.page-box)):not(.page-redesigned) .site-header .site-shell,
    body:not(:has(.page-box)):not(.page-redesigned) .site-footer .site-shell {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}
@media (min-width: 1024px) {
    body:not(:has(.page-box)):not(.page-redesigned) .site-header .site-shell,
    body:not(:has(.page-box)):not(.page-redesigned) .site-footer .site-shell {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* ── Bootstrap nav reset inside our header ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-header .navbar,
body:not(:has(.page-box)):not(.page-redesigned) .site-header .navbar-default,
body:not(:has(.page-box)):not(.page-redesigned) .site-header .navbar-collapse,
body:not(:has(.page-box)):not(.page-redesigned) .site-header .navbar-nav,
body:not(:has(.page-box)):not(.page-redesigned) .site-header .nav {
    all: unset !important;
    display: contents !important;
}

/* ── Old footer bottom bar ── */
body:not(:has(.page-box)):not(.page-redesigned) .site-footer .bg-\[#000e1f\] {
    background: #000e1f !important;
}
body:not(:has(.page-box)):not(.page-redesigned) .site-footer .bg-\[#000e1f\] p {
    color: #6b7280 !important;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE POLISH — Cross-page fixes
   ══════════════════════════════════════════════════════ */

/* ── Mobile accordion grid: 2 cols on small phones ── */
@media (max-width: 479px) {
    .mobile-accordion-panel .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Service/location/blog hero breadcrumbs: prevent overflow ── */
.svc-hero nav,
nav[class*="flex"][class*="items-center"][class*="text-white"] {
    flex-wrap: wrap;
}
@media (max-width: 480px) {
    .svc-hero nav,
    nav[class*="flex"][class*="items-center"][class*="text-white"] {
        font-size: 12px;
    }
}

/* ── Service page feature card grid — tighter padding small screens ── */
@media (max-width: 480px) {
    .svc-feature-card { padding: 1rem; }
    .svc-faq details summary { padding: 1rem; font-size: 0.9375rem; }
    .svc-faq details > div { padding: 0 1rem 1rem; }
}

/* ── Blog/article prose — responsive font scaling ── */
@media (max-width: 480px) {
    .prose-content h2 { font-size: 1.25rem; }
    .prose-content h3 { font-size: 1.125rem; }
    .prose-content p,
    .prose-content li { font-size: 0.875rem; }
}

/* ── Contact map responsive height ── */
@media (max-width: 576px) {
    .contact-map-container { height: 280px !important; }
}
@media (min-width: 577px) and (max-width: 768px) {
    .contact-map-container { height: 340px !important; }
}

/* ── Quote sidebar form: tighter on mobile ── */
@media (max-width: 480px) {
    .quote-sidebar form { padding: 1rem; }
    .quote-sidebar .bg-\[#002045\] { padding: 1rem; }
}

/* ── Blog FAQ accordion — tighter on mobile ── */
@media (max-width: 480px) {
    details.group summary { padding: 0.875rem; font-size: 0.9375rem; }
    details.group > div { padding: 0 0.875rem 0.875rem; font-size: 0.875rem; }
}

/* ── Bigbull landing page hero form — responsive fix ── */
@media (max-width: 480px) {
    .page-redesigned section .grid.lg\:grid-cols-5 { gap: 1.5rem; }
}

/* ── CTA sections — responsive text ── */
@media (max-width: 480px) {
    .page-redesigned section .text-2xl { font-size: 1.375rem; }
}

/* ══════════════════════════════════════════════════════
   STICKY SIDE CTA — right edge
   ══════════════════════════════════════════════════════ */
.sticky-side-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 18px 14px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    letter-spacing: .03em;
    text-decoration: none;
    color: #fff;
    transition: padding .25s ease, box-shadow .25s ease;
    cursor: pointer;
    border: none;
    outline: none;
}
.sticky-cta-btn .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 1;
}
.sticky-cta-quote {
    background: #b52426;
    border-radius: 12px 0 0 0;
    box-shadow: -2px 0 12px rgba(181,36,38,.35);
}
.sticky-cta-quote:hover {
    padding: 18px 18px;
    box-shadow: -4px 0 20px rgba(181,36,38,.5);
}
.sticky-cta-call {
    background: #002045;
    border-radius: 0 0 0 12px;
    box-shadow: -2px 0 12px rgba(0,32,69,.35);
}
.sticky-cta-call:hover {
    padding: 18px 18px;
    box-shadow: -4px 0 20px rgba(0,32,69,.5);
}
.sticky-cta-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
}

/* ── Mobile: bottom bar instead of side ── */
@media (max-width: 767px) {
    .sticky-side-cta {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        gap: 0;
    }
    .sticky-cta-btn {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        flex: 1;
        justify-content: center;
        padding: 14px 10px;
        font-size: 14px;
        border-radius: 0;
    }
    .sticky-cta-label {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }
    .sticky-cta-quote {
        border-radius: 0;
        box-shadow: 0 -2px 12px rgba(181,36,38,.3);
    }
    .sticky-cta-quote:hover { padding: 14px 10px; }
    .sticky-cta-call {
        border-radius: 0;
        box-shadow: 0 -2px 12px rgba(0,32,69,.3);
    }
    .sticky-cta-call:hover { padding: 14px 10px; }
    /* Add bottom padding to body so content isn't hidden behind sticky bar */
    body { padding-bottom: 56px; }
}

/* ══════════════════════════════════════════════════════
   DESIGN SYSTEM CONSISTENCY FIXES
   Applied site-wide to ensure visual alignment
   ══════════════════════════════════════════════════════ */

/* ── Hero min-height responsive ── */
@media (max-width: 576px) {
    .svc-hero { min-height: 260px; }
}
@media (min-width: 577px) and (max-width: 992px) {
    .svc-hero { min-height: 340px; }
}

/* ── Prose content link styles ── */
.prose-content a {
    color: #b52426;
    font-weight: 600;
}
.prose-content a:hover {
    color: #a12022;
    text-decoration: underline;
}

/* ── Service feature card hover state ── */
.svc-feature-card {
    transition: box-shadow .2s ease, border-color .2s ease;
}
.svc-feature-card:hover {
    box-shadow: 0 4px 20px rgba(0,32,69,.1);
    border-color: #b52426;
}

/* ── Inline CTA block (end of service pages) ── */
.svc-content-block.bg-primary\/5 {
    transition: background .2s;
}

/* ── FAQ accordion — open state body text ── */
details.group[open] summary {
    color: #b52426;
}

/* ── Standardize not-prose card link styles ── */
.not-prose a {
    text-decoration: none;
}

/* ── Full-width article layout (blog pages) ── */
.article-layout {
    max-width: 56rem;   /* ~896px, matches max-w-4xl */
    margin-left: auto;
    margin-right: auto;
}

/* ── Section background alternation helper ── */
.bg-alt-section {
    background-color: #f1f4f6;
}

/* ── Quote sidebar responsive ── */
@media (max-width: 1023px) {
    .quote-sidebar {
        position: static !important;
    }
}

/* ── Smooth focus rings — accessibility ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #b52426;
    outline-offset: 2px;
}

/* ── Print: hide sticky CTA ── */
@media print {
    .sticky-side-cta { display: none !important; }
}
