.classic-cars-section {
    margin: 0 !important;
    padding-block: clamp(64px, 8vw, 110px);
    overflow: hidden;
}

.classic-cars-section .container {
    width: min(100% - 48px, 1200px);
    margin-inline: auto;
}

.classic-cars-section .split-section {
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(40px, 5vw, 68px);
    align-items: center;
}

.classic-cars-section .cars-slider-col,
.classic-cars-section .split-img,
.classic-cars-section .cars-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.classic-cars-section .cars-slider-col {
    padding: 0 !important;
    overflow: visible !important;
}

/* Main slider */

.classic-cars-section .cc-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 22px;
    background: #050505;
    outline-offset: 5px;
}

.classic-cars-section .cc-track {
    display: flex;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    transition: transform 0.5s ease;
    will-change: transform;
}

.classic-cars-section .cc-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
    background: #050505;
}

.classic-cars-section .cc-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    background: #050505;
    user-select: none;
    -webkit-user-drag: none;
}

.classic-cars-section .cc-gradient {
    pointer-events: none;
}

/* Slider controls */

.classic-cars-section .cc-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    backdrop-filter: blur(6px);
}

.classic-cars-section .cc-arrow-prev {
    left: 14px;
}

.classic-cars-section .cc-arrow-next {
    right: 14px;
}

.classic-cars-section .cc-counter {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 6;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 0.78rem;
    backdrop-filter: blur(6px);
}

.classic-cars-section .cc-dots {
    position: absolute;
    right: 50%;
    bottom: 16px;
    z-index: 6;
    display: flex;
    gap: 7px;
    transform: translateX(50%);
}

.classic-cars-section .cc-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
}

