/* Exo Car Fleet Styles - Enhanced Design v2.0.6 */
.exo-car-fleet-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.exo-car-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.exo-car-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    width: 100%;
}

.exo-car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(197, 0, 0, 0.15);
}

.exo-car-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
}

.exo-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exo-car-card:hover .exo-car-image {
    transform: scale(1.08);
}

.exo-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 16px;
    font-weight: 600;
}

.exo-service-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* HIDE THE GRAY CIRCULAR SERVICE BADGE ICON */
.exo-service-badge {
    display: none !important;
}

/* ENHANCED LUXURY BADGE - SMALLER ON MOBILE */
.exo-luxury-badge {
    background: linear-gradient(135deg, #C50000 0%, #8B0000 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(197, 0, 0, 0.3);
}

.exo-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.exo-rating i {
    color: #FFD700;
    font-size: 14px;
}

.exo-car-details {
    padding: 25px;
}

/* REDUCED FONT SIZE FOR CAR NAME - FITS LONG NAMES */
.exo-car-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
}

/* ENHANCED SPEC ICONS - BIGGER ON DESKTOP WITH BOLDER TEXT */
.exo-car-specs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.exo-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.exo-spec-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    background: #f8f9fa;
    border-radius: 10px;
    flex-shrink: 0;
}

.exo-spec-icon i {
    font-size: 18px;
    color: #C50000;
    font-weight: bold;
}

.exo-spec-value {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    word-break: break-word;
}

.exo-pricing-section {
    margin-bottom: 25px;
    text-align: center;
}

.exo-price {
    font-size: 28px;
    font-weight: 800;
    color: #C50000;
    line-height: 1;
    margin-bottom: 5px;
}

.exo-price-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}

/* ENHANCED CTA BUTTONS - COMPACT WITH REDUCED SPACING */
.exo-cta-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: stretch;
}

.exo-cta-btn {
    padding: 8px 6px;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    min-height: 42px;
    flex: 1;
}

.exo-cta-btn span {
    display: block;
    line-height: 1;
}

.exo-btn-call {
    background: #2563eb;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.exo-btn-call:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.exo-btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.exo-btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.exo-btn-rent {
    background: linear-gradient(135deg, #C50000 0%, #a10000 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(197, 0, 0, 0.2);
}

.exo-btn-rent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 0, 0, 0.35);
    background: linear-gradient(135deg, #d60000 0%, #C50000 100%);
}

.exo-cta-btn i {
    font-size: 12px;
}

.exo-no-cars {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #6c757d;
}

/* Tablet Styles */
@media (max-width: 1200px) {
    .exo-car-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .exo-car-name {
        font-size: 14px;
    }
}

/* Mobile Styles - ALL 4 ICONS IN ONE ROW */
@media (max-width: 768px) {
    .exo-car-listings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* KEEP ALL 4 SPECS IN ONE ROW ON MOBILE */
    .exo-car-specs {
        display: flex;
        flex-direction: row;
        gap: 6px;
        justify-content: space-between;
    }
    
    .exo-spec-item {
        flex: 1;
        min-width: 0;
    }
    
    .exo-spec-icon {
        width: 36px;
        height: 36px;
    }
    
    .exo-spec-icon i {
        font-size: 16px;
    }
    
    .exo-spec-value {
        font-size: 11px;
        font-weight: 600;
    }

    .exo-car-name {
        font-size: 14px;
        margin-bottom: 15px;
        min-height: 40px;
    }

    .exo-price {
        font-size: 24px;
    }
    
    /* SMALLER LUXURY BADGE ON MOBILE */
    .exo-luxury-badge {
        padding: 6px 16px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    /* COMPACT MOBILE CTA BUTTONS */
    .exo-cta-buttons {
        gap: 6px;
    }
    
    .exo-cta-btn {
        padding: 6px 4px;
        font-size: 10px;
        min-height: 38px;
        gap: 1px;
    }
    
    .exo-cta-btn i {
        font-size: 11px;
    }
    
    .exo-car-details {
        padding: 20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .exo-car-fleet-container {
        padding: 10px;
    }
    
    .exo-car-listings-grid {
        gap: 15px;
    }
    
    .exo-car-image-wrapper {
        height: 200px;
    }
    
    /* EVEN SMALLER ICONS ON TINY SCREENS */
    .exo-spec-icon {
        width: 32px;
        height: 32px;
    }
    
    .exo-spec-icon i {
        font-size: 14px;
    }
    
    .exo-spec-value {
        font-size: 10px;
    }
    
    .exo-car-name {
        font-size: 13px;
        min-height: 38px;
    }
    
    .exo-price {
        font-size: 22px;
    }
    
    /* EVEN SMALLER BADGE ON SMALL MOBILE */
    .exo-luxury-badge {
        padding: 5px 12px;
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    /* ULTRA COMPACT MOBILE CTA BUTTONS */
    .exo-cta-buttons {
        gap: 4px;
    }
    
    .exo-cta-btn {
        padding: 5px 3px;
        font-size: 9px;
        min-height: 36px;
        gap: 1px;
    }
    
    .exo-cta-btn i {
        font-size: 10px;
    }
}