/* Vehicle Card Enhancements - Consistent Colors */
.vehicle-price {
    background: linear-gradient(135deg, var(--primary-green, #128C7E) 0%, var(--secondary-green, #075E54) 100%);
    color: var(--text-white, white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
}

.price-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.vehicle-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.vehicle-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.vehicle-placeholder span {
    font-size: 16px;
    font-weight: 600;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.review-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.review-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.review-modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.review-modal-close:hover {
    color: #333;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green, #128C7E) 0%, var(--secondary-green, #075E54) 100%);
    color: var(--text-white, white);
    padding: 60px 0;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vehicle-price {
        padding: 10px;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .vehicle-placeholder {
        padding: 30px 15px;
    }
    
    .vehicle-placeholder i {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
