@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2');
    font-weight: 400 500 600 700 800;
    /* full variable range */
    font-style: normal;
    font-display: swap;
}

:root {
    --theme: #041954;
    --white: #ffffff;
    --title: #1E1E1E;
    --sub-title: #FD2323;
    --text: #616161;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    font-size: 14px;
}

/* ── TOP NAV ── */
#top-nav {
    background: var(--theme);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav-inner {
    display: flex;
    align-items: center;
    padding: 10px clamp(16px, 3vw, 70px);
    position: relative;
}

.brand-logo {
    width: auto;
    height: 50px;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.top-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    flex: 1;
}

.top-menu>li {
    height: 56px;
    display: flex;
    align-items: center;
}

.top-menu>li>a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.top-menu>li>a:hover,
.top-menu>li.active>a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.top-menu>li>a .caret {
    margin-left: 5px;
    font-size: 9px;
    opacity: 0.6;
}

@media (max-width:1099px) {
    .top-menu>li>a {
        font-size: 12px;
    }
}

/* ── MEGA / REGULAR DROPDOWN ── */
.mega-drop {
    position: absolute;
    top: 66px;
    left: 0 !important;
    background: rgba(4, 25, 84, 0.9);
    border-top: 1px solid rgb(255, 255, 255);
    padding: 28px 36px;
    z-index: 999;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s ease;
    width: 100vw;
}

/* Products mega */

.mega-cols {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mega-col {
    min-width: 130px;
}

.mega-col-title {
    font-size: 14px;
    font-weight: 400;
    font-family: "Helvetica", Arial, sans-serif;
    color: #eeeeee;
    padding-bottom: 8px;
    margin-bottom: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-col ul li {
    padding-bottom: 10px;
}

.mega-col ul li::before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 10px;
    margin-bottom: 3px;
}

.mega-col ul li a {
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.mega-col a:hover {
    color: var(--white);
}

/* hover triggers */
.top-menu>li:hover>.mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ── HAMBURGER BUTTON (mobile only) ── */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
    transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── OFFCANVAS OVERLAY ── */
.oc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1099;
    opacity: 0;
    transition: opacity 0.3s;
}

.oc-overlay.show {
    display: block;
}

.oc-overlay.visible {
    opacity: 1;
}

/* ── OFFCANVAS PANEL ── */
.offcanvas-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--theme);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.offcanvas-panel.open {
    transform: translateX(0);
}

/* Header */
.oc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--theme);
    border-bottom: 1px solid var(--white);
    flex-shrink: 0;
}

.oc-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}

.oc-close:hover {
    color: var(--white);
}

/* Scrollable body */
.oc-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 32px;
}

.oc-body::-webkit-scrollbar {
    width: 4px;
}

.oc-body::-webkit-scrollbar-track {
    background: transparent;
}

.oc-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* Top-level menu items */
.oc-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.oc-menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.oc-menu>li>a,
.oc-menu>li>button.oc-toggle {
    display: flex;
    align-items: center;
    font-family: "Helvetica", Arial, sans-serif;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s, background 0.2s;
}

.oc-menu>li>a:hover,
.oc-menu>li>button.oc-toggle:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.oc-toggle-icon {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.25s;
}

.oc-toggle.expanded .oc-toggle-icon {
    transform: rotate(90deg);
}

/* Accordion sub-panels */
.oc-sub {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.oc-sub.open {
    display: block;
}

/* Simple sub links (About) */
.oc-sub-simple a {
    display: block;
    padding: 10px 22px 10px 36px;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
}

.oc-sub-simple a:hover {
    color: var(--white);
    border-left-color: var(--white);
    padding-left: 42px;
}

/* Mega sub (Products) — grouped */
.oc-sub-mega {
    padding: 10px 0 6px;
}

.oc-mega-group {
    margin-bottom: 4px;
}

.oc-mega-group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 22px 9px 28px;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    cursor: pointer;
    transition: color 0.2s;
}

.oc-mega-group-title:hover {
    color: rgba(255, 255, 255, 0.8);
}

.oc-mega-group-title .oc-g-icon {
    font-size: 9px;
    transition: transform 0.2s;
}

.oc-mega-group.open .oc-mega-group-title .oc-g-icon {
    transform: rotate(90deg);
}

.oc-mega-group-links {
    display: none;
}

.oc-mega-group.open .oc-mega-group-links {
    display: block;
}

.oc-mega-group-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 22px 7px 44px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s;
}

.oc-mega-group-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
}

.oc-mega-group-links a:hover {
    color: var(--white);
}