.classic-cars-section .cc-dot.active {
    background: var(--meedan-red, #e3222c);
}

/* Thumbnails */

.classic-cars-section .cc-thumbs {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-top: 16px;
    padding: 0 0 7px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.classic-cars-section .cc-thumbs::-webkit-scrollbar {
    height: 6px;
}

.classic-cars-section .cc-thumb {
    flex: 0 0 92px;
    width: 92px;
    height: 64px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #050505;
    opacity: 0.62;
    transition: opacity 0.25s ease, border-color 0.25s ease;
}

.classic-cars-section .cc-thumb.active {
    border-color: var(--meedan-red, #e3222c);
    opacity: 1;
}

.classic-cars-section .cc-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    background: #050505;
}

/* Text column */

.classic-cars-section .cars-content {
    max-width: 590px;
}

.classic-cars-section .section-title {
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.classic-cars-rule {
    margin: 0 0 24px;
}

.classic-cars-copy {
    margin: 0;
    color: var(--gray-light);
    font-size: clamp(0.98rem, 1.3vw, 1.08rem);
    line-height: 1.9;
}

.classic-cars-copy-spaced {
    margin-bottom: 24px;
}

/* Tablet */

@media (max-width: 992px) {
    .classic-cars-section .container {
        width: min(100% - 40px, 1200px);
    }

    .classic-cars-section .split-section {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }

    .classic-cars-section .cc-slider-wrap {
        aspect-ratio: 16 / 10;
    }

    .classic-cars-section .cars-content {
        max-width: 760px;
    }

    .classic-cars-section .section-title {
        max-width: 18ch;
    }
}

/* Mobile */

@media (max-width: 576px) {
    .classic-cars-section {
        padding-block: 60px;
    }

    .classic-cars-section .container {
        width: min(100% - 28px, 1200px);
    }

    .classic-cars-section .split-section {
        gap: 28px;
    }

    .classic-cars-section .cc-slider-wrap {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

    .classic-cars-section .cc-arrow {
        width: 38px;
        height: 38px;
    }

    .classic-cars-section .cc-arrow-prev {
        left: 9px;
    }

    .classic-cars-section .cc-arrow-next {
        right: 9px;
    }

    .classic-cars-section .cc-counter {
        top: 11px;
        right: 11px;
    }

    .classic-cars-section .cc-dots {
        bottom: 12px;
        max-width: calc(100% - 110px);
        flex-wrap: wrap;
        justify-content: center;
    }

    .classic-cars-section .cc-thumb {
        flex-basis: 74px;
        width: 74px;
        height: 52px;
        border-radius: 9px;
    }

    .classic-cars-section .section-title {
        max-width: 100%;
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .classic-cars-copy {
        line-height: 1.75;
    }
}

@media (max-width: 380px) {
    .classic-cars-section .container {
        width: min(100% - 22px, 1200px);
    }

    .classic-cars-section .cc-arrow {
        width: 34px;
        height: 34px;
    }

    .classic-cars-section .cc-thumb {
        flex-basis: 68px;
        width: 68px;
        height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .classic-cars-section .cc-track,
    .classic-cars-section .cc-thumb {
        transition: none !important;
    }
}
.page-hero{
    position: relative;
    overflow: hidden;
    min-height: 70vh; /* adjust to your existing hero height */
}
.page-hero-bg{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0a0a0a; /* fallback color instead of a poster flash */
}
.page-hero-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-hero-overlay{
    position: absolute;
    inset: 0;
}
.page-hero .container{
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}
:root {
        --meedan-red: #E3222C;
        --meedan-red-hover: #B81C24;
        --meedan-gray: #6D6E71;
        --meedan-gray-light: #A7A9AC;
    }

    .travel-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .travel-grid .facility-card {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        min-height: 320px;
        padding: 22px 22px 24px;
        border-radius: 2px;
        background: linear-gradient(200deg, #1c1c1c 0%, #0a0a0a 65%);
        border: 1px solid rgba(167, 169, 172, 0.2);
        transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }

    .travel-grid .facility-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.05) 75%
        );
        pointer-events: none;
    }

    .travel-grid .facility-card:hover {
        transform: translateY(-6px);
        border-color: rgba(227, 34, 44, 0.55);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.5);
    }

    .facility-bg-icon {
        position: absolute;
        top: -10%;
        right: -8%;
        font-size: 230px;
        line-height: 1;
        color: rgba(167, 169, 172, 0.457);
        transform: rotate(-8deg);
        transition: transform 0.5s ease, color 0.5s ease;
        z-index: 0;
    }

    .travel-grid .facility-card:hover .facility-bg-icon {
        transform: rotate(-4deg) scale(1.06);
        color: rgba(227, 34, 44, 0.1);
    }

    .facility-badge {
        position: absolute;
        top: 18px;
        left: 18px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(10, 10, 10, 0.55);
        border: 1.5px solid rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(2px);
        z-index: 3;
    }

    .facility-badge i {
        font-size: 15px;
        color: #fff;
    }

    .facility-tag {
        position: absolute;
        top: 16px;
        right: -30px;
        width: 150px;
        transform: rotate(35deg);
        background: var(--meedan-red);
        color: #ffffff;
        font-family: var(--font-heading);
        font-size: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        padding: 5px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        z-index: 4;
    }

    .facility-body {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .travel-grid .facility-card h3 {
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.2px;
        color: #ffffff;
        line-height: 1.3;
        margin: 0 0 6px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .travel-grid .facility-card p {
        font-size: 12.5px;
        color: var(--meedan-gray-light);
        margin: 0 0 16px;
    }

    .travel-grid .facility-card h3 + .facility-btn {
        margin-top: 14px;
    }

    .facility-btn {
        display: inline-block;
        padding: 11px 26px;
        font-family: var(--font-heading);
        font-size: 13px;
        letter-spacing: 0.5px;
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, 0.85);
        background: rgba(10, 10, 10, 0.35);
        text-decoration: none;
        transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

    .facility-btn:hover {
        background: var(--meedan-red);
        border-color: var(--meedan-red);
        color: #ffffff;
    }

    @media (max-width: 992px) {
        .travel-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .travel-grid {
            grid-template-columns: 1fr;
        }

        .travel-grid .facility-card {
            min-height: 260px;
        }

        .facility-bg-icon {
            font-size: 170px;
        }
    }
    .classic-cars-section .cc-slider-wrap,
    .classic-cars-section .cc-track,
    .classic-cars-section .cc-thumbs,
    .classic-cars-section .cc-dots {
        direction: ltr;
    }