﻿/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    color: #000000;
}

/* ==================== BREADCRUMB NAVIGATION ==================== */
.breadcrumb-section {
    background-color: #ffffff;
    padding: 15px 80px;
    border-bottom: 1px solid #efefef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

    .breadcrumb-item:hover {
        color: #000000;
    }

    .breadcrumb-item.active {
        color: #000000;
    }

.breadcrumb-separator {
    color: #666666;
}

/* ==================== EXPLORE SECTION ==================== */
.explore-section {
    padding: 35px 80px 60px;
    background-color: #fafafa;
}

/* Page Header */
.explore-header {
    text-align: center;
    margin-bottom: 30px;
}

.explore-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.explore-subtitle {
    font-size: 13px;
    color: #5a5a5a;
    font-weight: 400;
    line-height: 1.5;
}

/* Filters & Results Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 18px 24px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.results-count {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.filter-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-btn:hover {
        background-color: #1a1a1a;
        color: #ffffff;
        border-color: #1a1a1a;
    }

    .filter-btn svg {
        width: 15px;
        height: 15px;
    }

.sort-dropdown {
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
    min-width: 140px;
}

/* Car Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Car Card */
.car-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .car-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

.car-image-container {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
}

.registration-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 4px 11px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 600;
    color: #2a2a2a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    letter-spacing: 0.2px;
}

.card-bottom-actions {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(0, 0, 0, 0.72);
    padding: 4px 9px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    color: #FFA726;
}

    .rating-badge svg {
        width: 12px;
        height: 12px;
        fill: #FFA726;
    }

.wishlist-btn {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

    .wishlist-btn:hover {
        background-color: #ff4444;
        transform: scale(1.08);
    }

    .wishlist-btn svg {
        width: 15px;
        height: 15px;
        fill: #666666;
    }

    .wishlist-btn:hover svg {
        fill: #ffffff;
    }

.car-details-section {
    padding: 14px;
}

.car-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.1px;
}

.car-price {
    font-size: 17px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 12px;
}

.car-specs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 8px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 12px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    text-align: center;
}

    .spec-item svg {
        width: 15px;
        height: 15px;
        color: #5a5a5a;
        margin-bottom: 2px;
    }

.spec-value {
    font-size: 11px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1;
}

.spec-label {
    font-size: 9px;
    color: #888888;
    font-weight: 500;
    line-height: 1;
}

.car-actions {
    display: flex;
    gap: 8px;
}

.request-callback-btn {
    flex: 1;
    background: linear-gradient(0deg, rgba(254, 239, 198, 0.35), rgba(254, 239, 198, 0.35)), linear-gradient(137deg, #da8207 0%, #dd9318 9%, #ffcb3c 23%, #ffcb3c 68%, #e39c1e 80%, #fbc63a 84%);
    color: #1a1a1a;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

    .request-callback-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
    }

.action-icon-btn {
    width: 42px;
    height: 42px;
    background-color: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

    .action-icon-btn:hover {
        background-color: #1a1a1a;
        transform: translateY(-2px);
    }

    .action-icon-btn svg {
        width: 18px;
        height: 18px;
        fill: #ffffff;
    }

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.load-more-btn {
    padding: 14px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

    .load-more-btn:hover {
        background-color: #FFA726;
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 167, 38, 0.25);
    }

/* ==================== ELEVATED CUSTOMER EXPERIENCE ==================== */
.elevated-experience-section {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1562911791-c7a97b729ec5?w=1920&h=600&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    overflow: hidden;
}

    .elevated-experience-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.75));
        z-index: 1;
    }

.elevated-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 30px;
}

.elevated-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.elevated-subtitle {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.6;
}

.visit-showrooms-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .visit-showrooms-btn:hover {
        background-color: #FFA726;
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 167, 38, 0.4);
    }

    .visit-showrooms-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }

    .visit-showrooms-btn:hover svg {
        transform: translateX(5px);
    }

