/* ─── Dot Grid ──────────────────────────────────────────── */
.dot-grid-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;  /* above hero-bg (z-index:0) but below hero-content (z-index:2) */
    pointer-events: none;
}
.dot-grid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: block;
}

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

:root {
    --navy: #0a1628;
    --navy2: #0d1f3c;
    --gold: #e8a020;
    --gold2: #ffbf47;
    --red: #c0392b;
    --white: #f0f4ff;
    --card: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ─── Nav ───────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all .3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .emblem {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--navy);
    box-shadow: 0 0 20px rgba(232, 160, 32, .4);
}

.nav-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 36px;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a {
    color: var(--muted);
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    letter-spacing: .5px;
    transition: transform .2s, box-shadow .2s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 160, 32, .4);
}

/* ─── Hero ──────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
}

/* Animated road/convoy background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(to bottom,
            rgba(10, 22, 40, 1) 0%,
            rgba(10, 22, 40, 0.3) 40%,
            rgba(10, 22, 40, 0.6) 70%,
            rgba(10, 22, 40, 1) 100%);
}

/* Stars */
.stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 15%, rgba(255, 255, 255, .6) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 10%, rgba(255, 255, 255, .5) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 25%, rgba(255, 255, 255, .4) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 40%, rgba(255, 255, 255, .3) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 35%, rgba(255, 255, 255, .5) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 8%, rgba(255, 191, 71, .7) 0%, transparent 100%),
        radial-gradient(1px 1px at 62% 18%, rgba(255, 255, 255, .4) 0%, transparent 100%);
}

/* Animated glow line (road) */
.road-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(232, 160, 32, 0.06), transparent);
    pointer-events: none;
}

/* Moving headlights */
@keyframes headlight {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(110vw);
        opacity: 0;
    }
}

.light-beam {
    position: absolute;
    bottom: 28%;
    width: 300px;
    height: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 220, 100, 0.25), rgba(255, 220, 100, 0.08), transparent);
    border-radius: 50%;
    animation: headlight 8s linear infinite;
    pointer-events: none;
}

.light-beam:nth-child(2) {
    animation-delay: 3s;
    bottom: 32%;
    height: 60px;
}

.light-beam:nth-child(3) {
    animation-delay: 5.5s;
    bottom: 25%;
    height: 90px;
    width: 350px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(232, 160, 32, 0.12);
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 8vw, 102px);
    line-height: .95;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--white);
}

h1 .highlight {
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 160, 32, .45);
}

.btn-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(232, 160, 32, .05);
}

/* Hero stats */
.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 14%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 28px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: transform .3s, border-color .3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 160, 32, .3);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
}

.stat-lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── Section Common ─────────────────────────────────────── */
section {
    padding: 100px 60px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 60px;
}

/* ─── About ─────────────────────────────────────────────── */
#about {
    /* removed solid background */
}

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

.about-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0d1f3c, #152040);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Truck SVG illustration */
.truck-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.truck-svg {
    width: 220px;
    filter: drop-shadow(0 0 40px rgba(232, 160, 32, .3));
}

.about-visual-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gold);
    opacity: .7;
}

/* Glow overlay */
.about-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(232, 160, 32, 0.08), transparent);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feat-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08); /* Increased base opacity */
    border: 1px solid var(--border);
    transition: all .3s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feat-item:hover {
    background: rgba(255, 255, 255, 0.15); /* Highlight on hover */
    border-color: rgba(232, 160, 32, 0.4);
}

.feat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(232, 160, 32, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feat-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}

.feat-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── Services ──────────────────────────────────────────── */
#services {
    /* removed solid background */
}

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

.division-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all .35s;
    cursor: default;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 160, 32, .25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-emoji {
    font-size: 38px;
    margin-bottom: 20px;
    display: block;
}

.service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── Fleet ─────────────────────────────────────────────── */
#fleet {
    /* removed solid background */
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fleet-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .3s;
}

.fleet-card:hover {
    border-color: rgba(232, 160, 32, .35);
    transform: scale(1.03);
}

.fleet-truck-icon {
    font-size: 48px;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 12px rgba(232, 160, 32, .25));
}

.fleet-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.fleet-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(232, 160, 32, .12);
    color: var(--gold);
    letter-spacing: 1px;
}

/* ─── Recruitment / CTA ──────────────────────────────────── */
#join {
    background: var(--navy);
    text-align: center;
}

