/* ===== PRESTATIONS PAGE ===== */
.prestations-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    text-align: center;
    overflow: hidden;
}
.prestations-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-clair) 100%);
    z-index: -1;
}
.prestations-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../pictures/toiture.png') center/cover no-repeat;
    opacity: 0.15;
}
.prestations-hero-content {
    max-width: 700px;
}
.prestations-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: var(--blanc);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.prestations-hero .hero-badge i {
    color: var(--rouge);
    margin-right: 8px;
}
.prestations-hero h1 {
    font-size: 2.8rem;
    color: var(--blanc);
    line-height: 1.2;
    margin-bottom: 20px;
}
.prestations-hero .hero-desc {
    color: #ccd9e8;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.prestations-intro {
    padding: 60px 40px;
    background: var(--gris-clair);
}

.prestations-list {
    padding: 60px 40px;
}

.prestations-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.prestation-item {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--blanc);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.prestation-item.reverse {
    grid-template-columns: 400px 1fr;
}

.prestation-item.reverse .prestation-content {
    order: 2;
}

.prestation-item.reverse .prestation-img {
    order: 1;
}

.prestation-icon {
    display: none;
}

.prestation-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prestation-content h3 {
    font-size: 1.8rem;
    color: var(--bleu);
    font-weight: 700;
}

.prestation-tag {
    display: inline-block;
    background: var(--bleu);
    color: var(--blanc) !important;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.prestation-content p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.prestation-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.prestation-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--texte);
}

.prestation-features li i {
    color: var(--rouge);
    font-size: 0.75rem;
}

.prestation-img {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: 16px;
}

.success-message i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

/* ===== RESPONSIVE (prestations) ===== */
@media (max-width: 900px) {
    .prestation-item,
    .prestation-item.reverse {
        grid-template-columns: 1fr;
    }
    .prestation-item.reverse .prestation-content {
        order: 1;
    }
    .prestation-item.reverse .prestation-img {
        order: 2;
    }
    .prestation-img {
        height: 220px;
    }
    .prestations-hero h1 {
        font-size: 2rem;
    }
    .prestation-item {
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    .prestations-hero {
        padding: 120px 20px 60px;
    }
    .prestations-intro,
    .prestations-list {
        padding: 40px 20px;
    }
    .prestations-hero h1 {
        font-size: 1.7rem;
    }
    .prestations-hero .hero-desc {
        font-size: 1rem;
    }
    .prestation-content h3 {
        font-size: 1.4rem;
    }
}