/* Footer socials inside offcanvas */
.oc-footer {
    padding: 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.oc-socials {
    display: flex;
    gap: 10px;
}

@media (max-width: 991px) {
    .hamburger-btn {
        display: flex;
    }

    .top-menu {
        display: none;
    }
}

/* ── HERO ── */
#hero {
    position: relative;
    width: 100%;
    height: calc(93vh - 60px);
    overflow: hidden;
}

#hero .swiper {
    width: 100%;
    height: 100%;
}

.hero-content {
    width: 100%;
    height: 100%;
}

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

/* SVG truck illustration inside hero */
#hero .swiper-pagination {
    bottom: 22px;
    left: 50%;
    display: flex;
    z-index: 3;
    gap: 5px;
}

#hero .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--title);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid transparent;
    margin: 5px;
    opacity: 1;
}

#hero .swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.3);
    border: 1px solid var(--white);
}

#hero .swiper-pagination-bullet-active::after {
    content: '1';
    font-size: 0;
    border: 1px solid var(--white);
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: -4px;
    top: -4px;
}

#hero .swiper-button-prev,
#hero .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--title);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

#hero .swiper-button-prev:hover,
#hero .swiper-button-next:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

#hero .swiper-button-prev::after,
#hero .swiper-button-next::after {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}

#hero .swiper-button-prev:hover::after,
#hero .swiper-button-next:hover::after {
    color: var(--white);
}

#hero .swiper-button-prev {
    left: 70px;
}

#hero .swiper-button-next {
    right: 70px;
}

@media (max-width:800px) {
    #hero .swiper-button-prev {
        left: 0.23rem;
    }

    #hero .swiper-button-next {
        right: 0.23rem;
    }
}

/* Feature Bar */
.feature-bar {
    background: #1E1E1E;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.feature-track {
    display: flex;
    width: max-content;
    animation: featureTicker 30s linear infinite;
}

.feature-items {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.feature-items span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.13em;
    color: var(--white);
    white-space: nowrap;
    padding: 0 40px;
    user-select: none;
    -webkit-user-select: none;
}

.feature-items span::before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--white);
    margin-right: 10px;
    margin-bottom: 3px;
}

@keyframes featureTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── PRODUCTS GRID ── */
.section-padding {
    padding: clamp(20px, 5vw, 40px) 0;
}

.section-heading {
    padding: 0 clamp(16px, 8vw, 150px);
}

#products {
    padding-bottom: 0;
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 6%;
    text-transform: uppercase;
    color: var(--sub-title);
    margin-bottom: 10px;
}

.section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--sub-title);
}

.section-title {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--title);
    margin-bottom: 8px;
    line-height: 1.1;
}

.section-sub {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 44px;
}

/* ── ACCORDION SLIDER ── */
.accordion-slider {
    display: flex;
    width: 100%;
    height: 598px;
    gap: 2px;
}

/* Each panel */
.acc-panel {
    position: relative;
    flex: 1;
    min-width: 64px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    background: #00000033;
}

.acc-panel.active {
    flex: 3;
}

/* Background image */
.acc-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    font-family: 'Barlow', sans-serif;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) saturate(1);
}

/* ── COLLAPSED LABEL (vertical) ── */
.acc-label-collapsed {
    position: absolute;
    top: 32px;
    transform-origin: center center;
    white-space: nowrap;
    z-index: 2;
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .accordion-slider {
        flex-direction: column;
        height: auto;
        gap: 4px;
    }

    .acc-panel {
        min-width: unset;
        min-height: 60px;
        flex: 1;
    }

    .acc-panel.active {
        flex: 6;
        min-height: 380px;
    }

    .acc-label-collapsed {
        top: 10%;
    }
}

/* ── STATS BAR ── */
#stats {
    /* background: url(../image/statsbg.png)no-repeat center center; */
    background-size: 100% 100%;
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    max-width: 1400px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 25px;
    color: rgba(4, 25, 84, 1);
    margin-bottom: 10px;
    background: var(--white);
    display: inline-flex;
    padding: 15px;
    border-radius: 50%;
}

.stat-number {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    color: rgba(4, 25, 84, 1);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 15px;
    font-weight: 400;
    color: rgba(4, 25, 84, 1);
}

/* ── HIGHLIGHTS ── */
#highlights {
    padding-bottom: 0;
}

.highlight-wrap {
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* MAIN SWIPER */
.main-swiper {
    width: 100%;
    height: calc(100vh - 250px - 4px);
    min-height: 420px;
}

.main-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* BG image */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 1s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

/* Gradient overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.05) 100%);
}

/* Bottom gradient for text legibility */
.slide-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55) 0%,
            transparent 45%);
}

/* Slide content */
.slide-inner-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(16px, 8vw, 150px);
    padding-bottom: clamp(32px, 5vw, 48px);
    align-items: flex-end;
}