.join-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.join-card {
    background: linear-gradient(135deg, rgba(232, 160, 32, 0.08), rgba(232, 160, 32, 0.02));
    border: 1px solid rgba(232, 160, 32, .25);
    border-radius: 28px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

.join-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 160, 32, .15), transparent 70%);
    pointer-events: none;
}

.join-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: .95;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.join-card p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.requirements {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.req-item .check {
    color: var(--gold);
    font-size: 16px;
}

/* ─── Stats Banner ───────────────────────────────────────── */
#stats {
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    padding: 60px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-big {
    text-align: center;
}

.stat-big .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-big .lbl {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
    background: rgba(0, 0, 0, .4);
    border-top: 1px solid var(--border);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 13px;
    color: rgba(138, 155, 191, .5);
}

/* ─── Reveal animations ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-stats {
        display: none;
    }

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

    .about-visual {
        aspect-ratio: 16/9;
        max-height: 250px;
    }

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

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

@media (max-width: 700px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 70px 24px;
    }

    #hero {
        padding: 0 24px;
    }

    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .join-card {
        padding: 40px 24px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Modal ─────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--navy2);
    border: 1px solid rgba(232, 160, 32, .3);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: all .3s;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 24px;
    cursor: pointer;
    transition: color .2s;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color .3s;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* ─── Divisions & Partners ──────────────────────────────── */
.divisions-grid,
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.division-card,
.partner-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.division-card:hover,
.partner-card:hover {
    border-color: rgba(232, 160, 32, .3);
    transform: translateY(-4px);
}

.division-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}

.division-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

.partner-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--muted);
    border: 1px dashed var(--border);
}

@media (max-width: 700px) {

    .divisions-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Dynamic Partner Cards ──────────────────────────── */
.partner-card {
    position: relative;
    border: 1px solid rgba(232, 160, 32, .18);
    border-radius: 16px;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: var(--surface);
    transition: transform .3s, box-shadow .3s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.partner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.35);
    transition: filter .4s;
}

.partner-card:hover .partner-bg {
    filter: brightness(.5);
}

.partner-logo-box {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 72px;
    height: 72px;
    background: rgba(10, 22, 40, .75);
    border: 1px dashed rgba(232, 160, 32, .35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--muted);
    overflow: hidden;
}

.partner-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.partner-name {
    position: relative;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.partner-desc {
    position: relative;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
}

/* ─── Members Grid (Officers & Drivers) ──────────────── */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.officers-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.member-card {
    background: rgba(255, 255, 255, 0.08); /* Increased base opacity for visibility */
    border: 1px solid rgba(232, 160, 32, .15);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 20px;
    gap: 12px;
    transition: transform .3s, box-shadow .3s;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.member-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.officers-grid .member-photo {
    width: 110px;
    height: 110px;
}

.member-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}

.member-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.member-empty {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 14px;
    padding: 40px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, .1);
    border-radius: 12px;
}

.member-empty code {
    color: var(--gold);
}

/* Officers: gold accent strip at top of card */
.officers-grid .member-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: -24px -16px 0;
    width: calc(100% + 32px);
}

/* ─── Mobile: Drivers as horizontal scroll strip ─────── */
@media (max-width: 640px) {
    .drivers-grid {
        grid-template-columns: unset;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .drivers-grid .member-card {
        flex: 0 0 140px;
        min-width: 140px;
        padding: 18px 12px 14px;
    }

    .drivers-grid .member-photo {
        width: 72px;
        height: 72px;
    }
}

/* ─── Media Gallery ──────────────────────────────────── */
.gallery-grid {
    columns: 3;
    column-gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .gallery-grid {
        columns: 2;
    }
}

/* Phone: horizontal scroll strip — keeps page height short */
@media (max-width: 600px) {
    .gallery-grid {
        columns: unset;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(232, 160, 32, .4) transparent;
    }

    .gallery-item {
        flex: 0 0 260px;
        min-width: 260px;
        margin-bottom: 0;
    }

    .gallery-item img,
    .gallery-item video {
        height: 180px;
        object-fit: cover;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(232, 160, 32, .12);
    background: var(--surface);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
}

.gallery-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: .5px;
}

.gallery-empty {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 14px;
    padding: 60px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, .1);
    border-radius: 12px;
}

.gallery-empty code {
    color: var(--gold);
}

/* ─── Lightbox ───────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img,
.lightbox-vid {
    max-width: 90vw;
    max-height: 78vh;
    border-radius: 12px;
    object-fit: contain;
    display: none;
}

.lightbox-img.active,
.lightbox-vid.active {
    display: block;
}

.lightbox-desc {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-social-link:hover {
    color: #fff;
}

/* ─── Leaderboard ────────────────────────────────────── */
.lb-strip {
    display: flex;
    flex-direction: row;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 160, 32, .4) transparent;
}

