/* =========================================================
   Expert Vide Maison — Overrides du thème Clean
   Adapte les couleurs et finitions à notre identité métier
   ========================================================= */

:root {
    --evm-primary: #0d4d3a;      /* vert sapin (confiance, naturel) */
    --evm-primary-dark: #07301f;
    --evm-primary-light: #1a7556;
    --evm-accent: #d97706;       /* ocre/orangé (chaleur, action) */
    --evm-accent-dark: #b45309;

    /* Aliases utilisés par templates/zone.php et content/services/*.php */
    --color-primary: var(--evm-primary);
    --color-primary-dark: var(--evm-primary-dark);
    --color-primary-light: var(--evm-primary-light);
    --color-accent: var(--evm-accent);
    --color-accent-dark: var(--evm-accent-dark);
    --color-text: #1a1f2e;
    --color-text-muted: #5b6478;
    --color-text-light: #8b95a8;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8fa;
    --color-bg-soft: #fbf9f5;
    --color-border: #e3e6ec;
    --color-success: #16a34a;
    --color-warning: #eab308;
    --color-danger: #dc2626;

    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;

    --container-narrow: 920px;
    --container-medium: 1140px;
    --container-wide: 1320px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
    --shadow: 0 6px 16px rgba(13,77,58,.06);
    --shadow-lg: 0 16px 40px rgba(13,77,58,.12);
    --shadow-glow: 0 0 24px rgba(217,119,6,.25);
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Lora', serif;
}

body {
    font-family: var(--font-sans) !important;
}

h1, h2, h3, h4, h5, h6,
.section-title__title,
.evm-hero h1,
.thm-btn {
    font-family: var(--font-heading) !important;
}

.testimonial-text {
    font-family: var(--font-serif) !important;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.glass-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* === Conteneur étroit pour articles longs === */
.container-narrow {
    max-width: var(--container-narrow);
    margin-inline: auto;
    padding-inline: var(--space-4);
}

/* === Conteneur medium pour pages zones / pages contenu structuré === */
.container-medium {
    max-width: var(--container-medium);
    margin-inline: auto;
    padding-inline: var(--space-4);
}

/* === Élargissement global du thème Clean === */
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: var(--container-wide) !important;
    }
}
@media (min-width: 1400px) {
    .container,
    .container-xxl {
        max-width: var(--container-wide) !important;
    }
}

/* Articles : largeur de lecture confortable mais plus large */
.article-body {
    max-width: var(--container-narrow);
}
.article-body--wide {
    max-width: var(--container-medium);
}

/* === Galerie réalisations === */
.evm-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-block: 2rem;
}
.evm-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    background: var(--color-bg-soft);
    box-shadow: 0 4px 14px rgba(13,77,58,.08);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: zoom-in;
}
.evm-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.evm-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(13,77,58,.18);
}
.evm-gallery__item:hover img { transform: scale(1.06); }
.evm-gallery__item::after {
    content: attr(data-label);
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(7,48,31,.85));
    color: #fff;
    padding: 1.5rem .9rem .7rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .2px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s ease, transform .25s ease;
}
.evm-gallery__item:hover::after { opacity: 1; transform: translateY(0); }

/* Variantes */
.evm-gallery--mosaic {
    grid-auto-rows: 200px;
}
.evm-gallery--mosaic .evm-gallery__item { aspect-ratio: auto; }
.evm-gallery--mosaic .evm-gallery__item:nth-child(6n+1) { grid-row: span 2; }
.evm-gallery--mosaic .evm-gallery__item:nth-child(6n+4) { grid-column: span 2; }
@media (max-width: 900px) {
    .evm-gallery--mosaic .evm-gallery__item:nth-child(6n+1),
    .evm-gallery--mosaic .evm-gallery__item:nth-child(6n+4) {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* === Hero avec image de fond === */
.evm-hero--image {
    position: relative;
    background: linear-gradient(135deg, rgba(7,48,31,.88) 0%, rgba(13,77,58,.78) 100%),
                var(--evm-hero-img, none) center/cover no-repeat;
}
.evm-hero--image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(252,211,77,.15), transparent 60%);
    pointer-events: none;
}

/* === Carte image-texte (avant/après, intro service) === */
.evm-feature-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-block: 3rem;
}
@media (min-width: 900px) {
    .evm-feature-split { grid-template-columns: 1fr 1fr; }
    .evm-feature-split.reverse > :first-child { order: 2; }
}
.evm-feature-split__media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(13,77,58,.18);
    position: relative;
}
.evm-feature-split__media img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.evm-feature-split__media::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 4px solid rgba(217,119,6,.0);
    border-radius: 22px;
    transition: border-color .3s ease;
    pointer-events: none;
}
.evm-feature-split__media:hover::before { border-color: rgba(217,119,6,.6); }
.evm-feature-split__text h2 { margin-top: 0; }

/* Galerie en bandeau pour pages services */
.evm-strip-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin: 2rem 0;
}
@media (max-width: 800px) {
    .evm-strip-gallery { grid-template-columns: repeat(2, 1fr); }
}
.evm-strip-gallery > a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}
.evm-strip-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.evm-strip-gallery > a:hover img { transform: scale(1.08); }

/* === Lightbox simple === */
.evm-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7,12,18,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    cursor: zoom-out;
}
.evm-lightbox.open { display: flex; }
.evm-lightbox img {
    max-width: 95vw;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.evm-lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}
.evm-lightbox__close:hover { background: rgba(255,255,255,.22); }

/* === Sections plus aérées === */
section { padding-block: 4rem; }
@media (min-width: 1024px) {
    section { padding-block: 5rem; }
}

/* Hero card élargie */
.evm-hero-card { padding: 2.5rem; }

/* Petites améliorations cards services */
.services-one__single { padding: 2.25rem !important; }
.services-one__icon { width: 70px; height: 70px; font-size: 1.9rem; }

