@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: #ffffff;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.top-menu>li>a:hover,
.top-menu>li.active>a {
    color: #ffffff;
    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: #ffffff;
}

/* 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: #ffffff;
    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 #ffffff;
    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: #ffffff;
}

/* 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: #ffffff;
    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: #ffffff;
    border-left-color: #ffffff;
    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: #ffffff;
    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: #ffffff;
    flex-shrink: 0;
}

.oc-mega-group-links a:hover {
    color: #ffffff;
}

/* 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: #ffffff;
    transform: scale(1.3);
    border: 1px solid #ffffff;
}

#hero .swiper-pagination-bullet-active::after {
    content: '1';
    font-size: 0;
    border: 1px solid #ffffff;
    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: #ffffff;
    border: 1px solid #ffffff;
    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: #ffffff;
    color: #ffffff;
}

#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: #ffffff;
}

#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: #ffffff;
    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: #ffffff;
    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;
}

.acc-panel {
    position: relative;
    flex: 1;
    min-width: 64px;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    transition: flex 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

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

/* Background image fills panel at all sizes */
.acc-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) saturate(1);
    pointer-events: none;
    z-index: 0;
}

/* ── COLLAPSED LABEL (vertical) ── */
.acc-label-collapsed {
    position: absolute;
    top: 24px;
    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: #ffffff;
    text-align: center;
    width: 100%;

    font-size: clamp(9px, 1.2vw, 16px);
    transition: font-size 0.4s ease, writing-mode 0.3s, opacity 0.3s;
}
.acc-panel.active .acc-label-collapsed {
    font-size: clamp(20px, 2.5vw, 38px);
    opacity: 1;
}

/* ── 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: #ffffff;
    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: #ffffff;
    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: #c0392b;
    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;
}

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

/* ── Learn More ── */
.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
}

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

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

.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 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    /* 16:9 ratio */
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* disables clicking iframe */
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.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: #ffffff;
    margin-bottom: 15px;
}

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

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

#video-cta .explore-btn:hover {
    opacity: 1;
    background-color: transparent;
    color: #ffffff;
}

/* ── 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: #ffffff;
    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: #ffffff;
    text-decoration: none;
}

/* ── FOOTER ── */
footer {
    background: url(../image/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;
}

.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: #ffffff;
    border-color: #ffffff;
    color: var(--theme);
}

.footer-col-title {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    text-align: center;
}

.footer-copy a {
    /* font-size: clamp(14px, 1.3vw, 16px); */
    font-size: inherit;
    color: #ffffff;
    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 ── */
.page-header {
    background: #FAFAFA;
}

.vehicles-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1.5rem;
    padding: clamp(20px, 5vw, 40px) clamp(16px, 8vw, 150px);
}

/* ── SIDEBAR ACCORDION ── */
.sidebar {
    background: #FAFAFA;
    border-radius: 3px;
    box-shadow: 0px 4px 99px 0px #00000021;
    overflow: hidden;
    align-self: start;
    padding: 0 1.3rem;
}

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

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

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

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

.acc-header .cat-title {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--title);
}

.acc-icon {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--title);
    transition: transform 0.25s ease, color 0.2s;
}

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

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

.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: clamp(14px, 1.3vw, 16px);
    color: var(--title);
    text-decoration: none;
    border-left: 2px solid transparent;
    margin-left: 0.5rem;
    transition: all 0.15s;
    font-weight: 600;
}

.acc-body ul li a:hover,
.acc-body ul li a.active {
    color: var(--title);
    border-left-color: var(--title);
    background: #1e1e1e12;
}

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

.vehicle-card {
    background: url(../image/pbg.png) no-repeat bottom / cover;
    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: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.vehicle-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    transition: transform 0.3s ease;
}

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

.vehicle-card .card-label {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--title);
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: 0.5s ease;
}

.vehicle-card:hover .card-label {
    top: 90%;
}

/* ── 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;
    }
}

/* ── Page wrapper ── */
.page-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 100vh;
}

/* ── Left content (2/3) ── */
.content-col {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    display: flex;
    flex-direction: column;
}

.content-col .section-heading {
    padding-right: clamp(20px, 4vw, 60px);
}

/* ── Right image (1/3) ── */
.image-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    position: relative;
    overflow: hidden;
}

.image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #b8cfe0 0%, #6a9ab8 45%, #3a5e78 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Two-column form area ── */
.form-columns {
    display: flex;
    gap: 80px;
    padding-top: 70px;
    flex: 1;
}

