/* ================= ROOT VARIABLES ================= */
:root {
    --pearl-white: #FDFDFD;
    --warm-beige: #F7F3F0;
    --soft-grey: #E8E8E8;
    --champagne-gold: #C5A059;
    --trust-blue: #2A415F;
    --text-dark: #333333;
    --text-light: #777777;

    --font-head: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition: all 0.4s ease;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--pearl-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= LOADER ================= */
#loader {
    position: fixed;
    inset: 0;
    background: var(--pearl-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
    animation: fade 2s ease forwards;
}

.loader-content h2 {
    font-family: var(--font-head);
    color: var(--champagne-gold);
    letter-spacing: 2px;
}

.loader-sub {
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
    }
}

.loader-progress {
    width: 0;
    height: 2px;
    background: var(--champagne-gold);
    margin: 20px auto 0;
    transition: width 0.5s ease;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        width: 0;
        left: 50%;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 50%;
    }
}

.loader-content h2 {
    font-family: var(--font-head);
    color: var(--trust-blue);
    letter-spacing: 6px;
    font-size: 2rem;
    margin-bottom: 5px;
    animation: reveal 1s ease forwards;
}

@keyframes reveal {
    0% {
        letter-spacing: -10px;
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        letter-spacing: 6px;
        opacity: 1;
        filter: blur(0);
    }
}

/* ================= NAVBAR ================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--trust-blue);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--trust-blue);
    transition: var(--transition);
}

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

/* ================= HERO ================= */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, #ffffff 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-bottom: 100px;
    /* Slight lift to clear cars if they overlap */
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 8vw, 4rem);
    /* Reduced max size slightly for 4k/ultra-wide */
    color: var(--trust-blue);
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.2;
}

.hero p {
    color: var(--champagne-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-car {
    position: absolute;
    bottom: -20px;
    height: 55vh;
    max-width: 45vw;
    /* Restricted width to prevent collision */
    width: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-car.left {
    left: -14%;
    height: 48vh;
    max-width: 50vw;
}

.hero-car.right {
    right: -8%;
    height: 48vh;
    max-width: 38vw;
}

/* Hover Effect: Cars drive in slightly */
.hero:hover .hero-car.left {
    transform: translateX(40px);
}

.hero:hover .hero-car.right {
    transform: translateX(-40px);
}

@media (max-width: 1024px) {
    .hero-car.left {
        height: 35vh;
        max-width: 45vw;
    }

    .hero-car.right {
        height: 28vh;
        max-width: 45vw;
    }
}

@media (max-width: 768px) {
    .hero-car {
        opacity: 0.3;
        bottom: 0px;
        pointer-events: none;
        max-width: 40vw;
    }

    .hero-car.left {
        left: -20px;
        height: 20vh;
        max-width: 45vw;
    }

    .hero-car.right {
        right: -20px;
        height: 20vh;
        max-width: 35vw;
    }

    .hero-content {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .hero h1 {
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-car {
        display: none !important;
        /* Hide cars on very small screens to clear space */
    }

    .hero-content {
        margin-bottom: 0;
    }
}

/* ================= SECTIONS ================= */
section {
    padding: 100px 8%;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--trust-blue);
}

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

.about-text h2 {
    font-family: var(--font-head);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* CEO */
.ceo-card {
    text-align: center;
}



/* CIRCULAR CEO FRAME */
.ceo-frame {
    width: 320px;
    /* Width must match Height */
    height: 320px;
    /* Height must match Width */
    margin: 0 auto 25px;
    /* Centers the circle */
    border-radius: 50%;
    /* Makes it a perfect circle */
    border: 6px solid #f8fafc;
    /* Elegant white/grey border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    /* Soft depth shadow */
    overflow: hidden;
    /* Crops the image to the circle */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    /* Background in case image fails to load */
}

.ceo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Essential: keeps the face from stretching */
    display: block;
}

/* ABOUT GRID ADJUSTMENT */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    padding: 80px 10%;
}

.ceo-info h4 {
    margin-top: 15px;
    font-family: var(--font-head);
}

.ceo-info span {
    color: var(--champagne-gold);
    font-size: 0.9rem;
}

/* ================= TRUST ================= */
.trust-wrap {
    background: var(--warm-beige);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 8%;
    gap: 30px;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 2rem;
    color: var(--champagne-gold);
}

.trust-item h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
}

/* ================= VEHICLES ================= */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.car-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.car-card:hover {
    transform: translateY(-10px);
}

.car-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.car-info {
    padding: 20px;
}

.car-info h3 {
    font-family: var(--font-head);
}

.price {
    color: var(--champagne-gold);
    font-weight: bold;
    margin-bottom: 10px;
}

.car-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid var(--soft-grey);
    padding-top: 15px;
}

/* ================= REVIEWS ================= */
.review-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--warm-beige);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.stars {
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================= SLOGAN ================= */
.slogan-box {
    background: var(--trust-blue);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.slogan-box h2 {
    font-family: var(--font-head);
    letter-spacing: 2px;
}

/* ================= CONTACT ================= */
#contact {
    padding: 80px 8%;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 350px;
    width: 100%;
}

@media (max-width: 480px) {
    #contact {
        padding: 60px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 250px;
    }
}


