/* Motorcycles Page */
.motorcycles-page {
    padding: 3rem 0;
}

.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;
}

/* Motorcycles Grid */
.motorcycles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.motorcycle-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);
}

.motorcycle-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.motorcycle-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.motorcycle-content {
    padding: 1.5rem;
}

.motorcycle-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.motorcycle-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;
}

.motorcycle-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.375rem;
}

.spec-item {
    text-align: center;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--brand-silver);
    margin-bottom: 0.25rem;
}

.spec-value {
    font-weight: 700;
    font-size: 0.875rem;
}

.motorcycle-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-red);
    margin-bottom: 1rem;
    text-align: center;
}

.motorcycle-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-details {
    flex: 2;
}

.btn-book {
    flex: 1;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, var(--brand-red), #b91c1c);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .motorcycles-grid {
        grid-template-columns: 1fr;
    }
    
    .motorcycle-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}