/* ==================== FILTER MODAL ==================== */
.filter-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9998;
    backdrop-filter: blur(8px);
}

    .filter-modal-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.filter-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 540px;
    max-height: 92vh;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.98), rgba(30, 30, 30, 0.98));
    border-radius: 20px;
    z-index: 9999;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.filter-modal-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.filter-modal-actions {
    display: flex;
    gap: 10px;
}

.reset-filters-btn,
.close-modal-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .reset-filters-btn:hover,
    .close-modal-btn:hover {
        background-color: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.25);
    }

    .reset-filters-btn svg,
    .close-modal-btn svg {
        width: 17px;
        height: 17px;
        fill: #ffffff;
    }

.filter-modal-body {
    padding: 26px;
    max-height: calc(92vh - 180px);
    overflow-y: auto;
}

    .filter-modal-body::-webkit-scrollbar {
        width: 5px;
    }

    .filter-modal-body::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.03);
    }

    .filter-modal-body::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
    }

.filter-section {
    margin-bottom: 30px;
}

.filter-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.filter-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.filter-option-btn {
    padding: 9px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #d0d0d0;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

    .filter-option-btn:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
        color: #ffffff;
    }

    .filter-option-btn.active {
        background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
        border-color: #4a90e2;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    }

.price-range-container {
    padding: 12px 0 8px;
}

.price-inputs {
    display: flex;
    gap: 14px;
    align-items: center;
}

.price-input-group {
    flex: 1;
}

.price-input-label {
    font-size: 10px;
    color: #999999;
    margin-bottom: 7px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.price-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.vehicle-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
}

.vehicle-type-card {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 14px 8px;
}

    .vehicle-type-card:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
        transform: translateY(-2px);
    }

    .vehicle-type-card.active {
        background: rgba(74, 144, 226, 0.15);
        border-color: #4a90e2;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
    }

.vehicle-type-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 9px;
    fill: #b0b0b0;
    transition: fill 0.3s ease;
}

.vehicle-type-card.active .vehicle-type-icon {
    fill: #4a90e2;
}

.vehicle-type-name {
    font-size: 10px;
    font-weight: 600;
    color: #b0b0b0;
    text-align: center;
    line-height: 1.3;
}

.vehicle-type-card.active .vehicle-type-name {
    color: #4a90e2;
}

.brands-dropdown {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

    .brands-dropdown option {
        background-color: #2a2a2a;
        color: #ffffff;
        padding: 10px;
    }

    .brands-dropdown:focus {
        outline: none;
        border-color: rgba(74, 144, 226, 0.6);
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
    }

    .brands-dropdown:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
    }

.filter-modal-footer {
    display: flex;
    gap: 12px;
    padding: 22px 26px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.cancel-btn,
.apply-filters-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.cancel-btn {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
}

    .cancel-btn:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.2);
    }

.apply-filters-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

    .apply-filters-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    }

