/* Assistance Page Styles */
.assistance-page {
    padding: 3rem 0;
}

.assistance-page .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.page-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--brand-silver);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--brand-silver);
    color: var(--brand-silver);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Vehicle Card - Similar to Motorcycle Card */
.vehicle-card {
    background: rgba(31, 41, 55, 0.8);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.vehicle-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.vehicle-card .vehicle-content {
    padding: 1.5rem;
}

.vehicle-card .vehicle-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vehicle-card .vehicle-type {
    display: inline-block;
    background: var(--brand-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.vehicle-card .vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.375rem;
}

.vehicle-card .spec-item {
    text-align: center;
}

.vehicle-card .spec-label {
    font-size: 0.75rem;
    color: var(--brand-silver);
    margin-bottom: 0.25rem;
}

.vehicle-card .spec-value {
    font-weight: 700;
    font-size: 0.875rem;
}

.vehicle-card .vehicle-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-red);
    margin-bottom: 1rem;
    text-align: center;
}

.vehicle-card .vehicle-actions {
    display: flex;
    gap: 0.5rem;
}

.vehicle-card .btn-details {
    flex: 2;
    padding: 0.75rem;
    background: var(--brand-red);
    border: none;
    color: var(--brand-white);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.vehicle-card .btn-details:hover {
    background: #cc2936;
}

.vehicle-card .btn-book {
    flex: 1;
    padding: 0.75rem;
    background: var(--brand-red);
    color: var(--brand-white);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.vehicle-card .btn-book:hover {
    background: #cc2936;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, var(--brand-red), #b91c1c);
    padding: 4rem 0;
    margin-top: 4rem;
    text-align: center;
}

.booking-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.booking-cta .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .vehicle-card .vehicle-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .vehicle-card .vehicle-actions {
        flex-direction: column;
    }
}
