/* ══════════════════════════════════════════════
   AutoLogic Bangladesh — Services Specific Styles
   ══════════════════════════════════════════════ */

.services-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    padding: 8rem 0 4rem;
    color: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-filter-bar {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 130px; /* Adjust based on header + car bar height */
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.service-categories {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.category-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    background: #f1f5f9;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1.5px solid transparent;
}

.category-btn:hover {
    background: #e2e8f0;
}

.category-btn.active {
    background: var(--primary);
    color: #fff;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

/* Service Details Page */
.service-details-container {
    padding: 6rem 0;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.service-main-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-feature-list {
    margin-bottom: 2rem;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-feature-list i {
    color: var(--success);
}

.service-sidebar {
    position: sticky;
    top: 160px;
}

.booking-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.booking-card .price-display {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.booking-card .price-display .label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.booking-card .price-display .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

@media (max-width: 991px) {
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
}
