/* ============================================
   SERVICES PAGE - Styles Additionnels
   ============================================ */

/* Hero Section */
.services-hero {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-hero .section-header h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.services-hero .section-header p {
    font-size: 1.1rem;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Services Details */
.services-details {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail.alternate .service-content {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail.alternate .service-content > * {
    direction: ltr;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-text > p {
    font-size: 1.1rem;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-text h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.6;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    object-fit: cover;
}

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

    .service-detail.alternate .service-content {
        direction: ltr;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }

    .service-detail {
        margin-bottom: 3rem;
    }
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--foreground);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.process-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.process-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.process-card p {
    color: var(--foreground);
    font-size: 0.95rem;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-arrow {
        display: none;
    }
}

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

/* Responsive adjustments */
@media (max-width: 480px) {
    .services-hero .section-header h1 {
        font-size: 1.8rem;
    }

    .service-text h2 {
        font-size: 1.5rem;
    }

    .service-text h3 {
        font-size: 1.1rem;
    }
}
