/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY */
body {
    background: #fff;
    color: #000;
    overflow-x: hidden;
}

/*  HERO  */

.hero {
    position: relative;
    height: 100svh;
    width: 100%;
     background: url("img/cover.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@supports not (height: 100svh) {
    .hero {
        height: 100vh;
    }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.10);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 90%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-content h1 span {
    display: block;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta {
    background: #25D366;
    color: #fff;
    padding: 14px 26px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}
/* --- CTA WHATSAPP HERO --- */
.cta-container {
    margin-top: 25px;
    text-align: center;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    padding: 18px 32px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
}

/* Légère pulsation soft */
.cta-whatsapp {
    animation: pulse 2.6s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.cta-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.cta-icon {
    font-size: 24px;
}

.cta-subtext {
    font-size: 18px !important;
    margin-top: 10px !important;
    font-weight: 500 !important;
    opacity: 0.75 !important;
    color: rgba(255,255,255,0.85) !important; 

    text-shadow:
        0 0 3px rgba(0, 0, 0, 0.35);  /* ombre douce */
        /* pas de glow blanc ici */
}

/*  titres pour mobile  */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-whatsapp {
        padding: 14px 24px;
        font-size: 17px;
    }

    .cta-subtext {
        font-size: 12px !important;
        opacity: 0.65 !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 12px;
    }
}

/*  titres pour mobile  */


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-whatsapp {
        padding: 14px 24px;
        font-size: 17px;
    }

    .cta-subtext {
        font-size: 12px !important;
        opacity: 0.65 !important;
    }
}


/*  URGENCE  */
.urgence {
    background: #fff7e6;
    border-bottom: 2px solid #ffbb55;
    padding: 20px 0;        /* PLUS GRAND */
    text-align: center;
    font-weight: 800;       /* PLUS FORT */
    font-size: 20px;        /* PLUS GRAND */
    letter-spacing: 0.3px;  /* MEILLEURE LISIBILITÉ */
}

.urgence p {
    margin: 0;
    color: #c97400;         /* Couleur d'urgence premium */
    font-size: 20px;        /* Harmonisé */
}


/*  SECTIONS GENERALES  */
.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section.alt {
    background: #f2f2f2;
}

/*  TITRES  */
.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 700;
    color: #333;
}

/* === FOOTER === */

.footer {
    background: #111;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-copy {
    color: #ddd;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-link {
    color: #f2f2f2;           /* plus blanc, + lisible */
    font-size: 15px;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ---------------- WHATSAPP FLOATING ---------------- */

.whatsapp-floating {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.28);
    background: #20bd5a;
}

.whatsapp-floating:active {
    transform: translateY(0);
}

.wa-icon {
    font-size: 18px;
    line-height: 1;
    display: block;
}

.wa-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whatsapp-floating {
        right: 14px;
        bottom: 14px;
        padding: 11px 14px;
        font-size: 14px;
    }

    .wa-icon {
        font-size: 16px;
    }
}

/* === FAQ PREMIUM === */
.faq-premium {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-premium h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 45px;
    color: #1f1f1f;
}

.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid #e6e6e6;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    cursor: pointer;
    transition: color .2s ease;
}

.faq-item h3:hover {
    color: #25D366;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* CTA Bloc */
.faq-cta {
    margin-top: 45px;
    text-align: center;
    background: #f7f7f7;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.faq-cta p {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.faq-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(37,211,102,0.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.faq-whatsapp:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(37,211,102,0.45);
}

/* ---------------- REVIEWS ---------------- */

.reviews {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin-top: 80px;
}

.reviews h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 28px 32px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: left;
}

.stars {
    font-size: 20px;
    margin-bottom: 14px;
}

.review-card p {
    line-height: 1.55;
    font-size: 16px;
    color: #333;
}

.review-author {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    color: #666;
}

.reviews-cta {
    margin-top: 40px;
    font-size: 18px;
    color: #333;
    text-align: center;
    margin: 50px auto 30px;
}

.reviews-cta p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #333;
}

