/* ========================================
   FLEETS PAGE CUSTOM STYLES
   Airport Cars - Fleet Listing Page
   ======================================== */

/* ========================================
   PAGE BANNER
   ======================================== */
.page-banner {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.7)), url('../images/fleet.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(8, 7, 6, 0.5) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-banner-breadcrumb a {
    color: #deaf25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner-breadcrumb a:hover {
    color: #f0c840;
    text-decoration: none;
}

.page-banner-breadcrumb i {
    font-size: 12px;
}

.page-banner h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 15px 0;
    animation: fadeInUp 0.8s ease;
}

.page-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FLEET CATEGORIES SECTION
   ======================================== */
.fleet-categories {
    padding: 80px 0;
    background: #080706;
}

.fleet-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(222, 175, 37, 0.1);
    border: 1px solid rgba(222, 175, 37, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    color: #deaf25;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-main-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.fleet-title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #deaf25, transparent);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.fleet-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fleet Category Carousel */
.fleet-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 50px;
}

.fleet-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(222, 175, 37, 0.1);
    border: 2px solid rgba(222, 175, 37, 0.3);
    border-radius: 50%;
    color: #deaf25;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.fleet-nav-btn:hover {
    background: #deaf25;
    border-color: #deaf25;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.fleet-nav-prev {
    left: 0;
}

.fleet-nav-next {
    right: 0;
}

.fleet-category-carousel {
    padding: 20px 0;
    background: transparent;
}

.owl-carousel {
    margin: 0 0 20px;
    background: rgba(255, 255, 255, 0) !important;
    direction: ltr !important;
}

@media (max-width: 768px) {
    .fleet-nav-btn {
        display: none !important;
    }
}

.fleet-category-item {
    padding: 10px;
}

.fleet-category-card {
    background: rgba(18, 18, 18, 0.8);
    border: 2px solid rgba(222, 175, 37, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    user-select: none;
}

.fleet-category-card:hover {
    border-color: #deaf25;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(222, 175, 37, 0.3);
}

.fleet-category-card:active {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(222, 175, 37, 0.2);
}

.fleet-category-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a0909;
}

.fleet-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.fleet-category-card:hover .fleet-category-image img {
    transform: scale(1.1);
}