/* ================= FOOTER ================= */
footer {
    background: var(--warm-beige);
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

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

    .nav-links {
        display: none;
    }

    /* Mobile Nav Overlay */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
    }



    /* Container for all vehicles */
    .vehicle-grid {
        display: grid;
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    /* Pagination Styling */
    .pagination-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
    }

    .pg-btn {
        padding: 10px 18px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        color: var(--trust-blue);
        transition: 0.3s;
    }

    .pg-btn:hover {
        background: #f8fafc;
        border-color: var(--trust-blue);
    }

    .pg-btn.active {
        background: var(--trust-blue);
        color: #fff;
        border-color: var(--trust-blue);
    }

    /* Individual Card */
    .car-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        /* Stacks image top, info bottom */
        overflow: hidden;
        height: 100%;
        /* Forces card to fill the grid row height */
    }

    /* Image Wrapper to keep size consistent */
    .car-img-container {
        width: 100%;
        height: 200px;
        /* Fixed height for the image area */
        background-color: #f9f9f9;
        /* Light grey background for empty spaces */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* The actual Image */
    .car-img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        /* This shows the WHOLE image without cropping */
    }

    /* Info section at the bottom */
    .car-info {
        padding: 15px;
        flex-grow: 1;
        /* Pushes the info to take up remaining space */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .car-img-container {
        width: 100%;
        height: 220px;
        /* Adjust based on your design */
        position: relative;
        overflow: hidden;
        background: #fff;
    }

    .swipe-wrapper {
        display: flex;
        width: 100%;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        /* This makes it "snap" to each car photo */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide scrollbar for a clean look */
    .swipe-wrapper::-webkit-scrollbar {
        display: none;
    }

    .swipe-slide {
        flex: 0 0 100%;
        /* Each photo takes up the full width of the card */
        width: 100%;
        height: 100%;
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .swipe-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* IMPORTANT: Shows the whole vehicle without cropping */
        background: #fff;
    }

    /* Dots at the bottom of the image */
    .swipe-indicator {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 5px;
        pointer-events: none;
    }

    .dot {
        width: 6px;
        height: 6px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        transition: 0.3s;
    }

    .dot.active {
        background: #df4040;
        /* Your brand red */
        transform: scale(1.2);
    }
}

/* ================= WHATSAPP BUTTON (GLOBAL) ================= */
.wa-btn-green {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366 !important;
    /* WhatsApp Green */
    color: #ffffff !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    margin-top: 15px !important;
    font-weight: bold !important;
    width: 100% !important;
    box-sizing: border-box;
}

.wa-btn-green:hover {
    background-color: #1ebc57 !important;
}

/* IMAGE FIX */
.car-img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background-color: #ffffff;
}

.car-img-container {
    height: 250px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* --- VEHICLE GRID RESPONSIVENESS --- */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Responsive columns */
    gap: 20px;
    padding: 20px;
}

