    :root {
        --primary: #240046;
    --secondary: #9753a1;
    --gradient_primary: radial-gradient( circle at top, #000080 0%, #240046 100% );
    --gradient_secondary: radial-gradient( circle at top, #c771d4 0%, #9753a1 100% );

        --brand-purple: #510087;
        --brand-yellow: #fdc300;
    }
      
    .fleet-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
        height: 100%;
        background: linear-gradient(180deg, var(--theme-color1_light), var(--theme-color1));
    }
    
    /* Arrow connector between hero and fleet section */
    .fleet-section::after {
        content: "";
        position: absolute;
        top: -0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        z-index: 2;
    }
    
    .fleet-hero {
        padding: 30px 0 60px;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient( 135deg, var(--secondary), rgba(81, 0, 135, 0.55) );
        border-radius: 20px;
        margin: 15px;
        margin-bottom:80px;
    }
    
    .fleet-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.3;
    }
    
    .fleet-hero .boxcar-container {
        position: relative;
        z-index: 1;
    }
    
    .fleet-hero h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        /* text-shadow: 0 2px 10px rgba(0,0,0,0.2); */
        color: var(--secondary);
    }
    
    .fleet-hero p {
        font-size: 20px;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    
    .fleet-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 40px;
    }
    
    .fleet-stat {
        text-align: center;
        color: #3d0066; 
    }
    
    .fleet-stat-number {
        font-size: 48px;
        font-weight: 800;
        color:#fff;
    }
    
    .fleet-stat-label {
        font-size: 14px;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 5px;
    }
    
    .fleet-section {
        padding: 60px 0 80px;
        position: relative;
    }
    
    .category-header {
        margin-bottom: 35px;
    }
    
    .category-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #231f20;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .category-header p {
        color: #4d4547;
        font-size: 15px;
    }
    
    .vehicle-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 24px;
        margin-bottom: 60px;
    }
    
    /* Car Result Card Styling - Same as booking results */
    .car-result-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .car-result-card:hover {
        box-shadow: 0 8px 24px rgba(81, 0, 135, 0.15);
        transform: translateY(-4px);
    }
    
    .car-card-header {
        padding: 20px 20px 16px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
    }
    
    .car-title-section {
        flex: 1;
    }
    
    .car-name {
        font-size: 18px;
        font-weight: 700;
        color: #050B20;
        margin: 0 0 4px 0;
        line-height: 1.2;
    }
    
    .car-subtitle {
        font-size: 13px;
        color: #616670;
        margin: 0;
    }
    
    .car-image-wrapper {
        position: relative;
        padding: 0 20px;
        margin-bottom: 16px;
    }
    
    .car-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        max-height: 160px;
    }
    
    .car-image-wrapper .no-image {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 160px;
        color: #cbd5e0;
        font-size: 64px;
    }
    
    .car-specs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        padding: 0 20px 16px;
        border-bottom: 1px solid #F3F4F6;
    }
    
    .spec-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: #616670;
    }
    
    .spec-item i,
    .spec-item svg {
        color: var(--secondary);
        font-size: 18px;
    }
    
    .spec-item svg {
        width: 18px;
        height: 18px;
        fill: var(--secondary);
    }
    
    .book-form {
        padding: 0 20px 20px;
        margin-top: auto;
    }
    
    .book-now-btn {
        width: 100%;
       background: var(--theme-color1);
        color: #fff;
        border: none;
        padding: 14px 24px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-transform: uppercase;
        text-decoration: none;
    }
    
    .book-now-btn:hover {
        background: #231f20;
        transform: translateY(-2px);
        text-decoration: none;
        color: #fff;
}
    .book-now-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .error-message {
        background: #fed7d7;
        color: #c53030;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        margin: 40px 0;
    }
    
    .no-vehicles {
        text-align: center;
        padding: 80px 20px;
        color: #718096;
    }
    
    .no-vehicles i {
        font-size: 72px;
        margin-bottom: 20px;
        color: #cbd5e0;
    }
    
    @media (max-width: 768px) {
        .fleet-hero h1 {
            font-size: 36px;
        }
        
        .fleet-hero p {
            font-size: 16px;
        }
        
        .vehicle-grid {
            grid-template-columns: 1fr;
        }
        
        .fleet-stats {
            flex-direction: column;
            gap: 30px;
        }
        
        .car-name {
            min-height: auto;
        }
    }
    