.lb-card {
    flex: 1 0 220px;
    min-width: 220px;
    background: var(--surface);
    border-radius: 16px;
    border-top: 3px solid var(--gold);
    padding: 22px 20px 18px;
}

.lb-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .5px;
    margin-bottom: 2px;
}

.lb-subtitle {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lb-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lb-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lb-rank {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
}

.lb-rank.r1 {
    background: linear-gradient(135deg, #f5a623, #e8a020);
    color: #000;
}

.lb-rank.r2 {
    background: linear-gradient(135deg, #b0b0b0, #888);
    color: #000;
}

.lb-rank.r3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: #fff;
}

.lb-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

/* Skeleton shimmer */
.lb-skeleton {
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .04) 25%, rgba(255, 255, 255, .09) 50%, rgba(255, 255, 255, .04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

/* Phone: inherit the strip scroll naturally */
@media (max-width: 600px) {
    .lb-card {
        min-width: 200px;
    }
}

/* ─── 360° Truck Showcase ────────────────────────────────── */
.section-360 {
    background: var(--navy2);
    text-align: center;
}

.section-360 .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.viewer360-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 40px 80px rgba(0,0,0,0.45),
        0 0 80px rgba(232,160,32,0.06);
}

.viewer360-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.v360-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.v360-r { background: #ff5f57; }
.v360-y { background: #febc2e; }
.v360-g { background: #28c840; }

.v360-topbar-label {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.viewer360-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #151c2f 0%, var(--navy) 100%);
}
.viewer360-stage:active { cursor: grabbing; }

/* all frame images */
.viewer360-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}
.viewer360-stage img.v360-visible { opacity: 1; }

/* Loading overlay */
.v360-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(10,22,40,0.92);
    z-index: 20;
    transition: opacity 0.5s;
}
.v360-loading.v360-hidden { opacity: 0; pointer-events: none; }

.v360-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(232,160,32,0.15);
    border-top-color: var(--gold);
    animation: v360spin 0.9s linear infinite;
}
@keyframes v360spin { to { transform: rotate(360deg); } }

.v360-progress-wrap {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
}
.v360-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    border-radius: 99px;
    transition: width 0.2s;
}
.v360-loading-text { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

/* Drag hint */
.v360-hint {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.5s;
}
.v360-hint-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(232,160,32,0.1);
    border: 1px solid rgba(232,160,32,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: v360float 3s ease-in-out infinite;
}
.v360-hint-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.v360-hint span { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.v360-hint.v360-hidden { opacity: 0; }
@keyframes v360float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* Floor accent line */
.v360-floor {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,160,32,0.22) 50%, transparent);
}

/* Controls bar */
.viewer360-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    gap: 14px;
    flex-wrap: wrap;
}

.v360-counter { font-size: 13px; color: var(--muted); }
.v360-counter strong { color: var(--gold); font-weight: 600; }

.v360-scrubber-wrap {
    flex: 1;
    min-width: 100px;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v360-scr-label { font-size: 11px; color: var(--muted); white-space: nowrap; }

.v360-scrubber {
    -webkit-appearance: none;
    flex: 1;
    height: 4px;
    border-radius: 99px;
    background: rgba(255,255,255,0.1);
    outline: none;
    cursor: pointer;
}
.v360-scrubber::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border: 2px solid var(--navy);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(232,160,32,0.45);
}

.v360-speed-btns { display: flex; gap: 5px; }
.v360-speed-btn {
    padding: 4px 11px;
    border-radius: 7px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.v360-speed-btn:hover, .v360-speed-btn.v360-active {
    border-color: rgba(232,160,32,0.45);
    background: rgba(232,160,32,0.1);
    color: var(--gold);
}

.v360-rotate-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.v360-rotate-btn svg { width: 14px; height: 14px; }
.v360-rotate-btn:hover, .v360-rotate-btn.v360-active {
    border-color: rgba(232,160,32,0.45);
    background: rgba(232,160,32,0.08);
    color: var(--gold);
}

@media (max-width: 600px) {
    .viewer360-bar { flex-direction: column; align-items: flex-start; }
    .v360-scrubber-wrap { max-width: 100%; width: 100%; }
    .v360-speed-btns, .v360-rotate-btn { align-self: flex-start; }
}