.reviews-cta .cta-whatsapp {
    display: inline-block;
    margin-left: 12px;
    padding: 12px 22px;
    background: #25D366;
    color: white;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.reviews-cta .cta-whatsapp:hover {
    transform: scale(1.05);
    background: #1ebe5c;
}


/* ---------------- PROCESS SECTION ---------------- */
.process-section {
    background: #f5f5f5;
    padding: 60px 20px;
    border-radius: 38px;
    max-width: 1000px;
    margin: 50px auto;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f1f1f;
}

/* ---------------- STEPS (VERTICAL PREMIUM) ---------------- */
.steps {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

/* Bloc STEP */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Cercle numéroté premium */
.step-number {
    width: 82px;
    height: 82px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Texte de l'étape */
.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center;
    line-height: 1.45;
    max-width: 320px;
}

/* Ligne entre les steps */
.step-line {
    width: 2px;
    height: 55px;
    background: #d3d3d3;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 480px) {
    .process-section {
        padding: 40px 18px;
        border-radius: 28px;
    }

    .step-number {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }

    .step-title {
        font-size: 17px;
        max-width: 260px;
    }

    .step-line {
        height: 45px;
    }
}

/* ---------------- WHY CHOOSE US ---------------- */

.why {
    background: #f5f5f5;
    padding: 60px 20px;
    border-radius: 30px;
    margin: 60px 0;
    text-align: center;
}

.why h2 {
    font-size: 2rem;
    margin-bottom: 45px;
    color: #222;
}

.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.why-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 25px;
    flex: 1;
    min-width: 260px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform .2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.why-card p {
    font-size: .95rem;
    color: #555;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
    .why-grid {
        flex-direction: column;
    }
}

/* ---------------- SERVICES ---------------- */

.services {
    background: #f5f5f5;
    padding: 60px 20px;
    border-radius: 30px;
    margin: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 45px;
    color: #222;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 25px;
    flex: 1;
    min-width: 260px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    font-size: .95rem;
    color: #555;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }
}

/* === ICON CARDS GENERIC STYLE === */
.icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 28px;
    min-height: 220px;      /* même hauteur des blocs */

}

.icon-card {
    background: #fff;
    border-radius: 16px;                    /* moins cartoon */
    padding: 28px 26px;                     /* plus harmonieux */
    box-shadow: 0 6px 14px rgba(0,0,0,0.06); /* shadow premium */
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

.icon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.icon-svg {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px;
    max-height: 50px;
    display: block;
    object-fit: contain;
    margin: 0 auto 18px;    /* FIX DÉFINITIF */
}


.icon-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.icon-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #333;
}

/* Spacing around sections */
.section.why,
.section.services {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 20px;     /* au lieu de 70px */
    margin-top: 45px;       /* réduit, plus propre */
}


.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 800;
}

.seo-hide {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.realisations {
    text-align: center;
    margin-bottom: 60px;
}

.realisations h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}

/* Container */
.carousel {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* Track */
.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* Items */
.carousel-item {
    background: none;
    min-width: 100%;
    height: 520px;
    padding: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.carousel-buttons {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.carousel-buttons button {
    background: white;
    border: 1px solid #ddd;
    font-size: 22px;
    padding: 12px 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.carousel-buttons button:hover {
    transform: scale(1.12);
    border-color: #bbb;
    box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}

@media(max-width: 480px){
    .carousel-item {
        height: 250px;
    }
}

/* === ZONES D’INTERVENTION === */

.zones {
    max-width: 950px;
    margin: 60px auto;
    text-align: center;
    padding: 40px 20px;
}

.zones h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.zones-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
}

.zones-list {
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.8;
}

.zones-bottom {
    font-size: 17px;
    color: #444;
    margin-top: 20px;
    line-height: 1.6;
}

/* Mobile */
@media(max-width: 480px) {
    .zones {
        padding: 30px 15px;
    }
    .zones h2 {
        font-size: 24px;
    }
    .zones-list,
    .zones-text,
    .zones-bottom {
        font-size: 16px;
        line-height: 1.6;
    }
}