/* === Méta-bar (date, auteur, lecture) === */
.meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: .9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

/* === Boutons utilitaires (compléments du thm-btn Clean) === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: .85rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
    border: 2px solid transparent;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--color-primary); color: #fff; }
.btn-secondary:hover { background: var(--color-primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* === Sommaire (TOC) cohérent avec thème === */
.article-body nav[aria-label="Sommaire"] {
    background: var(--color-bg-soft);
    padding: var(--space-5);
    border-radius: var(--radius);
    margin-block: var(--space-6);
    border: 1px solid var(--color-border);
}
.article-body nav[aria-label="Sommaire"] ol {
    margin-top: var(--space-3);
    margin-bottom: 0;
}
.article-body nav[aria-label="Sommaire"] a {
    color: var(--color-primary);
    text-decoration: none;
}
.article-body nav[aria-label="Sommaire"] a:hover { text-decoration: underline; }

/* === FAQ items (utilisés sur pages services + zones) === */
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: .75rem;
}
.faq-item summary.faq-question,
.faq-item summary {
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--color-accent);
    font-weight: 700;
    transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer,
.faq-item > p {
    margin-top: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* === Banner inner-page (services, zones, légales, etc.) === */
.evm-page-banner {
    background:
        linear-gradient(135deg, var(--evm-primary-dark) 0%, var(--evm-primary) 100%);
    color: #fff;
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
/* Halo doré en haut à droite */
.evm-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 85% 10%, rgba(252,211,77,.20), transparent 55%);
    pointer-events: none;
    z-index: -1;
}
/* Motif décoratif géométrique en bas */
.evm-page-banner::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 2px);
    background-size: 22px 22px;
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: -1;
}
.evm-page-banner__inner { position: relative; z-index: 1; max-width: 900px; }
.evm-page-banner__tagline {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(252,211,77,.15);
    border: 1px solid rgba(252,211,77,.35);
    padding: .4rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #fcd34d;
    letter-spacing: .3px;
}
.evm-page-banner h1 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw + .5rem, 2.8rem);
    line-height: 1.18;
    margin: 0 0 1rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.evm-page-banner h1 strong {
    color: #fcd34d;
    position: relative;
    font-weight: 800;
}
.evm-page-banner h1 strong::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -.1em;
    height: 3px;
    background: linear-gradient(90deg, rgba(252,211,77,.7), rgba(252,211,77,0));
    border-radius: 2px;
}
.evm-page-banner__lead {
    color: rgba(255,255,255,.92);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 62ch;
    margin: 0;
}
.evm-page-banner__crumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
}
.evm-page-banner__crumbs a { color: #fff; text-decoration: none; opacity: .8; transition: opacity .2s; }
.evm-page-banner__crumbs a:hover { opacity: 1; text-decoration: underline; }
.evm-page-banner__crumbs li + li::before {
    content: '›';
    margin-right: .4rem;
    color: rgba(255,255,255,.55);
}

/* =========================================================
   AMÉLIORATIONS DESIGN — Hover, ombres, animations
   ========================================================= */

/* Smooth scroll + offset pour ancres */
html { scroll-behavior: smooth; scroll-padding-top: 2rem; }

/* Cards de services — hover plus marqué + bordure animée */
.services-one__single {
    position: relative;
    overflow: hidden;
}
.services-one__single::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--evm-accent), var(--evm-accent-dark));
    transition: width .3s ease;
}
.services-one__single:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13,77,58,.18) !important;
    border-color: transparent !important;
}
.services-one__single:hover::before { width: 5px; }
.services-one__single:hover .services-one__icon {
    background: var(--evm-accent) !important;
    transform: rotate(-6deg) scale(1.05);
}
.services-one__icon { transition: transform .3s ease, background-color .3s ease; }

/* Badge en haut à droite des cards services */
.services-one__single::after {
    content: '→';
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-soft);
    color: var(--evm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
}
.services-one__single:hover::after {
    opacity: 1;
    transform: translateX(0);
    background: var(--evm-accent);
    color: #fff;
}

/* Zone tags — hover plus dynamique */
.zone-tag {
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.zone-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--evm-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .25s ease;
}
.zone-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,77,58,.12);
}
.zone-tag:hover::before { transform: scaleY(1); }

/* CTA "buttons" — micro-interactions */
.thm-btn { position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.thm-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(217,119,6,.3); }

/* Section title — animation de soulignement orné */
.section-title__title {
    position: relative;
    padding-bottom: .5rem;
    display: inline-block;
}
.text-center .section-title__title::after,
.section-title.text-center .section-title__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -.15rem;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--evm-accent), var(--evm-primary));
    border-radius: 2px;
}

/* Témoignages : étoiles + accent latéral */
.testimonial-card,
section[style*="fbf9f5"] .col-lg-4 > div {
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover,
section[style*="fbf9f5"] .col-lg-4 > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(13,77,58,.12) !important;
}

/* Compteurs — micro-animation */
section[style*="counter"] h3,
.counter-one__count {
    transition: transform .3s ease;
}

/* Drop cap subtil sur le premier paragraphe d'article (sauf answer-first) */
.article-body > .container-narrow > h2:first-of-type + p::first-letter {
    font-size: 3em;
    line-height: 1;
    float: left;
    padding: .15em .15em 0 0;
    color: var(--evm-primary);
    font-weight: 800;
}

/* Article body — typographie raffinée */
.article-body p { margin-bottom: 1.1rem; }
.article-body h2 {
    margin-top: 3rem;
    padding-bottom: .75rem;
    position: relative;
}
.article-body h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--evm-accent);
    border-radius: 2px;
}
.article-body h3 {
    color: var(--evm-primary);
    margin-top: 2rem;
}