/* ── Left form column ── */
.col-left {
    flex: 0 0 50%;
}

.phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--theme);
}

.phone-row i {
    font-size: 23px;
}

.phone-row span {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    margin: 0;
}

.col-left p {
    font-size: clamp(14px, 1.4vw, 19px);
    color: #616161;
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 400;
}

.field-label {
    font-size: 14px;
    font-weight: 500;
    color: #616161;
    margin-bottom: 10px;
    display: block;
}

.msg-textarea {
    width: 100%;
    height: 130px;
    border: 0.98px solid #EAEAEA;
    border-radius: 3.93px;
    padding: 12px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #616161;
    resize: none;
    outline: none;
    transition: border-color .2s;
    background: #ffffff;
}

.msg-textarea:focus {
    border-color: #616161;
}

/* ── Right form column ── */
.col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ── Shared field styles ── */
.field-group {
    position: relative;
    margin-bottom: 22px;
}

.field-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 0;
}

.field-line {
    width: 100%;
    border: none;
    border-bottom: 0.5px solid #64646478;
    border-radius: 0;
    padding: 8px 24px 8px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #0f1c2e;
    background: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .2s;
    font-weight: 500;
}

.field-line:focus {
    border-bottom-color: #0f1c2e;
}

::placeholder {
    color: #1E1E1E;
    opacity: 1;
}

/* select chevron */
.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-30%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #6b6b6b;
    pointer-events: none;
}

select.field-line {
    cursor: pointer;
    padding-right: 24px;
}

select.field-line option {
    color: #0f1c2e;
}

.required {
    color: var(--sub-title);
}

/* ── Checkbox ── */
.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.check-row input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    accent-color: var(--text);
    flex-shrink: 0;
    cursor: pointer;
}

.check-row label {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    cursor: pointer;
}

.col-right .btn-contact {
    width: fit-content;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .page-wrapper {
        flex-direction: column;
    }

    .content-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 40px 32px;
        order: 2;
    }

    .image-col {
        height: 500px;
        max-width: 100%;
        width: 100%;
        order: 1;
        flex: none;
    }
}

@media (max-width: 991px) {
    .form-columns {
        flex-direction: column;
        gap: 32px;
    }

    .col-left {
        flex: none;
    }
}

@media (max-width: 575px) {
    .content-col {
        padding: 32px 20px;
    }
}

/* Networks */
.section-label {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f1e45;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e6f0;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.heading {
    color: #041954;
    text-transform: uppercase;
    font-size: 36px;
    line-height: 1.19444;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: "Barlow Condensed", sans-serif;
}

/* ── Network card ── */
.network-card {
    background: #ffffff;
    border: 1px solid #e2e6f0;
    border-radius: 14px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 24px rgba(15, 30, 69, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a3066, #c8102e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.network-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(15, 30, 69, 0.16);
    border-color: rgba(15, 30, 69, 0.15);
}

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

.card-title {
    font-weight: 650;
    font-size: 1.675rem;
    color: #0f1e45;
    margin-bottom: 20px;
    line-height: 1.2;
}

.card-location {
    margin: 3px 0;
}

.pin-icon {
    color: #c8102e;
    font-size: 1.75rem;
    margin-right: 4px;
}

.location-name {
    font-weight: 600;
    font-size: 1.55rem;
    color: #0f1e45;
    text-decoration: none;
    transition: all 0.5s;
}

.location-name:hover {
    color: #c8102e;
}

.province-badge {
    display: inline-block;
    background: rgba(15, 30, 69, 0.07);
    color: #1a3066;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 2.75px 12px;
    border-radius: 20px;
    margin: 6px auto 0;
    letter-spacing: 0.04em;
}

.card-phone {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #e2e6f0;
    font-size: 1.45rem;
    color: #7a8499;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.5s;
}
.card-phone:hover{
    color: #c8102e;
}
.phone-icon {
    font-size: 0.85rem;
    color: #1a3066;
}

/* ── Section spacing ── */
.network-section {
    margin-bottom: 56px;
}

.network-section:last-child {
    margin-bottom: 0;
}

/* ── Fade-in animation ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.network-card {
    animation: fadeUp 0.5s ease both;
}

.network-card:nth-child(1) {
    animation-delay: 0.05s;
}

.network-card:nth-child(2) {
    animation-delay: 0.12s;
}

.network-card:nth-child(3) {
    animation-delay: 0.19s;
}

.network-card:nth-child(4) {
    animation-delay: 0.26s;
}

@media(max-width:1099px) {
    .network-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:524px) {
    .network-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}