.slide-hashtag {
    font-size: clamp(22px, 4.5vw, 32px);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}

.swiper-slide-active .slide-hashtag {
    opacity: 1;
    transform: translateY(0);
}

/* Explore More button – bottom right */
.explore-btn {
    /* position: absolute; */
    display: inline-flex;
    align-items: center;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: background 0.25s, border-color 0.25s;
    opacity: 0;
    transition: opacity 0.6s 0.5s ease, background 0.25s, border-color 0.25s;
}

.button-slanted {
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

.button-slanted-content {
    -ms-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    display: inline-block;
}

.swiper-slide-active .explore-btn {
    opacity: 1;
    transition: all 0.5s;
}

.swiper-slide-active .explore-btn:hover {
    background-color: var(--white);
    color: var(--theme);
}

/* THUMBNAIL SWIPER */
.thumb-swiper-wrap {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.thumb-swiper {
    width: 100%;
    height: 100%;
}

.thumb-swiper .swiper-slide {
    height: 110px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0.9;
    border: 6.41px solid rgba(30, 30, 30, 1);
    transition: opacity 0.3s ease;
}

.thumb-swiper .swiper-slide-thumb-active {
    border: 6.41px solid rgba(255, 255, 255, 1)
}

/* Active indicator line on top */
.thumb-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.thumb-swiper .swiper-slide-thumb-active::before {
    transform: scaleX(1);
}

.thumb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.thumb-swiper .swiper-slide:hover .thumb-bg {
    transform: scale(1.02);
}

/* Dark scrim on thumbs */
.thumb-scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .slide-inner-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: clamp(32px, 5vw, 48px);
    }
}

/* ── PRESS RELEASE ── */

/* ── Swiper outer ── */
.swiper-outer {
    position: relative;
    overflow-y: visible;
}

.swiper-outer .press-swiper {
    padding-bottom: 30px;
}

/* ── Card ── */
.press-card {
    display: flex;
    flex-direction: column;
}

/* ── Image ── */
.swiper-outer .card-img-wrap {
    width: 100%;
    height: 469px;
    overflow: hidden;
    flex-shrink: 0;
}

.swiper-outer .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.press-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

/* ── Card body ── */
.swiper-outer .card-body-inner {
    padding: 26px 39px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
    width: 90%;
    margin-top: -70px;
    box-shadow: 4px 1px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* ── Author ── */
.swiper-outer .author-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
}

.swiper-outer .author-row i {
    font-size: 10px;
    color: var(--sub-title);
    flex-shrink: 0;
}

/* ── Excerpt ── */
.swiper-outer .card-excerpt {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 15px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all 0.5s;
}

.swiper-outer .card-excerpt:hover {
    color: var(--sub-title);
}

/* ── Learn More ── */
.swiper-outer .learn-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    color: var(--theme);
    text-decoration: none;
    margin-top: auto;
    transition: all 0.5s
}

.swiper-outer .learn-link:hover {
    color: var(--sub-title);
    text-decoration: none;
}

.swiper-outer .learn-link i {
    color: var(--sub-title);
    transform: rotate(-45deg);
    transition: stroke .2s, transform .2s;
}

.swiper-outer .learn-link:hover i {
    transform: rotate(0deg);
}

/* ── Swiper pagination ── */
.swiper-outer .swiper-pagination {
    text-align: center;
}

.swiper-outer .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: var(--text);
    opacity: 1;
    margin: 0 3px !important;
}

.swiper-outer .swiper-pagination-bullet-active {
    background: var(--sub-title);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .swiper-outer .card-img-wrap {
        height: 330px;
    }
}

@media (max-width: 575px) {
    .swiper-outer .card-img-wrap {
        height: 220px;
    }
}

/* ── VIDEO CTA ── */
#video-cta {
    position: relative;
    /* margin-top: 120px; */
    height: calc(100vh - 60px);
    overflow: hidden;
}

.video-wrapper {
    height: 100%;
    /* IMPORTANT */
    width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: clamp(60px, 10vw, 200px);
    padding-left: clamp(16px, 8vw, 205px);
    padding-right: clamp(16px, 8vw, 205px);
}

.video-cta-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.video-cta-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--white);
    margin-bottom: 32px;
}

#video-cta .explore-btn {
    opacity: 1;
    background-color: var(--white);
    color: var(--theme);
    transition: all 0.5s;
}

#video-cta .explore-btn:hover {
    opacity: 1;
    background-color: transparent;
    color: var(--white);
}

/* ── CTA ── */
.cta-section {
    background: #F8F8F8;
    text-align: center;
    position: relative;

}

.cta-section .section-heading {
    text-align: center;
}