/* Boutons sticky mobile : effet pulse subtil */
.sticky-call-mobile {
    animation: evm-pulse 2s infinite;
}
@keyframes evm-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(217,119,6,.4); }
    50% { box-shadow: 0 8px 24px rgba(217,119,6,.7), 0 0 0 8px rgba(217,119,6,.15); }
}

/* Steps numerotées (HowTo) — fond gradient */
.step::before {
    background: linear-gradient(135deg, var(--evm-primary), var(--evm-primary-light)) !important;
    box-shadow: 0 4px 12px rgba(13,77,58,.25);
}
.step { transition: transform .2s ease, box-shadow .2s ease; }
.step:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(13,77,58,.1);
}

/* Key points — accent visuel renforcé */
.key-points {
    background: linear-gradient(135deg, #fbf9f5 0%, #fff 100%);
    border-left: 5px solid var(--evm-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

/* Answer first — fond distinct */
.answer-first {
    background: linear-gradient(135deg, #fbf9f5 0%, #fff 100%);
    border: 1px solid var(--color-border);
    border-left: 5px solid var(--evm-primary);
    position: relative;
    padding-left: 2rem;
}
.answer-first::before {
    content: '💡';
    position: absolute;
    left: -22px;
    top: 1rem;
    width: 40px;
    height: 40px;
    background: var(--evm-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(13,77,58,.25);
}

/* CTA section : ombrage et effet de profondeur */
.cta {
    box-shadow: 0 20px 50px rgba(13,77,58,.25);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(252,211,77,.18), transparent 65%);
    pointer-events: none;
}

/* FAQ items — meilleur état open */
.faq-item {
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item:hover { border-color: var(--evm-primary); }
.faq-item[open] {
    border-color: var(--evm-accent);
    box-shadow: 0 4px 12px rgba(217,119,6,.08);
}

/* Author box (E-E-A-T) raffiné */
.author-box {
    background: linear-gradient(135deg, #fbf9f5 0%, #fff 100%);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

/* Cards chantier — hover doux */
article[style*="background:white;border:1px solid"]:hover {
    box-shadow: 0 10px 28px rgba(13,77,58,.1);
    transform: translateY(-2px);
    transition: all .25s ease;
}

/* Section title__tagline avec icône étoile */
.section-title__tagline-box .icon-star-1,
.section-title__tagline {
    color: var(--evm-accent) !important;
}

/* Meta bar — pills */
.meta-bar span {
    background: var(--color-bg-soft);
    padding: .25rem .65rem;
    border-radius: 999px;
    font-size: .82rem;
    border: 1px solid var(--color-border);
}

/* Section transitions — séparateurs subtils */
section + section { border-top: 0; }

/* Animation d'apparition douce au scroll (utilise AOS du thème) */
[data-aos] { transition-timing-function: cubic-bezier(.4, 0, .2, 1); }

/* Selection texte cohérente avec marque */
::selection { background: var(--evm-accent); color: #fff; }
::-moz-selection { background: var(--evm-accent); color: #fff; }

/* Focus visible accessibilité */
a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 3px solid var(--evm-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* === Couleurs primaires du thème surchargées === */
.thm-btn,
.btn-primary,
button.thm-btn {
    background-color: var(--evm-accent) !important;
}

.thm-btn:hover {
    background-color: var(--evm-accent-dark) !important;
}

/* Header top bar (vert sapin profond) */
.main-menu__top {
    background-color: var(--evm-primary-dark) !important;
}

.main-menu__top a,
.main-menu__top p,
.main-menu__top .icon i,
.main-menu__top .icon span {
    color: #fff !important;
}

.main-menu__top a:hover { color: #fcd34d !important; }

/* Header principal */
.main-header {
    background-color: #ffffff;
}

.main-menu__list > li > a {
    color: var(--evm-primary) !important;
    font-weight: 600;
}

.main-menu__list > li > a:hover,
.main-menu__list > li > a[aria-current="page"] {
    color: var(--evm-accent) !important;
}

/* Liens dans le menu déroulant */
.main-menu__list .dropdown ul a {
    color: #1a1f2e !important;
}

.main-menu__list .dropdown ul a:hover {
    color: var(--evm-accent) !important;
    background-color: #fbf9f5 !important;
}

/* Bloc téléphone dans la nav */
.main-menu__call-number a {
    color: var(--evm-primary) !important;
    font-weight: 700;
}

.main-menu__call-icon {
    color: var(--evm-accent) !important;
}

/* Sections : harmoniser les titres et tags */
.section-title__tagline {
    color: var(--evm-accent) !important;
    font-weight: 700;
}

.section-title__title,
.section-title h2 {
    color: var(--evm-primary) !important;
}

/* Cards de service */
.services-one__title a,
.services-two__title a {
    color: var(--evm-primary) !important;
}

/* --- AMELIORATIONS PREMIUM --- */
.thm-btn {
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
    transform-origin: center;
}
.thm-btn:hover {
    box-shadow: var(--shadow-glow) !important;
    transform: translateY(-2px) scale(1.02);
}

.services-one__single {
    border-radius: 24px !important;
    background: linear-gradient(145deg, #ffffff, #fbf9f5);
}

.evm-hero--image {
    background-attachment: fixed; /* Effet parallax simple */
}

.hero-stats-row .stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-stats-row .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}


.services-one__title a:hover,
.services-two__title a:hover {
    color: var(--evm-accent) !important;
}

.services-one__icon,
.services-two__icon {
    background-color: var(--evm-primary) !important;
    color: #fff !important;
}

.services-one__read-more a,
.services-two__read-more a {
    color: var(--evm-accent) !important;
    font-weight: 600;
}

/* Hero (main-slider) */
.main-slider__sub-title {
    color: var(--evm-accent) !important;
}

.main-slider__title span {
    color: #fcd34d !important;
}

.main-slider__bg {
    background-color: var(--evm-primary-dark) !important;
}

/* CTA section */
.cta-one, .contact-one {
    background-color: var(--evm-primary) !important;
}

/* Footer */
.site-footer {
    background-color: var(--evm-primary-dark) !important;
    color: rgba(255,255,255,.85);
}

.site-footer__bg {
    opacity: .15;
}

.footer-widget__title {
    color: #fff !important;
}

.footer-widget__links-list a,
.footer-widget__contact-info-list p,
.footer-widget__contact-info-list a {
    color: rgba(255,255,255,.75) !important;
}

.footer-widget__links-list a:hover,
.footer-widget__contact-info-list a:hover {
    color: var(--evm-accent) !important;
}

.footer-widget__social-box a {
    background-color: rgba(255,255,255,.1);
    color: #fff !important;
}

.footer-widget__social-box a:hover {
    background-color: var(--evm-accent);
}

.site-footer__bottom {
    background-color: rgba(0,0,0,.3);
}

/* FAQ — quand on utilise les blocs natifs */
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--evm-primary);
}

/* Boîtes "key points" et "answer first" héritées de mon CSS */
.key-points {
    background: #fbf9f5;
    border-left: 4px solid var(--evm-accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.key-points h3 {
    margin-top: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--evm-accent-dark);
}

.answer-first {
    background: #fbf9f5;
    border: 1px solid #e3e6ec;
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.answer-first strong {
    color: var(--evm-primary);
}

/* Articles : pleine largeur */
.article-body {
    max-width: 1600px;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.75;
}

.article-body h2 {
    border-bottom: 2px solid #f7f8fa;
    padding-bottom: .5rem;
    margin-top: 2.5rem;
    color: var(--evm-primary);
}

.article-body blockquote {
    border-left: 4px solid var(--evm-accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #fbf9f5;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

/* Tableaux */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }

.article-body table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e3e6ec;
}

.article-body th,
.article-body td {
    padding: .75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e3e6ec;
}

.article-body th {
    background: #fbf9f5;
    color: var(--evm-primary);
    font-weight: 700;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: .9rem;
    color: #5b6478;
    background: #f7f8fa;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.breadcrumb li::after {
    content: '›';
    margin-left: .5rem;
    color: #8b95a8;
}

.breadcrumb li:last-child::after { content: ''; }

.breadcrumb a {
    color: var(--evm-primary);
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* CTA section locale (pour pages services) */
.cta {
    background: linear-gradient(135deg, var(--evm-primary) 0%, var(--evm-primary-dark) 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.cta h2 { color: #fff !important; margin-top: 0; }
.cta p { color: rgba(255,255,255,.9); }

.flex-center {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Author box (E-E-A-T) */
.author-box {
    background: #fbf9f5;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: 80px 1fr;
    align-items: start;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--evm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

/* Steps (HowTo) */
.steps {
    counter-reset: step;
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.step {
    display: grid;
    gap: 1rem;
    grid-template-columns: 60px 1fr;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e3e6ec;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    width: 48px;
    height: 48px;
    background: var(--evm-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.step h3 { margin: 0 0 .5rem; font-size: 1.1rem; }
.step p { margin: 0; color: #5b6478; }

/* Cards grids (homepage services, etc.) */
.grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.zones-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.zone-tag {
    background: #fff;
    padding: .75rem 1rem;
    border-radius: 12px;
    border: 1px solid #e3e6ec;
    text-decoration: none;
    color: #1a1f2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .2s;
}

.zone-tag:hover {
    border-color: var(--evm-primary);
    color: var(--evm-primary);
    transform: translateX(3px);
}

.zone-tag-pop {
    color: #5b6478;
    font-size: .85rem;
}

/* Hero customisé pour notre métier (alternative au main-slider) */
.evm-hero {
    background: linear-gradient(135deg, var(--evm-primary-dark) 0%, var(--evm-primary) 60%, var(--evm-primary-light) 100%);
    color: #fff;
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.evm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(217,119,6,.18), transparent 60%);
    pointer-events: none;
}

.evm-hero h1 { color: #fff; }
.evm-hero h1 strong { color: #fcd34d; font-weight: 800; }
.evm-hero p { color: rgba(255,255,255,.92); }
/* …mais dans la carte de devis (fond blanc), le texte doit être sombre :
   sans cette règle, « .evm-hero p » (blanc) gagnait sur .hero-quote__sub → invisible. */
.evm-hero .evm-hero-card p { color: rgb(8 8 8 / 92%); }

.evm-hero-card {
    background: #fff;
    color: #1a1f2e;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.evm-hero-card h2 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--evm-primary);
}

.evm-hero-card ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evm-hero-card ol li {
    padding: .75rem 0;
    border-bottom: 1px solid #e3e6ec;
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.evm-hero-card ol li:last-child { border-bottom: 0; }

.evm-hero-card strong {
    display: block;
    color: var(--evm-primary);
    margin-bottom: .25rem;
}

/* Petit fix : badge "draft" pour les pages non publiées */
.draft-banner {
    background: #fff3cd;
    border-bottom: 2px solid #ffc107;
    padding: 8px;
    text-align: center;
    font-size: .9rem;
}

/* =========================================================
   Utilitaires de mise en page pour pages secondaires
   (contact, 404, mentions, cgv, confidentialite, avis, blog)
   ========================================================= */

/* Section générique */
.section { padding-block: var(--space-8); }
.section--alt { background: var(--color-bg-alt); }
.section--soft { background: var(--color-bg-soft); }

/* Grid utilitaire — alias de grid-3 quand combiné avec .grid-3 */
.grid { display: grid; gap: var(--space-5); }

/* Card générique (overrides du .card Bootstrap, qui est trop bordé) */
.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--evm-primary-light);
}
.card h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
}
.card p {
    margin: 0;
    color: var(--color-text-muted);
    flex: 1;
}
.card .btn,
.card .thm-btn { margin-top: auto; align-self: flex-start; }

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13,77,58,.10), rgba(217,119,6,.10));
    font-size: 1.6rem;
    line-height: 1;
}

/* Address dans cartes/blocs info */
address {
    font-style: normal;
    line-height: 1.7;
    color: var(--color-text);
}

/* Texte centré utilitaire (utilisé par 404 etc.) */
.text-center { text-align: center; }

/* =========================================================
   ASSISTANT DEVIS 3 ÉTAPES (wizard) + UPLOAD
   ========================================================= */
.wizard {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: clamp(1.25rem, 3vw, 2.25rem);
    box-shadow: 0 18px 50px -28px rgba(7,48,31,.45);
}

/* Étapes (pastilles) */
.wizard__steps { display: flex; gap: .5rem; list-style: none; margin: 0 0 1.1rem; padding: 0; }
.wizard__steps li {
    flex: 1; display: flex; align-items: center; gap: .55rem;
    font-weight: 600; font-size: .95rem; color: var(--color-text-muted);
    padding: .35rem 0; transition: color .3s ease;
}
.wizard__steps li span {
    flex: none; width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center; font-size: .9rem;
    background: var(--color-bg-soft); color: var(--color-text-muted);
    border: 2px solid var(--color-border); transition: all .3s ease;
}
.wizard__steps li.is-active { color: var(--color-primary); }
.wizard__steps li.is-active span { background: var(--color-primary); color: #fff; border-color: var(--color-primary); transform: scale(1.06); }
.wizard__steps li.is-done span { background: var(--color-accent); color: #fff; border-color: var(--color-accent); font-size: 0; }
.wizard__steps li.is-done span::before { content: "✓"; font-size: .9rem; }

/* Barre de progression */
.wizard__progress { height: 6px; background: var(--color-bg-soft); border-radius: 99px; overflow: hidden; margin-bottom: 1.75rem; }
.wizard__progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); border-radius: 99px; transition: width .45s cubic-bezier(.4,0,.2,1); }

/* Panneaux — sans JS : tous visibles (progressive enhancement) */
.wizard__panel { border: 0; padding: 0; margin: 0 0 1.5rem; display: block; }
.js .wizard__panel { display: none; margin-bottom: 0; }
.js .wizard__panel.is-active { display: block; animation: wizardIn .4s cubic-bezier(.16,1,.3,1); }
/* Sans JS, la barre d'étapes/progression n'a pas de sens */
html:not(.js) .wizard__steps, html:not(.js) .wizard__progress, html:not(.js) .wizard__nav [data-next], html:not(.js) .wizard__nav [data-prev] { display: none; }
.wizard__panel > legend { font-size: 1.3rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1.25rem; padding: 0; }
@keyframes wizardIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

/* Champs */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group--sm { max-width: 130px; }
.form-group label, .choice-group > legend { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .92rem; color: var(--color-text); padding: 0; }
.wizard input[type=text], .wizard input[type=tel], .wizard input[type=email],
.wizard input[type=date], .wizard textarea {
    width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--color-border);
    border-radius: 11px; font: inherit; background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.wizard input:focus, .wizard textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(13,77,58,.12); }
.form-group.has-error input, .form-group.has-error textarea { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220,38,38,.10); }

/* Groupes de choix (cartes radio/checkbox) */
.choice-group { border: 0; padding: 0; margin: 0 0 1.25rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.choice-grid--3 { grid-template-columns: repeat(3, 1fr); }
.choice-grid--4 { grid-template-columns: repeat(4, 1fr); }
.choice {
    position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .35rem; text-align: center; cursor: pointer; padding: .9rem .6rem; min-height: 64px;
    border: 1.5px solid var(--color-border); border-radius: 13px; background: #fff;
    font-weight: 600; font-size: .9rem; color: var(--color-text);
    transition: border-color .2s ease, background .2s ease, transform .12s ease, box-shadow .2s ease;
}
.choice--compact { flex-direction: row; min-height: 50px; font-size: .85rem; padding: .6rem .7rem; }
.choice:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: 0 10px 22px -16px rgba(7,48,31,.5); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__ico { font-size: 1.4rem; line-height: 1; }
.choice--compact .choice__ico { font-size: 1.1rem; }
.choice.is-checked { border-color: var(--color-primary); background: linear-gradient(135deg, rgba(13,77,58,.08), rgba(217,119,6,.08)); color: var(--color-primary); box-shadow: 0 0 0 1.5px var(--color-primary) inset; }
.choice.is-checked::after { content: "✓"; position: absolute; top: 6px; right: 8px; font-size: .75rem; color: var(--color-accent); font-weight: 800; }
.choice-group.has-error .choice-grid { outline: 2px solid rgba(220,38,38,.4); outline-offset: 4px; border-radius: 13px; }

/* Dropzone upload */
.dropzone { border: 2px dashed var(--color-border); border-radius: 14px; padding: 1.5rem; text-align: center; transition: border-color .2s ease, background .2s ease; cursor: pointer; }
.dropzone.is-drag { border-color: var(--color-primary); background: rgba(13,77,58,.05); }
.dropzone__hint { color: var(--color-text-muted); display: flex; flex-direction: column; gap: .25rem; align-items: center; pointer-events: none; }
.dropzone__hint strong { color: var(--color-text); }
.dropzone__ico { font-size: 2rem; }
.dropzone__browse { pointer-events: auto; background: none; border: 0; color: var(--color-primary); font: inherit; font-weight: 700; text-decoration: underline; cursor: pointer; padding: 0; }
.dropzone__previews { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.preview { position: relative; width: 84px; height: 84px; border-radius: 10px; overflow: hidden; border: 1px solid var(--color-border); background: var(--color-bg-soft); display: grid; place-items: center; animation: wizardIn .3s ease; }
.preview img { width: 100%; height: 100%; object-fit: cover; }
.preview__file { font-size: 1.8rem; }
.preview__rm { position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%; border: 0; background: rgba(7,48,31,.78); color: #fff; font-size: 1rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.preview__rm:hover { background: #dc2626; }
.dropzone__error { color: #b91c1c; font-size: .85rem; margin: .5rem 0 0; }

/* RGPD + navigation */
.rgpd { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--color-text-muted); margin: .5rem 0 1.5rem; }
.rgpd input { margin-top: .25rem; flex: none; }
.wizard__nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.wizard__reassurance { text-align: center; color: var(--color-text-muted); font-size: .85rem; margin: 1.5rem 0 0; }

/* Succès & erreurs */
.devis-success { text-align: center; background: linear-gradient(135deg, rgba(13,77,58,.06), rgba(217,119,6,.06)); border: 1px solid var(--color-border); border-radius: 18px; padding: 3rem 2rem; }
.devis-success__icon { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; background: #16a34a; color: #fff; font-size: 2.2rem; display: grid; place-items: center; animation: popIn .5s cubic-bezier(.16,1,.3,1); }
.devis-success h2 { color: var(--color-primary); margin: 0 0 .5rem; }
.devis-success p { color: var(--color-text); max-width: 44ch; margin: 0 auto 1.5rem; }
@keyframes popIn { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
.form-errors { background: #fee2e2; border-left: 4px solid #dc2626; padding: 1rem 1.5rem; border-radius: 10px; margin-bottom: 1.5rem; color: #991b1b; }
.form-errors ul { margin: .5rem 0 0; }

@media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
    .choice-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .wizard__steps li { font-size: 0; gap: 0; }
    .wizard__steps li span { font-size: .9rem; margin: 0 auto; }
    .wizard__steps li.is-done span { font-size: 0; }
    .wizard__steps li.is-done span::before { font-size: .9rem; }
}

/* =========================================================
   ANIMATIONS AU SCROLL (reveal) — légères, accessibles
   ========================================================= */
/* Masqué seulement si JS actif (sinon le contenu reste visible) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .wizard__panel.is-active, .devis-success__icon, .preview { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
    .wizard__progress-bar { transition: none; }
}

/* =========================================================
   PRIX SUR LES CARTES SERVICES (style debarras-vip)
   ========================================================= */
.service-price {
    display: inline-flex; align-items: baseline; gap: .25rem;
    background: linear-gradient(135deg, rgba(13,77,58,.10), rgba(217,119,6,.12));
    color: var(--evm-primary); font-weight: 800; font-size: .95rem;
    padding: .3rem .7rem; border-radius: 99px; margin-bottom: .9rem;
}
.service-price small { font-weight: 600; font-size: .72rem; color: var(--color-text-muted); }
.services-one__single { display: flex; flex-direction: column; }
.services-one__single .services-one__read-more { margin-top: auto; }
.services-one__icon { background: linear-gradient(135deg, rgba(13,77,58,.10), rgba(217,119,6,.12)); }

/* =========================================================
   SECTION « COMMENT ÇA MARCHE » — 3 étapes (process)
   ========================================================= */
.evm-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: stepc; position: relative; }
.evm-process__step {
    background: #fff; border: 1px solid var(--color-border); border-radius: 18px;
    padding: 2.25rem 1.5rem 1.75rem; text-align: center; position: relative;
    box-shadow: 0 10px 30px -22px rgba(7,48,31,.5); transition: transform .25s ease, box-shadow .25s ease;
}
.evm-process__step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(7,48,31,.6); }
.evm-process__num {
    counter-increment: stepc; position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    background: var(--evm-primary); color: #fff; font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 6px 14px rgba(7,48,31,.35);
}
.evm-process__num::before { content: counter(stepc); }
.evm-process__ico { font-size: 2.4rem; line-height: 1; margin: .35rem 0 .75rem; display: block; }
.evm-process__step h3 { font-size: 1.2rem; margin: 0 0 .5rem; color: var(--evm-primary); }
.evm-process__step p { color: var(--color-text-muted); margin: 0; font-size: .95rem; }
@media (max-width: 800px) { .evm-process { grid-template-columns: 1fr; gap: 2rem; } }

/* =========================================================
   BANDEAU URGENCE / APPEL (style debarras-vip section 7)
   ========================================================= */
.evm-urgency {
    background: linear-gradient(120deg, var(--evm-primary-dark) 0%, var(--evm-primary) 60%, #14624a 100%);
    color: #fff; border-radius: 22px; padding: clamp(1.75rem, 4vw, 3rem);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
    position: relative; overflow: hidden;
}
.evm-urgency::after { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(217,119,6,.35), transparent 70%); pointer-events: none; }
.evm-urgency__text { position: relative; z-index: 1; }
.evm-urgency__text h2 { color: #fff; margin: 0 0 .4rem; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.evm-urgency__text p { margin: 0; color: rgba(255,255,255,.88); }
.evm-urgency__actions { display: flex; flex-wrap: wrap; gap: .8rem; position: relative; z-index: 1; }
.evm-urgency__phone {
    display: inline-flex; align-items: center; gap: .6rem; background: var(--evm-accent); color: #fff;
    font-weight: 800; font-size: 1.25rem; padding: .85rem 1.5rem; border-radius: 14px; text-decoration: none;
    box-shadow: 0 10px 24px -10px rgba(217,119,6,.7); transition: transform .2s ease, background .2s ease;
}
.evm-urgency__phone:hover { transform: translateY(-2px); background: var(--evm-accent-dark); color: #fff; }
.evm-urgency__link { display: inline-flex; align-items: center; gap: .5rem; border: 2px solid rgba(255,255,255,.6); color: #fff; padding: .85rem 1.4rem; border-radius: 14px; text-decoration: none; font-weight: 700; }
.evm-urgency__link:hover { background: rgba(255,255,255,.12); color: #fff; }

/* =========================================================
   HERO — révèle la VRAIE photo de chantier (fix override) + finitions
   La règle .evm-hero (plus bas dans le fichier) écrasait .evm-hero--image ;
   on reprend la main avec une spécificité supérieure (.evm-hero.evm-hero--image).
   ========================================================= */
.evm-hero.evm-hero--image {
    background:
        linear-gradient(100deg, rgba(7,48,31,.94) 0%, rgba(7,48,31,.74) 46%, rgba(13,77,58,.40) 100%),
        var(--evm-hero-img, linear-gradient(135deg, var(--evm-primary-dark), var(--evm-primary))) center / cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-attachment: scroll;
}
.evm-hero.evm-hero--image::before { content: none; } /* neutralise le voile radial qui aplatissait */

/* Le header du thème est en position:absolute (fond blanc) par-dessus le hero :
   il masquait le haut de la bannière et du formulaire de devis. En desktop on
   décale le hero sous le header pour que le formulaire soit entièrement visible. */
@media (min-width: 992px) {
    .evm-hero.evm-hero--image { margin-top: 100px; }
}

/* Chips de confiance dans le hero */
.evm-hero .hero-trust { display: flex; flex-wrap: wrap; gap: .6rem .7rem; }
.evm-hero .hero-trust span {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    padding: .4rem .85rem; border-radius: 99px; font-size: .88rem; font-weight: 500;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
    .evm-hero.evm-hero--image { min-height: 0; }
}

/* =========================================================
   CARTES SERVICES — design soigné (bloc autoritaire final)
   ========================================================= */
.services-one .services-one__single {
    background: #fff !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 20px !important;
    padding: 2rem 1.75rem !important;
    box-shadow: 0 12px 32px -26px rgba(7,48,31,.55);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.services-one .services-one__single::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px;
    background: linear-gradient(90deg, var(--evm-primary), var(--evm-accent));
    transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.services-one .services-one__single::after { content: none !important; }
.services-one .services-one__single:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(7,48,31,.55) !important;
    border-color: transparent !important;
}
.services-one .services-one__single:hover::before { transform: scaleX(1); }

.services-one .services-one__icon {
    width: 66px !important; height: 66px !important; border-radius: 18px !important;
    display: inline-flex !important; align-items: center; justify-content: center;
    font-size: 1.85rem !important; margin-bottom: 1.1rem;
    background: linear-gradient(135deg, rgba(13,77,58,.12), rgba(217,119,6,.16)) !important;
    transition: transform .3s ease, box-shadow .3s ease;
}
.services-one .services-one__single:hover .services-one__icon {
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 10px 20px -8px rgba(217,119,6,.5);
}
.services-one .service-price { align-self: flex-start; }
.services-one .services-one__title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: .55rem; }
.services-one .services-one__title a { color: var(--color-text); transition: color .2s ease; }
.services-one .services-one__title a:hover { color: var(--evm-primary); }
.services-one .services-one__text { color: var(--color-text-muted); line-height: 1.6; }
.services-one .services-one__read-more { margin-top: auto; }
.services-one .services-one__read-more a {
    display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--evm-primary);
}
.services-one .services-one__read-more a span { transition: transform .25s ease; }
.services-one .services-one__single:hover .services-one__read-more a span { transform: translateX(5px); }

/* =========================================================
   FOOTER — design soigné (bloc autoritaire final)
   ========================================================= */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--evm-primary-dark) 0%, #062318 100%) !important;
}
.site-footer::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px;
    background: linear-gradient(90deg, var(--evm-primary-light), var(--evm-accent));
}
.site-footer__top { padding: 4rem 0 2.5rem; }
.footer-widget__about-logo a { letter-spacing: -.5px; }
.footer-widget__about-text { color: rgba(255,255,255,.68); line-height: 1.7; margin: 1.1rem 0 1.5rem; }
.footer-widget__payment h3 { color: #fff; font-size: 1rem; margin-bottom: .6rem; }
.footer-widget__payment ul li { color: rgba(255,255,255,.8); }

.footer-widget__title {
    position: relative; padding-bottom: .85rem; margin-bottom: 1.25rem;
    font-family: var(--font-heading); font-size: 1.1rem; color: #fff !important;
}
.footer-widget__title::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px;
    border-radius: 3px; background: var(--evm-accent);
}

.footer-widget__links-list li { margin-bottom: .55rem; }
.footer-widget__links-list a {
    position: relative; padding-left: 1.1rem; display: inline-block;
    color: rgba(255,255,255,.72) !important; transition: color .2s ease, padding .2s ease;
}
.footer-widget__links-list a::before { content: '›'; position: absolute; left: 0; color: var(--evm-accent); font-weight: 700; }
.footer-widget__links-list a:hover { color: #fff !important; padding-left: 1.4rem; }

.footer-widget__contact-info-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.footer-widget__contact-info-list .icon {
    flex: none; width: 40px; height: 40px; border-radius: 11px;
    background: rgba(255,255,255,.08); display: grid; place-items: center;
    color: var(--evm-accent); font-size: 1rem;
}
.footer-widget__contact-info-list p { margin: 0; align-self: center; }

.footer-widget__social-box { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-widget__social-box a {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid !important; place-items: center;
    background-color: rgba(255,255,255,.1); color: #fff !important;
    transition: transform .2s ease, background-color .2s ease;
}
.footer-widget__social-box a:hover { transform: translateY(-3px); background-color: var(--evm-accent); }

.site-footer__bottom { background-color: rgba(0,0,0,.28); padding: 1.1rem 0; }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between; }
.site-footer__copyright-text { color: rgba(255,255,255,.6); margin: 0; font-size: .85rem; }
.site-footer__bottom-menu { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin: 0; padding: 0; }
.site-footer__bottom-menu a { color: rgba(255,255,255,.7); font-size: .85rem; transition: color .2s ease; }
.site-footer__bottom-menu a:hover { color: #fff; }
@media (max-width: 768px) {
    .site-footer__top { padding: 3rem 0 1.5rem; }
    .footer-widget__about { margin-bottom: 2rem; }
}

/* =========================================================
   FOOTER — neutralise les "chips/boites" lourds du theme Clean
   (specificite .site-footer pour passer devant style.css)
   ========================================================= */
.site-footer .footer-widget__links-list li a {
    background-color: transparent !important;
    border: 0 !important; border-radius: 0 !important;
    font-style: normal !important; font-family: var(--font-sans) !important;
    padding: 0 0 0 1.1rem !important; display: inline-block !important;
    color: rgba(255,255,255,.72) !important; font-size: .95rem !important;
}
.site-footer .footer-widget__links-list li a::before {
    content: '\203A' !important; top: 0 !important; left: 0 !important; right: auto !important; bottom: auto !important;
    background: none !important; border-radius: 0 !important; z-index: auto !important;
    color: var(--evm-accent) !important; font-weight: 700 !important;
}
.site-footer .footer-widget__links-list li a:hover { color: #fff !important; padding-left: 1.4rem !important; }
.site-footer .footer-widget__links-list li+li { margin-top: .5rem !important; }

.site-footer .footer-widget__contact-info-box { background: transparent !important; padding: 0 !important; }
.site-footer .footer-widget__contact-info-list li {
    background-color: transparent !important; border-radius: 0 !important;
    padding: 0 !important; align-items: center; gap: .8rem;
}
.site-footer .footer-widget__contact-info-list-shape-1 { display: none !important; }
.site-footer .footer-widget__contact-info-list li p,
.site-footer .footer-widget__contact-info-list li p a {
    color: rgba(255,255,255,.8) !important; font-style: normal !important; font-family: var(--font-sans) !important;
}
.site-footer .footer-widget__contact-info-list li p a:hover { color: var(--evm-accent) !important; }
.site-footer .footer-widget__contact-info-list li .icon {
    flex: none; width: 40px !important; height: 40px !important; border-radius: 11px !important;
    background: rgba(255,255,255,.08) !important; display: grid !important; place-items: center;
}
.site-footer .footer-widget__contact-info-list li .icon span { color: var(--evm-accent) !important; }

/* Cartes services : ramene l'icone en badge HAUT dans le flux (annule le positionnement absolu + formes decoratives du theme) */
.services-one .services-one__single .services-one__icon {
    position: static !important;
    bottom: auto !important; right: auto !important; top: auto !important; left: auto !important;
    border: 0 !important;
    margin-bottom: 1.1rem !important;
}
.services-one .services-one__single .services-one__icon::before,
.services-one .services-one__single .services-one__icon::after {
    content: none !important; display: none !important;
}
.services-one .services-one__single .services-one__icon span { color: var(--evm-primary) !important; }

/* =========================================================
   COMPARATEUR AVANT / APRES (slider draggable)
   ========================================================= */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.ba {
    position: relative; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
    box-shadow: 0 16px 38px -22px rgba(7,48,31,.55); cursor: ew-resize;
    user-select: none; -webkit-user-select: none; touch-action: pan-y; background: var(--color-bg-soft);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); -webkit-clip-path: inset(0 50% 0 0); }
.ba__handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
    transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(7,48,31,.25); cursor: ew-resize; z-index: 3;
}
.ba__handle::after {
    content: '\21C6'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 42px; height: 42px; border-radius: 50%; background: var(--evm-accent); color: #fff;
    display: grid; place-items: center; font-size: 1.1rem; box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.ba__tag {
    position: absolute; top: 12px; z-index: 2; color: #fff; font-size: .72rem; font-weight: 700;
    padding: .25rem .65rem; border-radius: 99px; letter-spacing: .04em; text-transform: uppercase;
}
.ba__tag--before { left: 12px; background: rgba(7,48,31,.82); }
.ba__tag--after { right: 12px; background: var(--evm-accent); }
.ba__caption { text-align: center; margin-top: .6rem; font-size: .92rem; color: var(--color-text-muted); font-weight: 600; }

/* =========================================================
   BANDEAU SERVICE : prix + 3 etapes + CTA (pages services)
   ========================================================= */
.svc-cta-band { background: linear-gradient(180deg, #ffffff, #fbf9f5); padding: 4rem 0; border-top: 1px solid var(--color-border); }
.svc-cta-band__head { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
.svc-cta-band__head h2 { margin: .3rem 0 0; font-family: var(--font-heading); color: var(--evm-primary); font-size: clamp(1.5rem, 2vw + .5rem, 2.1rem); }
.svc-cta-band__price { text-align: center; background: linear-gradient(135deg, var(--evm-primary), var(--evm-primary-dark)); color: #fff; border-radius: 16px; padding: 1rem 1.6rem; box-shadow: var(--shadow); line-height: 1.1; }
.svc-cta-band__price span { display: block; font-size: .78rem; opacity: .85; margin-bottom: .15rem; }
.svc-cta-band__price strong { font-size: 2rem; font-family: var(--font-heading); color: #fcd34d; }
.svc-cta-band__price small { font-size: 1rem; color: rgba(255,255,255,.85); margin-left: .2rem; font-weight: 600; }
.evm-process--compact .evm-process__step { padding: 2rem 1.25rem 1.5rem; }
.svc-cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* Header sticky (au scroll) : fond blanc comme le header principal.
   Les liens sont déjà en vert sapin (--evm-primary !important plus haut),
   donc lisibles sur blanc. Ombre légère pour détacher du contenu. */
.stricky-header.main-menu {
    background-color: #fff !important;
    box-shadow: 0 2px 14px rgba(12, 52, 47, 0.10);
}
.stricky-header .main-menu__list > li > a {
    color: var(--evm-primary) !important;
}
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
    color: var(--evm-accent) !important;
}


