/* ============================================
   SERVICES PAGE — STYLES
   ============================================ */

/* ---------- Service Cards Sections ---------- */
.service-cards-section {
    padding: 80px 0;
    background: var(--white);
}

.service-cards-section:nth-of-type(even) {
    background: var(--gray-50);
}

/* ---------- Service Intro ---------- */
.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-intro.reverse {
    direction: rtl;
}

.service-intro.reverse>* {
    direction: ltr;
}

.category-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.restaurant-badge {
    background: linear-gradient(135deg, var(--deep-purple), #6e52b5);
}

.carwash-badge {
    background: linear-gradient(135deg, var(--primary), #0095e8);
}

.service-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.service-intro-content p {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 1.02rem;
}

.service-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-intro-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-intro-image:hover img {
    transform: scale(1.04);
}

/* ---------- Service Cards Grid ---------- */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--deep-purple));
    transition: height var(--transition);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.svc-card:hover::before {
    height: 100%;
}

.svc-card-wide {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(73, 57, 121, 0.1), rgba(212, 178, 228, 0.2));
    color: var(--deep-purple);
}

.svc-icon.carwash-icon {
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.1), rgba(0, 149, 232, 0.15));
    color: var(--primary);
}

.svc-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.svc-card>p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.svc-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.svc-features i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .service-intro {
        grid-template-columns: 1fr;
    }

    .service-intro.reverse {
        direction: ltr;
    }

    .service-intro-image img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .svc-card-wide {
        max-width: 100%;
    }
}