/* --- IMAGE CONTAINER & EXPAND BUTTON --- */
.car-img-container {
    position: relative;
    /* Essential for positioning the button inside */
    height: 250px;
    background: #fff;
    overflow: hidden;
}

.expand-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.expand-btn i {
    color: #1e293b;
    font-size: 1rem;
}

.expand-btn:hover {
    background: #2563eb;
}

.expand-btn:hover i {
    color: #fff;
}

/* ================= LARGE SCREEN VEHICLE GRID ================= */
@media (min-width: 1024px) {
    .vehicle-grid {
        grid-template-columns: repeat(4, 1fr);
        /* FORCED 4 COLUMNS */
    }
}

/* ================= PAGINATION ================= */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pg-btn {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: var(--trust-blue);
    transition: 0.3s;
}

.pg-btn:hover {
    background: #f8fafc;
    border-color: var(--trust-blue);
}

.pg-btn.active {
    background: var(--trust-blue);
    color: #fff;
    border-color: var(--trust-blue);
}

/* ================= FULL SCREEN MODAL ================= */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.close-modal {
    position: fixed;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000000;
}

/* Modal Navigation Arrows */
.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

/* Image Counter */
.modal-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    z-index: 1000001;
    backdrop-filter: blur(10px);
}

/* ================= SEARCH CONTAINER ================= */
.search-container {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    height: 48px;
    padding: 0 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: var(--champagne-gold);
}

.search-input.search-name {
    flex: 2;
    min-width: 150px;
}

.search-input.search-price {
    flex: 1;
    min-width: 120px;
}

.search-input.search-year {
    flex: 1;
    min-width: 100px;
}

.search-btn {
    background: var(--trust-blue);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.search-btn:hover {
    background: var(--champagne-gold);
    transform: translateY(-2px);
}

/* ================= MOBILE RESPONSIVE ================= */

/* Mobile: Search Bar */
@media (max-width: 600px) {
    .search-container {
        padding: 15px;
        margin: 0 10px 30px;
        border-radius: 8px;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .search-input {
        width: 100% !important;
        flex: none !important;
        height: 50px !important;
    }

    .search-btn {
        width: 100%;
        height: 50px;
        margin-top: 5px;
    }
}

/* Mobile: About Section */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        padding: 60px 5%;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .ceo-frame {
        width: 240px;
        height: 240px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Modal responsive */
    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .modal-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Mobile: Gallery and General Sections */
@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Fixed Gallery Grid for Mobile */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .gallery-item {
        height: auto;
        min-height: 250px;
    }
}

/* Tablet: Gallery Grid */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Desktop: Gallery Grid */
@media (min-width: 1025px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile: Very Small Screens */
@media (max-width: 480px) {
    nav {
        padding: 15px 5%;
    }

    .logo {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 5%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .gallery-item {
        height: auto;
        min-height: 200px;
    }

    .gallery-item img {
        height: auto;
        min-height: 200px;
    }
}

/* Prevent modal body scroll */
body.modal-open {
    overflow: hidden;
}

/* ================= SKELETON LOADER ================= */
.skeleton-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.skeleton-img {
    width: 100%;
    height: 250px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

.skeleton-body {
    padding: 20px;
}

.skeleton-line {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    margin-bottom: 12px;
}

.skeleton-line.short { width: 55%; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.full { width: 100%; }
.skeleton-line.btn { height: 44px; border-radius: 8px; margin-top: 15px; }

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

/* ================= FEATURED VEHICLES HEADER ================= */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 0 2px;
}

.section-header-row .section-title {
    text-align: left;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--trust-blue);
    color: var(--trust-blue);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 6px;
    transition: all 0.3s;
}
.view-all-btn:hover {
    background: var(--trust-blue);
    color: #fff;
}

.view-all-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--trust-blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.view-all-btn-large:hover {
    background: var(--champagne-gold);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .section-header-row {
        flex-direction: column;
        gap: 12px;
    }
    .section-header-row .section-title {
        text-align: center;
    }
    .view-all-btn { align-self: center; }
}
