/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-brand: #da2325;
    --color-brand-hover: #b91d1f;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-dark-light: #2a2a2a;
    --color-gray-700: #3a3a3a;
    --color-gray-500: #6b6b6b;
    --color-gray-400: #888888;
    --color-gray-300: #b0b0b0;
    --color-gray-200: #d4d4d4;
    --color-gray-100: #e8e8e8;
    --color-light: #f5f5f5;
    --color-white: #ffffff;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-brand);
    color: var(--color-white);
    border: 1px solid var(--color-brand);
}

.btn-primary:hover {
    background: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-white:hover {
    background: var(--color-gray-100);
    transform: translateY(-1px);
}

.btn-outlined {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outlined:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-300);
    transition: var(--transition);
}

.top-bar-item:hover {
    color: var(--color-white);
}

.top-bar-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: var(--color-gray-700);
    margin: 0 20px;
}

/* ========================================
   NAVIGATION (Transparent & Non-Sticky)
   ======================================== */
.navbar {
    position: absolute;
    top: 40px;
    /* Below top-bar */
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
}

.logo img {
    height: 48px;
    transition: filter 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    /* Text shadow for readability over images */
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-brand);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.brand-accent,
.footer .brand-accent {
    color: var(--color-brand);
    font-weight: 700;
}

.footer .brand-accent:hover {
    color: var(--color-brand-hover);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    padding: 8px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.search-btn:hover {
    opacity: 0.6;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 13px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Colored nav elements when explicitly forced (e.g. inner pages) */
.navbar.navbar-solid {
    position: relative;
    top: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
}

.navbar.navbar-solid .nav-link {
    color: var(--color-dark);
    text-shadow: none;
}

.navbar.navbar-solid .nav-link.active,
.navbar.navbar-solid .nav-link:hover {
    color: var(--color-brand);
}

.navbar.navbar-solid .search-btn {
    color: var(--color-dark);
    filter: none;
}

.navbar.navbar-solid .search-btn:hover {
    color: var(--color-brand);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-link {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-white);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--color-gray-500);
}

.mobile-cta {
    margin-top: 20px;
    padding: 14px 36px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 80px;
    width: 100%;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
    max-width: 620px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 440px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--color-white);
}

.section-light {
    background: var(--color-light);
}

.section-header {
    margin-bottom: 48px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: capitalize;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--color-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ========================================
   VEHICLE CATEGORY CAROUSEL
   ======================================== */
.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-dark);
}

.carousel-arrow:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.category-carousel-wrapper {
    overflow: hidden;
}

.category-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card {
    position: relative;
    flex: 0 0 calc(33.333% - 14px);
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}

.category-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    z-index: 1;
}

/* ========================================
   FEATURED VEHICLES
   ======================================== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vehicle-card {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    transition: var(--transition);
    background: var(--color-white);
}

.vehicle-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.vehicle-img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.vehicle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-img-wrap img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 20px;
}

.vehicle-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vehicle-title-row h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
}

.vehicle-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.vehicle-specs {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--color-gray-500);
}

.spec svg {
    color: var(--color-gray-400);
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--color-gray-100);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

.service-link svg {
    transition: var(--transition);
}

/* ========================================
   PARTNERS
   ======================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
    gap: 2px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 140px;
    background: var(--color-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.partner-logo:hover {
    background: var(--color-gray-100);
}

.partner-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gray-400);
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 0 40px;
    margin: 0 auto;
    max-width: 1360px;
}

.about-bg {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.about-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0) 100%);
}

.about-content {
    position: relative;
    z-index: 1;
    padding: 60px;
    color: var(--color-white);
}

.about-content h2 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: clamp(28px, 3vw, 40px);
}

/* ========================================
   CUSTOMER REVIEWS (No Profile Images)
   ======================================== */
.reviews-carousel-wrapper {
    overflow: hidden;
    padding: 0 0 20px;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    padding: 0 40px;
    animation: reviewsScroll 30s linear infinite;
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-dark);
    transition: var(--transition);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 20px;
    color: #f5c518;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.review-bottom {
    padding: 0;
    color: var(--color-white);
}

.review-bottom p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.review-bottom p::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--color-brand);
    position: absolute;
    top: -15px;
    left: -15px;
    opacity: 0.5;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, var(--color-black) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 32px;
    font-size: clamp(32px, 4vw, 52px);
}

/* ========================================
   FOOTER (Premium Redesign)
   ======================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: 'V12';
    position: absolute;
    top: -50px;
    right: -50px;
    font-family: var(--font-serif);
    font-size: 300px;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-white);
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-sans);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-brand);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li {
    color: var(--color-gray-300);
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a {
    color: var(--color-gray-300);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
    color: var(--color-brand);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--color-gray-400);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   WHATSAPP FLOATING BUTTON (Circular)
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-float .whatsapp-icon {
    width: 32px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 2px;
    margin-right: -1px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float .whatsapp-icon {
        width: 28px;
        height: auto;
    }
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .category-card {
        flex: 0 0 calc(50% - 10px);
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .review-card {
        flex: 0 0 380px;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        padding: 0 16px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .top-bar-divider {
        margin: 0 12px;
    }

    .top-bar-item {
        font-size: 12px;
    }

    .navbar-inner {
        padding: 0 16px;
        height: 64px;
    }

    .nav-links,
    .nav-cta,
    .search-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 24px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .category-card {
        flex: 0 0 calc(80% - 10px);
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        padding: 0 16px;
    }

    .about-bg {
        min-height: 400px;
    }

    .about-content {
        padding: 32px;
    }

    .review-card {
        flex: 0 0 320px;
    }

    .review-img-wrap {
        height: 260px;
    }

    .reviews-carousel {
        padding: 0 16px;
        animation-duration: 15s;
    }

    .cta-section {
        min-height: 400px;
    }

    .footer {
        padding: 48px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    .hero {
        height: 65vh;
        min-height: 420px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    h2 {
        font-size: 24px;
    }

    .category-card {
        flex: 0 0 calc(85% - 10px);
    }

    .review-card {
        flex: 0 0 280px;
    }

    .review-img-wrap {
        height: 220px;
    }

    .review-bottom {
        padding: 20px;
    }

    .review-bottom p {
        font-size: 14px;
    }
}

/* ========================================
   MODAL & SLIDER CONTROLS
   ======================================== */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-nav svg {
    width: 18px;
    height: 18px;
}

.car-image-wrapper {
    position: relative;
}

.btn-video {
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-video:hover {
    background: var(--color-black);
    transform: translateY(-1px);
}

.car-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    height: 90vh;
    /* Altura principal asumiendo una pantalla alta */
    max-height: 800px;
    /* Tope general */
    max-width: 90vw;
    /* Ancho que previene que se rebase en dispositivos móviles delgados */
    aspect-ratio: 9/16;
    /* Fuerte forzado de Reel */
    margin: 0 auto;
    /* Centramos en caso de que su aspect ratio tope con max-width */
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
}

.video-modal-close:hover {
    color: var(--color-brand);
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Evita cualquier barra negra estirando sutilmente al formato 9:16 */
    border-radius: var(--radius-md);
    background: #000;
    outline: none;
}