/* ============================================
   PAGES SERVICES — CSS PARTAGÉ
   ============================================ */

.service-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: white;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(34,197,94,.15) 0%, transparent 70%);
}
.service-hero-inner { position: relative; z-index: 1; }
.service-hero-badge {
    display: inline-block;
    background: rgba(34,197,94,.2);
    border: 1px solid rgba(34,197,94,.4);
    color: #4ade80;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.service-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.service-hero h1 span { color: #4ade80; }
.service-hero-sub {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.service-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.service-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.service-hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #4ade80;
}
.service-hero-stat span { font-size: .82rem; color: #64748b; }

/* Sections */
.service-section { padding: 4rem 0; }
.service-section-alt { background: #f8fafc; }
.service-section-dark { background: #0f172a; color: white; }

.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #16a34a;
    margin-bottom: .5rem;
}
.section-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-title-white { color: white; }
.section-sub { color: #64748b; font-size: 1rem; line-height: 1.7; max-width: 600px; }

/* Avantages cards */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.avantage-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: box-shadow .2s, transform .2s;
}
.avantage-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.avantage-icon { font-size: 2rem; margin-bottom: .75rem; }
.avantage-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
.avantage-card p { font-size: .88rem; color: #64748b; line-height: 1.6; }

/* Étapes */
.etapes-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.etape {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}
.etape-num {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .9rem;
    flex-shrink: 0;
}
.etape h3 { font-size: .95rem; font-weight: 700; color: #0f172a; margin-bottom: .3rem; }
.etape p { font-size: .85rem; color: #64748b; line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.faq-item {
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: .92rem;
    color: #0f172a;
    cursor: pointer;
    gap: 1rem;
}
.faq-question:hover { background: #f8fafc; }
.faq-chevron { transition: transform .25s; font-style: normal; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: .88rem;
    color: #64748b;
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* Zone intervention */
.villes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}
.ville-badge {
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.3);
    color: #15803d;
    padding: .35rem .9rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
}

/* CTA final */
.service-cta {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.service-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: .75rem; }
.service-cta p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.service-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
    background: white;
    color: #16a34a;
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
    transition: opacity .15s;
}
.btn-white:hover { opacity: .9; }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.6);
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
    transition: border-color .15s;
}
.btn-outline-white:hover { border-color: white; }

/* Breadcrumb */
.breadcrumb {
    padding: .75rem 0;
    font-size: .82rem;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.breadcrumb a { color: #16a34a; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }

/* Responsive */
@media (max-width: 768px) {
    .service-hero { padding: 3rem 0 2.5rem; }
    .service-hero-stats { gap: 1.5rem; }
    .service-section { padding: 3rem 0; }
    .avantages-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .avantages-grid { grid-template-columns: 1fr; }
    .service-hero-ctas { flex-direction: column; }
    .service-cta-btns { flex-direction: column; align-items: center; }
}