.cta-section .section-label {
    justify-content: center;
}

/* ── Vehicle images row ── */
.vehicles-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    opacity: 42%;
}

.vehicle-item {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 60px;

}

.vehicle-item img {
    display: block;
    transition: filter .3s;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ── Buttons ── */
.btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-contact {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--theme);
    border: 2px solid var(--theme);
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    transition: background .5s, color .5s;
}

.btn-contact:hover {
    background: transparent;
    border-color: var(--theme);
    color: var(--theme);
    text-decoration: none;
}

.btn-testdrive {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--theme);
    background: transparent;
    border: 2px solid var(--theme);
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    transition: background .5s, color .5s;
}

.btn-testdrive:hover {
    background: var(--theme);
    color: var(--white);
    text-decoration: none;
}

/* ── FOOTER ── */
footer {
    background: url(../static/footerbg.png)no-repeat top right;
    background-size: 100% 100%;
    background-size: cover;
    background-color: var(--theme);
    position: relative;
    padding-bottom: 0 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    text-align: left;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--theme);
}

.footer-col-title {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 5px;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--white);
    text-decoration: none;
    transition: color .5s;
}

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

.contact-info li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid #FFFFFF73;
    background: transparent;
    padding: 4px 25px;
    cursor: pointer;
    border-radius: 2px;
    transition: background .5s, color .5s, border-color .5s;
    text-decoration: none;
}

.tab-btn:hover {
    border-color: var(--sub-title);
    color: #fff;
    text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


}

/* ── Bottom bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--white);
    text-align: center;
}

.footer-copy a {
    /* font-size: clamp(14px, 1.3vw, 16px); */
    font-size: inherit;
    color: var(--white);
    text-decoration: none;
    transition: all 0.5s;
}

.footer-copy a:hover {
    color: var(--sub-title);
}

/* Centre logo */
.footer-logo-center {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-logo-center {
        order: 1;
        /* keep logo in middle */
    }

    .footer-copy:first-child {
        order: 2;
    }

    .footer-copy:last-child {
        order: 3;
    }
}

@media (max-width: 767px) {

    .footer-logo-center {
        margin: 8px 0;
    }

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

    .d-hidden {
        display: none;
    }
}

/* ── Product ── */
.vehicles-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    padding: 0 2rem 3rem;
}

/* ── SIDEBAR ACCORDION ── */
.sidebar {
    background: var(--sidebar-bg);
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    align-self: start;
}

.accordion-category {
    border-bottom: 1px solid #e9ecef;
}

.accordion-category:last-child {
    border-bottom: none;
}

.acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.3rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.18s;
}

.acc-header:hover {
    background: #f8f9fa;
}

.acc-header .cat-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a2e;
}

.acc-icon {
    font-size: 1rem;
    color: #aaa;
    transition: transform 0.25s ease, color 0.2s;
}

.accordion-category.open .acc-icon {
    transform: rotate(45deg);
    color: var(--foton-red);
}

.accordion-category.open .acc-header .cat-title {
    color: var(--foton-red);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-category.open .acc-body {
    max-height: 400px;
}

.acc-body ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0.6rem 0;
}

.acc-body ul li a {
    display: block;
    padding: 0.45rem 1.3rem 0.45rem 1.6rem;
    font-size: 0.88rem;
    color: #444;
    text-decoration: none;
    border-left: 3px solid transparent;
    margin-left: 0.5rem;
    transition: all 0.15s;
}

.acc-body ul li a:hover,
.acc-body ul li a.active {
    color: #111;
    border-left-color: var(--foton-red);
    background: #fef5f5;
    font-weight: 600;
}

.acc-body ul li a.active {
    color: var(--foton-red);
}

/* ── VEHICLE GRID ── */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.vehicle-card {
    background: var(--foton-card-bg);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.vehicle-card .img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #dde1e8 0%, #c8cdd6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Watermark foton logo pattern in bg */
.vehicle-card .img-wrap::before {
    content: 'F';
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 11rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -10px;
}

.vehicle-card .img-wrap img {
    max-height: 160px;
    max-width: 88%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .img-wrap img {
    transform: scale(1.04);
}

/* badge for EV */
.ev-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--foton-navy);
    color: #5bc8f5;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
}

.vehicle-card .card-label {
    background: #111;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.vehicle-card:hover .card-label {
    background: var(--foton-red);
}

.card-label .arrow {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ── PLACEHOLDER IMAGE (SVG truck) ── */
.placeholder-vehicle {
    width: 220px;
    height: 130px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .vehicles-layout {
        grid-template-columns: 1fr;
        padding: 0 1rem 2rem;
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.fa-chevron-down:before{
    content: unset!important;
}