.fleet-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(222, 175, 37, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fleet-category-card:hover .fleet-category-overlay {
    opacity: 1;
}

.fleet-category-overlay i {
    font-size: 36px;
    color: #000;
}

.fleet-category-content {
    padding: 25px 20px;
    text-align: center;
}

.fleet-category-content h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.fleet-category-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Owl Carousel Dots */
.fleet-category-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.fleet-category-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(222, 175, 37, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.fleet-category-carousel .owl-dot.active {
    background: #deaf25;
    width: 35px;
    border-radius: 6px;
}

/* ========================================
   AVAILABLE VEHICLES SECTION
   ======================================== */
.available-vehicles {
    padding: 80px 0;
    background: #0a0909;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Vehicle List Layout (Horizontal Cards) */
.vehicles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.vehicle-list-card {
    display: flex;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 20px;
    gap: 25px;
    align-items: center;
}

.vehicle-list-card:hover {
    border-color: rgba(222, 175, 37, 0.5);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(222, 175, 37, 0.2);
}

.vehicle-list-image {
    flex: 0 0 280px;
    height: 180px;
    background: rgba(8, 8, 8, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(222, 175, 37, 0.1);
}

.vehicle-list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
}

.vehicle-list-card:hover .vehicle-list-image img {
    transform: scale(1.08);
}

.vehicle-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vehicle-list-title {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.vehicle-list-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.spec-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.spec-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(0) saturate(100%) invert(77%) sepia(66%) saturate(430%) hue-rotate(358deg) brightness(95%) contrast(93%);
}

.vehicle-list-action {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.rental-days,
.rental-rate {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: rgba(222, 175, 37, 0.08);
    border: 1px solid rgba(222, 175, 37, 0.25);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rental-days:hover,
.rental-rate:hover {
    background: rgba(222, 175, 37, 0.12);
    border-color: rgba(222, 175, 37, 0.4);
}

.days-label,
.rate-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.view-details-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #deaf25, #f0c840);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 175, 37, 0.3);
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #f0c840, #deaf25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 175, 37, 0.5);
    text-decoration: none;
    color: #000;
}

/* Vehicle Card */
.vehicle-card {
    background: rgba(18, 18, 18, 0.8);
    border: 2px solid rgba(222, 175, 37, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vehicle-card:hover {
    border-color: #deaf25;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(222, 175, 37, 0.3);
}

.vehicle-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: #0a0909;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-image img {
    width: 90%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(222, 175, 37, 0.9);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle-badge.popular {
    background: linear-gradient(135deg, #deaf25, #f0c840);
}

.vehicle-badge.eco {
    background: linear-gradient(135deg, #7eb62e, #6ba524);
    color: #fff;
}

.vehicle-content {
    padding: 25px 20px;
}

.vehicle-content h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.spec-item i {
    color: #deaf25;
    font-size: 14px;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    color: #deaf25;
    font-weight: 700;
}

.price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.vehicle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #deaf25;
    color: #deaf25;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vehicle-btn:hover {
    background: #deaf25;
    color: #000;
    transform: translateX(5px);
    text-decoration: none;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.1), rgba(222, 175, 37, 0.05));
    border: 2px solid rgba(222, 175, 37, 0.3);
    color: #deaf25;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    border-color: #deaf25;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(222, 175, 37, 0.3);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* ========================================
   CATEGORY INFO SECTION
   ======================================== */
.category-info-section {
    padding: 60px 0;
    background: #0a0909;
}

.category-info-content h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.category-info-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
}

.category-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.category-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-feature:hover {
    background: rgba(222, 175, 37, 0.05);
    border-color: rgba(222, 175, 37, 0.3);
    transform: translateY(-5px);
}

.category-feature i {
    font-size: 28px;
    color: #deaf25;
}

.category-feature span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

/* ========================================
   VEHICLE LIST SECTION
   ======================================== */
.vehicle-list-section {
    padding: 80px 0;
    background: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #deaf25, #f0c840);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: rgba(222, 175, 37, 0.3);
    box-shadow: 0 15px 40px rgba(222, 175, 37, 0.2);
}

.vehicle-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #0a0909);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #deaf25, #f0c840);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.vehicle-badge.eco {
    background: linear-gradient(135deg, #7eb62e, #6ba524);
    color: #fff;
}

.vehicle-details {
    padding: 25px;
}

.vehicle-details h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.vehicle-specs i {
    color: #deaf25;
    font-size: 14px;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(222, 175, 37, 0.05);
    border-left: 3px solid #deaf25;
    border-radius: 5px;
}

.price-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 26px;
    color: #deaf25;
    font-weight: 700;
}

.price-amount small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.price-advance {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.vehicle-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.btn-view,
.btn-book {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.vehicle-card.vehicle-unavailable {
    opacity: 0.68;
    border-color: rgba(220, 53, 69, 0.35);
}

.vehicle-card.vehicle-unavailable:hover {
    transform: none;
    border-color: rgba(220, 53, 69, 0.35);
    box-shadow: none;
}

.vehicle-card.vehicle-unavailable:hover .vehicle-image img {
    transform: none;
}

.availability-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #f3a2aa;
    font-size: 12px;
    line-height: 1.5;
}

.btn-disabled,
.btn-disabled:hover {
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.35);
    color: #f3a2aa;
    cursor: not-allowed;
    transform: none;
    text-decoration: none;
}

.btn-book {
    background: linear-gradient(135deg, #deaf25, #ca9e1d);
    border: none;
    color: #000;
}

.btn-book:hover {
    background: linear-gradient(135deg, #f0c840, #deaf25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 175, 37, 0.4);
    text-decoration: none;
    color: #000;
}

/* ========================================
   WHY CATEGORY SECTION
   ======================================== */
.why-category-section {
    padding: 80px 0;
    background: #0a0909;
}

.why-category-section h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.why-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(222, 175, 37, 0.05);
    border-color: rgba(222, 175, 37, 0.3);
    transform: translateY(-10px);
}

.why-item i {
    font-size: 40px;
    color: #deaf25;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet View */
@media screen and (max-width: 1024px) {
    .category-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .category-info-section {
        padding: 40px 0;
    }

    .category-info-content h2 {
        font-size: 24px;
    }

    .category-info-content p {
        font-size: 14px;
    }

    .category-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vehicle-list-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vehicle-specs {
        grid-template-columns: 1fr;
    }

    .why-category-section {
        padding: 50px 0;
    }

    .why-category-section h2 {
        font-size: 28px;
    }

    .why-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Small Mobile View */
@media screen and (max-width: 480px) {
    .vehicle-image {
        height: 180px;
    }

    .vehicle-details {
        padding: 20px;
    }

    .vehicle-details h3 {
        font-size: 20px;
    }

    .price-amount {
        font-size: 22px;
    }

    .vehicle-actions {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 25px 15px;
    }

    .why-item i {
        font-size: 32px;
    }

    .why-item h3 {
        font-size: 18px;
    }
}

/* ========================================
   VEHICLE DETAIL MODAL
   ======================================== */
.vehicle-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-modal.active {
    display: flex;
}

.vehicle-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.vehicle-modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a1a1a, #0a0909);
    border: 2px solid rgba(222, 175, 37, 0.3);
    border-radius: 20px;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
    z-index: 1;
}

.vehicle-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(222, 175, 37, 0.1);
    border: 2px solid rgba(222, 175, 37, 0.3);
    border-radius: 50%;
    color: #deaf25;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.vehicle-modal-close:hover {
    background: #deaf25;
    color: #000;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

/* Modal Image Section */
.modal-image-section {
    position: relative;
    background: #000;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-image-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
    margin-bottom: 30px;
}

.modal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #deaf25, #f0c840);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.modal-badge.eco {
    background: linear-gradient(135deg, #7eb62e, #6ba524);
    color: #fff;
}

/* Modal Details Section */
.modal-details-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-details-section h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.modal-category {
    font-size: 14px;
    color: #deaf25;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Modal Price Box */
.modal-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 20px;
    background: rgba(222, 175, 37, 0.1);
    border-left: 4px solid #deaf25;
    border-radius: 10px;
}

.modal-price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.modal-price-amount {
    font-size: 36px;
    color: #deaf25;
    font-weight: 700;
}

.modal-price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.modal-advance-amount {
    display: block;
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Modal Specifications Grid */
.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.modal-spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-spec-item:hover {
    background: rgba(222, 175, 37, 0.05);
    border-color: rgba(222, 175, 37, 0.3);
}

.modal-spec-item i {
    font-size: 24px;
    color: #deaf25;
    min-width: 24px;
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.spec-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

/* Modal Description */
.modal-description {
    margin-top: 10px;
    width: 100%;
}

.modal-image-section .modal-description {
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-description h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-description p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-align: left;
}

/* Modal Features */
.modal-features {
    margin-top: 20px;
    width: 100%;
}

.modal-image-section .modal-features {
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-features h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.modal-features li i {
    color: #7eb62e;
    font-size: 14px;
}

/* Modal Addons Section */
.modal-addons {
    margin-top: 20px;
}

.modal-addons h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.addon-item {
    position: relative;
}

.addon-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.addon-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: rgba(35, 35, 35, 0.95);
    border: 2px solid rgba(60, 60, 60, 0.8);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
}

.addon-label:hover {
    background: rgba(45, 45, 45, 0.95);
    border-color: rgba(222, 175, 37, 0.4);
    transform: translateX(3px);
}

.addon-checkbox:checked + .addon-label {
    background: rgba(222, 175, 37, 0.12);
    border-color: rgba(222, 175, 37, 0.8);
    box-shadow: 0 0 15px rgba(222, 175, 37, 0.2);
}

.addon-checkbox:checked + .addon-label::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #deaf25;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.addon-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.8) grayscale(0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.addon-checkbox:checked + .addon-label .addon-icon {
    filter: brightness(1.1) grayscale(0);
    transform: scale(1.05);
}

.addon-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.addon-checkbox:checked + .addon-label .addon-name {
    color: #fff;
    font-weight: 600;
}

/* Modal Actions */
.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.modal-image-section .modal-actions {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(222, 175, 37, 0.2);
    gap: 12px;
}

.modal-btn-book,
.modal-btn-contact {
    padding: 13px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.modal-btn-book::before,
.modal-btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modal-btn-book:hover::before,
.modal-btn-contact:hover::before {
    width: 300px;
    height: 300px;
}

.modal-btn-book {
    background: linear-gradient(135deg, #deaf25 0%, #f0c840 50%, #deaf25 100%);
    background-size: 200% 100%;
    color: #000;
    box-shadow: 0 5px 20px rgba(222, 175, 37, 0.3);
}

.modal-btn-book:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(222, 175, 37, 0.5);
}

.modal-btn-book:disabled {
    background: rgba(220, 53, 69, 0.12);
    color: #f3a2aa;
    box-shadow: none;
    cursor: not-allowed;
}

.modal-btn-book:disabled:hover {
    background: rgba(220, 53, 69, 0.12);
    transform: none;
    box-shadow: none;
}

.modal-btn-book:disabled::before,
.modal-btn-book:disabled:hover::before {
    width: 0;
    height: 0;
}

.modal-btn-book:disabled i,
.modal-btn-book:disabled:hover i {
    transform: none;
}

.modal-btn-book:active {
    transform: translateY(-1px) scale(0.98);
}

.modal-btn-book i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.modal-btn-book:hover i {
    transform: scale(1.2) rotate(5deg);
}

.modal-btn-contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.modal-btn-contact:hover {
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.1), rgba(222, 175, 37, 0.15));
    border-color: rgba(222, 175, 37, 0.6);
    color: #deaf25;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(222, 175, 37, 0.3);
}

.modal-btn-contact:active {
    transform: translateY(-1px) scale(0.98);
}

.modal-btn-contact i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.modal-btn-contact:hover i {
    transform: scale(1.2) rotate(-5deg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Responsive Design */
@media screen and (max-width: 1024px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .modal-image-section {
        padding: 30px;
    }

    .modal-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-features ul {
        grid-template-columns: 1fr;
    }

    .modal-image-section .modal-features ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .vehicle-modal {
        padding: 10px;
    }

    .modal-body {
        padding: 20px;
        gap: 20px;
    }

    .vehicle-modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    .modal-details-section h2 {
        font-size: 24px;
    }

    .modal-price-amount {
        font-size: 28px;
    }

    .modal-specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .addons-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .modal-image-section .modal-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
        padding-top: 20px;
    }

    .modal-btn-book,
    .modal-btn-contact {
        padding: 16px 25px;
        font-size: 15px;
        width: 100%;
    }

    .modal-image-section {
        padding: 20px;
    }

    .modal-image-section img {
        max-height: 250px;
    }

    .modal-features ul {
        grid-template-columns: 1fr;
    }

    .modal-image-section .modal-features ul {
        grid-template-columns: 1fr;
    }

    /* Addons responsive styling */
    .addon-label {
        padding: 8px 12px;
        gap: 12px;
        min-height: 55px;
    }

    .addon-icon {
        width: 35px;
        height: 35px;
    }

    .addon-name {
        font-size: 13px;
    }

    .addon-checkbox:checked + .addon-label::after {
        width: 20px;
        height: 20px;
        font-size: 10px;
        right: 12px;
    }
}

@media screen and (max-width: 480px) {
    .modal-details-section h2 {
        font-size: 20px;
    }

    .modal-price-amount {
        font-size: 24px;
    }

    .modal-price-box {
        padding: 15px;
    }

    .modal-spec-item {
        padding: 12px;
    }

    .modal-btn-book,
    .modal-btn-contact {
        padding: 14px 20px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .modal-btn-book i,
    .modal-btn-contact i {
        font-size: 16px;
    }
}

/* ========================================
   CATEGORY DETAILS SECTION (DYNAMIC)
   ======================================== */

.category-details-section {
    padding: 80px 0;
    background: #080706;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.category-details-section.active {
    opacity: 1;
    max-height: none;
    overflow: visible;
}

.category-content {
    transition: opacity 0.3s ease;
}

/* Category Hero Section */
.category-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(8, 7, 6, 0.95));
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    border: 2px solid rgba(222, 175, 37, 0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hero-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.category-hero-placeholder i {
    font-size: 64px;
    color: rgba(222, 175, 37, 0.3);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.category-hero-placeholder h3 {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.category-hero-placeholder p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 7, 6, 0.9), rgba(18, 18, 18, 0.8));
    z-index: 1;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 60%;
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(222, 175, 37, 0.15);
    border: 1px solid rgba(222, 175, 37, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #deaf25;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-hero-title {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.category-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.category-hero-price {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(222, 175, 37, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 4px solid #deaf25;
}

.category-hero-price i {
    font-size: 24px;
    color: #deaf25;
}

.category-hero-price span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.category-hero-price strong {
    color: #deaf25;
    font-size: 20px;
    font-weight: 700;
}

.category-hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    z-index: 2;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.category-hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.category-hero-image img:hover {
    transform: scale(1.05);
}

/* Category Info Section */
.category-info {
    margin-bottom: 50px;
}

.category-info-card {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(8, 7, 6, 0.9));
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(222, 175, 37, 0.15);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.category-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.category-info-header i {
    font-size: 32px;
    color: #deaf25;
}

.category-info-header h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.category-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(222, 175, 37, 0.05);
    border-radius: 12px;
    border-left: 3px solid #deaf25;
    transition: all 0.3s ease;
}

.category-feature-item:hover {
    background: rgba(222, 175, 37, 0.1);
    transform: translateX(5px);
}

.category-feature-item i {
    font-size: 20px;
    color: #deaf25;
    min-width: 20px;
}

.category-feature-item span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Category Vehicles Section */
.category-vehicles-section {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Active Category Indicator */
.fleet-category-card.active-category {
    border-color: #deaf25;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.15), rgba(18, 18, 18, 0.95));
    transform: scale(1.05);
}

.fleet-category-card.active-category .fleet-category-overlay {
    opacity: 1;
    background: rgba(222, 175, 37, 0.2);
}

.fleet-category-card {
    cursor: pointer;
}

/* ========================================
   RESPONSIVE - CATEGORY DETAILS
   ======================================== */

@media screen and (max-width: 1024px) {
    .category-hero-content {
        max-width: 55%;
        padding: 40px;
    }

    .category-hero-image {
        width: 40%;
    }

    .category-hero-title {
        font-size: 36px;
    }

    .category-hero-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .category-details-section {
        padding: 40px 0;
    }

    .category-hero {
        min-height: auto;
        flex-direction: column;
    }

    .category-hero-content {
        max-width: 100%;
        padding: 30px;
        text-align: center;
    }

    .category-hero-image {
        position: relative;
        width: 80%;
        transform: none;
        margin-top: 30px;
    }

    .category-hero-image img {
        transform: none;
    }

    .category-hero-title {
        font-size: 28px;
    }

    .category-hero-description {
        font-size: 15px;
    }

    .category-hero-price {
        justify-content: center;
        padding: 15px 20px;
    }

    .category-info-card {
        padding: 25px;
    }

    .category-info-header h3 {
        font-size: 22px;
    }

    .category-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {

    .fleet-carousel-wrapper{
        padding: 0 10px;
    }

    .fleet-nav-btn{
        width: 20px;
        height: 20px;
    }


    .category-hero-content {
        padding: 20px;
    }

    .category-hero-title {
        font-size: 24px;
    }

    .category-hero-description {
        font-size: 14px;
    }

    .category-hero-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .category-hero-badge {
        padding: 8px 15px;
        font-size: 12px;
    }

    .category-info-card {
        padding: 20px;
    }

    .category-info-header {
        flex-direction: column;
        text-align: center;
    }

    .category-info-header h3 {
        font-size: 20px;
    }

    .category-feature-item {
        padding: 15px;
    }
}