/* ==================== RESPONSIVE - DESKTOP LARGE (1440px+) ==================== */
@media (min-width: 1440px) {
    .explore-section {
        padding: 40px 120px 70px;
    }

    .breadcrumb-section {
        padding: 18px 120px;
    }

    .cars-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

/* ==================== RESPONSIVE - DESKTOP (1200px - 1439px) ==================== */
@media (max-width: 1439px) and (min-width: 1200px) {
    .explore-section {
        padding: 35px 60px 60px;
    }

    .breadcrumb-section {
        padding: 15px 60px;
    }
}

/* ==================== RESPONSIVE - TABLET LANDSCAPE (992px - 1199px) ==================== */
@media (max-width: 1199px) and (min-width: 992px) {
    .breadcrumb-section {
        padding: 15px 40px;
    }

    .explore-section {
        padding: 30px 40px 55px;
    }

    .explore-title {
        font-size: 28px;
    }

    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

/* ==================== RESPONSIVE - TABLET PORTRAIT (768px - 991px) ==================== */
@media (max-width: 991px) and (min-width: 768px) {
    .breadcrumb-section {
        padding: 14px 30px;
    }

    .explore-section {
        padding: 28px 30px 50px;
    }

    .explore-title {
        font-size: 26px;
    }

    .explore-subtitle {
        font-size: 12px;
    }

    .filter-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding: 16px 20px;
    }

    .filter-controls {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .filter-btn,
    .sort-dropdown {
        width: 100%;
        justify-content: center;
    }

    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .elevated-experience-section {
        height: 350px;
        margin-top: 35px;
    }

    .elevated-title {
        font-size: 30px;
    }

    .elevated-subtitle {
        font-size: 13px;
    }
}

/* ==================== RESPONSIVE - MOBILE LANDSCAPE (576px - 767px) ==================== */
@media (max-width: 767px) and (min-width: 576px) {
    .breadcrumb-section {
        padding: 12px 20px;
    }

    .explore-section {
        padding: 25px 20px 45px;
    }

    .explore-title {
        font-size: 24px;
    }

    .explore-subtitle {
        font-size: 12px;
    }

    .filter-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding: 15px;
    }

    .filter-controls {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .filter-btn,
    .sort-dropdown {
        width: 100%;
        justify-content: center;
    }

    .results-count {
        font-size: 13px;
        text-align: center;
    }

    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .car-image-container {
        height: 160px;
    }

    .car-name {
        font-size: 14px;
    }

    .car-price {
        font-size: 16px;
    }

    .spec-value {
        font-size: 10px;
    }

    .spec-label {
        font-size: 8px;
    }

    .request-callback-btn {
        font-size: 11px;
        padding: 10px;
    }

    .action-icon-btn {
        width: 38px;
        height: 38px;
    }

    .elevated-experience-section {
        height: 320px;
        margin-top: 30px;
    }

    .elevated-title {
        font-size: 26px;
    }

    .elevated-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .visit-showrooms-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
    /* Filter Modal Responsive */
    .filter-modal {
        width: 92%;
        max-height: 88vh;
        border-radius: 16px;
    }

    .filter-modal-header,
    .filter-modal-footer {
        padding: 18px 20px;
    }

    .filter-modal-body {
        padding: 20px;
    }

    .vehicle-type-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .vehicle-type-icon {
        width: 32px;
        height: 32px;
    }

    .vehicle-type-name {
        font-size: 9px;
    }
}

/* ==================== RESPONSIVE - MOBILE PORTRAIT (up to 575px) ==================== */
@media (max-width: 575px) {
    .breadcrumb-section {
        padding: 12px 15px;
    }

    .breadcrumb {
        font-size: 11px;
        gap: 6px;
    }

    .explore-section {
        padding: 20px 15px 40px;
    }

    .explore-header {
        margin-bottom: 20px;
    }

    .explore-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .explore-subtitle {
        font-size: 11px;
    }

    .filter-bar {
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        margin-bottom: 20px;
    }

    .results-count {
        font-size: 12px;
        text-align: center;
    }

    .filter-controls {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .filter-btn {
        width: 100%;
        padding: 9px 16px;
        font-size: 12px;
        justify-content: center;
    }

    .sort-dropdown {
        width: 100%;
        padding: 9px 16px;
        font-size: 12px;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 35px;
    }

    .car-image-container {
        height: 180px;
    }

    .car-details-section {
        padding: 12px;
    }

    .car-name {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .car-price {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .car-specs {
        padding: 9px 6px;
        margin-bottom: 10px;
    }

    .spec-item svg {
        width: 13px;
        height: 13px;
    }

    .spec-value {
        font-size: 10px;
    }

    .spec-label {
        font-size: 8px;
    }

    .car-actions {
        gap: 6px;
    }

    .request-callback-btn {
        font-size: 10px;
        padding: 10px 8px;
    }

    .action-icon-btn {
        width: 36px;
        height: 36px;
    }

        .action-icon-btn svg {
            width: 16px;
            height: 16px;
        }

    .load-more-container {
        margin-top: 25px;
    }

    .load-more-btn {
        padding: 12px 40px;
        font-size: 11px;
    }

    .elevated-experience-section {
        height: 280px;
        margin-top: 25px;
    }

    .elevated-content {
        padding: 0 20px;
    }

    .elevated-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .elevated-subtitle {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .visit-showrooms-btn {
        padding: 11px 28px;
        font-size: 11px;
    }

        .visit-showrooms-btn svg {
            width: 14px;
            height: 14px;
        }
    /* Filter Modal Mobile */
    .filter-modal {
        width: 95%;
        max-height: 90vh;
        border-radius: 14px;
    }

    .filter-modal-header {
        padding: 16px 18px;
    }

    .filter-modal-title {
        font-size: 17px;
    }

    .reset-filters-btn,
    .close-modal-btn {
        width: 34px;
        height: 34px;
    }

    .filter-modal-body {
        padding: 18px;
        max-height: calc(90vh - 160px);
    }

    .filter-section {
        margin-bottom: 22px;
    }

    .filter-section-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .filter-button-group {
        gap: 7px;
    }

    .filter-option-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .price-inputs {
        gap: 10px;
    }

    .price-input {
        padding: 10px 12px;
        font-size: 11px;
    }

    .vehicle-type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .vehicle-type-card {
        padding: 12px 6px;
    }

    .vehicle-type-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .vehicle-type-name {
        font-size: 9px;
    }

    .brands-dropdown {
        padding: 11px 14px;
        font-size: 11px;
    }

    .filter-modal-footer {
        padding: 16px 18px;
        gap: 10px;
    }

    .cancel-btn,
    .apply-filters-btn {
        padding: 12px;
        font-size: 12px;
    }
}

/* ==================== EXTRA SMALL MOBILE (up to 375px) ==================== */
@media (max-width: 375px) {
    .explore-title {
        font-size: 18px;
    }

    .explore-subtitle {
        font-size: 10px;
    }

    .car-name {
        font-size: 13px;
    }

    .car-price {
        font-size: 14px;
    }

    .elevated-title {
        font-size: 20px;
    }

    .elevated-subtitle {
        font-size: 10px;
    }

    .visit-showrooms-btn {
        padding: 10px 24px;
        font-size: 10px;
    }
}


/* ==================== POPUP MODAL STYLES ==================== */
.reserve-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reserve-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.reserve-modal {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reserve-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

    .reserve-modal-close:hover {
        background: rgba(0,0,0,0.8);
        transform: rotate(90deg);
    }

    .reserve-modal-close svg {
        width: 20px;
        height: 20px;
        stroke: white;
        stroke-width: 2;
    }

.reserve-modal-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.modal-car-image-wrapper {
    width: 100%;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-car-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.modal-car-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.modal-car-price {
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
}

.reserve-modal-form {
    padding: 40px;
    overflow-y: auto;
}

.modal-form-header {
    margin-bottom: 25px;
}

.modal-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.modal-form-subtitle {
    font-size: 13px;
    color: #666;
}

.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

    .modal-tab-btn.active {
        color: #667eea;
    }

        .modal-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #667eea;
        }

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-form-group {
    margin-bottom: 15px;
}

.modal-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-form-input,
.modal-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

    .modal-form-input:focus,
    .modal-form-textarea:focus {
        outline: none;
        border-color: #667eea;
    }

.modal-form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .modal-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }

    .modal-submit-btn:active {
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 768px) {
    .reserve-modal {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }

    .reserve-modal-image {
        padding: 20px;
    }

    .modal-car-image-wrapper {
        height: 150px;
    }

    .reserve-modal-form {
        padding: 25px;
    }

    .modal-form-row {
        grid-template-columns: 1fr;
    }
}

