/* ============================================================
   LAYOUT.CSS — Structure des pages et sections
   ============================================================ */


/* ── HEADER ── */

header {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    width: 100%;
}

.nav-menu {
    display: none;
    list-style: none;
    white-space: nowrap;
    width: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: white;
}


/* ── BURGER BUTTON ── */

.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 200;
    flex-shrink: 0;
    margin-right: 16px;
    /* Pas affiché sur desktop — géré dans responsive.css */
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* État ouvert : croix */
.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── NAV MOBILE (panneau plein écran) ── */

@media (max-width: 767px) {

    /* Masque le burger sur tablette/desktop — affiché uniquement mobile */
    .burger-btn { display: flex; }

    .nav-menu {
        /* Panneau qui glisse depuis la droite */
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: min(280px, 80vw);
        background: rgba(20, 20, 20, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex !important;          /* toujours dans le DOM */
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        padding: 40px 32px;
        z-index: 150;
        /* État fermé */
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: normal;
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

    .nav-menu a {
        display: block;
        padding: 18px 0;
        font-size: 17px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.3px;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        color: var(--primary);
        padding-left: 6px;
    }

    /* Overlay sombre derrière le panneau */
    .nav-menu::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.35s ease;
        pointer-events: none;
    }

    .nav-menu.is-open::before {
        opacity: 1;
        pointer-events: auto;
    }
}


/* ── HERO (accueil) ── */

.hero {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.85) 100%
    ), url("../assets/images/salon-hiver-hero.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    gap: 30px;
    padding-bottom: 20px;
    min-height: 550px;
    box-shadow: 0 2px 8px rgba(125, 125, 125, 0.4);
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    padding: 18px;
    margin-top: 82px;
    width: 100%;
    gap: 20px;
}

.hero-content p {
    color: rgba(255,255,255,0.6);
    font-size: .95rem;
    line-height: 24px;
    max-width: 320px;
    padding: 0.5rem;
}

.hero-title {
    text-align: center;
    line-height: 34px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}

.hero-title span {
    color: var(--secondary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-actions p {
    color: white;
    font-size: 16px;
    margin-bottom: 12px;
}   

/* Hero services */
.hero.services-hero {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.3)  20%,
            rgba(0, 0, 0, 0)    50%,
            rgba(0, 0, 0, 0.3)  80%,
            rgba(0, 0, 0, 0.85) 100%
        ),
        url("../assets/images/services-hero.webp");
}

/* Pastille de catégorie hero */
.hero-tag {
    display: inline-block;
    background: rgba(232, 145, 82, 0.18);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(232, 145, 82, 0.3);
    margin-bottom: 16px;
}

/* Badges d'accroche */
.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: var(--radius);
}

/* Trait coloré sous le hero */
.accent-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), transparent);
}

/* Hero contact (fond sombre uni) */
.hero-contact {
    background: var(--dark);
    padding: 80px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232, 145, 82, 0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-contact-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-contact-inner .hero-tag {
    background: rgba(232, 145, 82, 0.15);
    color: var(--primary);
    border-color: rgba(232, 145, 82, 0.25);
    margin-bottom: 20px;
}

.hero-contact-inner h1 {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 800;
    color: var(--light);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-contact-inner h1 span { color: var(--secondary); }

.hero-contact-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
}

/* ── SECTION PRÉSENTATION ── */

.pres-section {

    padding: 40px 16px;   /* 16px mobile, augmente en desktop */
}

.pres-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    width: 100%;
    margin: 0 auto;       /* centrage automatique */
    overflow: hidden;
}

/* Intro */
.pres-intro {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 28px 24px 0;
    border-left: 3px solid var(--secondary);
    margin: 24px 20px 0;
    background: rgba(225, 84, 34, 0.03);
    border-radius: 0 8px 8px 0;
    padding: 20px 20px 20px 18px;
}

/* Blocs icon + texte */
.pres-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
}

.pres-block-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(225, 84, 34, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pres-block-body h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pres-block-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Badges */
.pres-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.pres-badge {
    display: inline-block;
    background: rgba(225, 84, 34, 0.07);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 20px;
    border: 1px solid rgba(225, 84, 34, 0.18);
}

/* Séparateur */
.pres-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 20px;
}

/* Titre Ce qui nous différencie */
.pres-diff-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 20px 20px 8px;
}

/* Liste */
.pres-list {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 0;
}

.pres-list li {
    font-size: 14px;
    color: var(--text-main);
    padding: 11px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.pres-list li:last-child {
    border-bottom: none;
}

.pres-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(225, 84, 34, 0.10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--secondary);
    font-weight: 800;
    margin-top: 1px;
}

/* Citation */
.pres-quote {
    background: var(--dark);
    padding: 20px 24px;
    margin-top: 0;
    text-align: center;
}


/* ── RESPONSIVE TABLETTE (≥ 480px) ── */
@media (min-width: 480px) {
    .pres-block-body h3 { font-size: 17px; }
    .pres-block-body p  { font-size: 15px; }
    .pres-list li       { font-size: 15px; }
    .pres-intro         { font-size: 15px; }
}

/* ── RESPONSIVE DESKTOP (≥ 768px) ── */
@media (min-width: 768px) {

    .pres-block  { padding: 28px 32px; gap: 20px; }
    .pres-intro  { margin: 28px 32px 0; }
    .pres-diff-title { padding: 24px 32px 10px; }
    .pres-list   { padding: 0 32px; }
    .pres-divider { margin: 0 32px; }
    .pres-quote  { padding: 24px 32px; }
    .pres-quote p { font-size: 18px; }

    .pres-block-icon {
        width: 54px;
        height: 54px;
        font-size: 26px;
        border-radius: 14px;
    }
}

/* ── FEATURES ── */

.features {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 16px;
}

.feature {
    display: flex;
    flex-direction: column;
    text-align: center;
    white-space: normal;   /* était nowrap — causait les titres coupés sur tablette */
}

.feature img { height: 40px; }
.feature h3  { font-size: 14px; }

/* ── SERVICES (accueil) ── */

.services {
    padding: 20px 18px;
}

.title-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title-services p  { text-align: center; }
.title-services img { height: 60px; }

.title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wrench-icon {
    width: 28px;
    height: auto;
    margin-right: 12px;
    display: block;
    filter: brightness(0) saturate(100%) invert(38%) sepia(58%) rotate(347deg) brightness(91%) contrast(89%);
}

.services-main-title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #1A1A1A;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.4px;
    
}

.services-intro {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin: 0 auto;
    max-width: 320px;
}

.visual-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.visual-img:hover img {
    transform: scale(1.04);
}

.visual-imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.visual-imgs img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.visual-imgs img:hover {
    transform: scale(1.04);
}
.visual-img-single {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.visual-img-single img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.visual-img-single img:hover {
    transform: scale(1.04);
}

.produit-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #1a1a1a; /* fond neutre si l'image a de la transparence */
}

.produit-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* "contain" pour voir le produit entier sans le couper */
    display: block;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.produit-img img:hover {
    transform: scale(1.05);
}

/* ── SECTION WRAP (unifié — était dupliqué 3 fois) ── */

.section-wrap          { padding: 60px 20px; }
.section-wrap.dark-bg  { background: var(--dark); }


/* ── EN-TÊTE DE SECTION ── */

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: rgba(225, 84, 34, 0.08);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(225, 84, 34, 0.15);
    margin-bottom: 12px;
}

.section-tag.dark {
    background: rgba(225, 84, 34, 0.20);
    border-color: rgba(225, 84, 34, 0.30);
}

.section-header h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 10px;
}

.dark-bg .section-header h2 { color: var(--light); }
.section-header h2 span      { color: var(--secondary); }

.section-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.dark-bg .section-header p { color: rgba(255, 255, 255, 0.50); }

/* Trait décoratif sous le titre */
.title-bar {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    margin: 14px auto 0;
    border-radius: 2px;
}


/* ── INLINE TITLE WRAPPER ── */

.inline-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 20px auto;
    gap: 12px;
}

.inline-title-wrapper h2 {
    margin: 0;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    font-size: clamp(22px, 3.5vw, 36px);
}

.premium-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(38%) sepia(58%) rotate(347deg) brightness(91%) contrast(89%);
    display: block;
}

.premium-section {
    border-radius: var(--radius);
    padding: 60px 20px;
    overflow: hidden;
    width: 100%;
}

.zone.premium-section {
    padding: 60px 20px;
    min-height: 100%;
}

/* ── ZONE D'INTERVENTION ── */

.desktop-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 92%;
    margin: 20px auto;
    padding: 0;
}

.map-var {
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    margin: 20px auto;
    aspect-ratio: 4 / 3;   /* ratio naturel d'une carte régionale */
}

.map-var img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.zone-card h2 {
    font-size: 32px;
    color: #1A1A1A;
    margin: 0;
    white-space: normal;
    word-break: break-word;
}

.zone-card p { text-align: center; }

.highlight-cities {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #C15422;
    line-height: 26px;
    margin-bottom: 12px;
}

.text-muted {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    font-weight: 300;
    line-height: 22px;
    margin: 0 0 10px;
}

/* Le conteneur contact (accueil) */
.contact-wrapper {
    background-color: rgb(34, 34, 34);
    color: var(--light);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 10px auto;
    padding: 40px 10px;
    border-radius: var(--radius);
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.zone-perim {
    display: flex;
    flex-direction: column;
    padding: 30px 0 10px;
    font-weight: bold;
}

.zone1 { color: #fb613b; }
.zone2 { color: #3d603c; }
.zone3 { color: #781d88; }

.exp-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0 10px;
    font-weight: bold;
    width: 100%;
}

/* ── RÉSEAUX SOCIAUX ── */

.social-divider {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
    margin: 32px auto 28px;
}

.social-inner {
    width: 100%;
    text-align: center;
}

.social-eyebrow {
    display: inline-block;
    background: rgba(225, 84, 34, 0.08);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(225, 84, 34, 0.15);
    margin-bottom: 10px;
}

.social-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.25rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    min-width: 130px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(225, 84, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.social-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.social-card-hint {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── CARTES DE CONTACT ── */

.contact-card {
    background: var(--light);
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.contact-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(225, 84, 34, 0.08);
    transform: translateX(4px);
}

.contact-card.featured {
    background: var(--secondary);
    border-color: var(--secondary);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(225, 84, 34, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card.featured .contact-card-icon { background: rgba(255, 255, 255, 0.20); }

.contact-card-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-card.featured .contact-card-text h4 { color: rgba(255, 255, 255, 0.70); }

.contact-card-text a,
.contact-card-text p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.contact-card.featured .contact-card-text a,
.contact-card.featured .contact-card-text p { color: var(--light); }

.contact-card-text .sub {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.contact-card.featured .contact-card-text .sub { color: rgba(255, 255, 255, 0.65); }

/* Ancienne structure contact (page accueil) */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-card-header img {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(38%) sepia(58%) rotate(347deg) brightness(91%) contrast(89%);
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C15422;
    font-weight: 600;
}

.contact-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    margin-bottom: 8px;
}

.contact-value-alt {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.contact-value-small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    text-decoration: underline;
    text-decoration-color: rgba(193, 84, 34, 0.3);
}


/* ── GRILLE CONTACT PAGE ── */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr); 
    gap: 40px;
    align-items: start;
}

.contact-infos {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    min-width: 0;
}


/* ── HORAIRES ── */

.horaires-card {
    background: var(--dark);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 22px;
}

.horaires-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.50);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.horaires-list { list-style: none; }

.horaires-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    padding: 7px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.horaires-list li:last-child { border-bottom: none; }
.horaires-list li span { color: var(--primary); font-weight: 600; }


/* ── FORMULAIRE DE RDV ── */

.form-card {
    background: var(--light);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 28px 16px;
    box-shadow: var(--shadow-soft);
}

.form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--grey);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-main);
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    background: var(--light);
    box-shadow: 0 0 0 3px rgba(225, 84, 34, 0.08);
}

.form-group textarea  { resize: vertical; min-height: 120px; }
.form-group select    { appearance: none; cursor: pointer; }

.form-required { color: var(--secondary); }

.form-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}


/* ── ZONES D'INTERVENTION (page contact) ── */

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

.zone-card {
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zone-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.zone-card.z1::before { background: var(--secondary); }
.zone-card.z2::before { background: var(--primary); }
.zone-card.z3::before { background: var(--gold); }

.zone-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 14px;
}

.zone-card.z1 .zone-number { background: var(--secondary); }
.zone-card.z2 .zone-number { background: var(--primary); }
.zone-card.z3 .zone-number { background: var(--gold); }

.zone-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.zone-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.zone-card.z1 .zone-badge { background: rgba(225, 84, 34, 0.10); color: var(--secondary); }
.zone-card.z2 .zone-badge { background: rgba(232, 145, 82, 0.10); color: var(--primary); }
.zone-card.z3 .zone-badge { background: rgba(255, 184, 0, 0.10);  color: var(--gold); }

.zone-communes {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.8;
}


/* ── FAQ RAPIDE ── */

.faq-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-mini {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 18px;
}

.faq-mini h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.faq-mini p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}


/* ── WIDGET LÉA ── */

.lea-rdv-section {
    background: var(--dark);
    border-radius: 24px;
    padding: 24px 16px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 145, 82, 0.20);
}

.lea-rdv-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232, 145, 82, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.lea-rdv-inner { position: relative; z-index: 1; }

.lea-rdv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lea-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(232, 145, 82, 0.20);
}

.lea-rdv-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 2px;
}

.lea-rdv-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.lea-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    margin-top: 4px;
}

.lea-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: lea-pulse 2s infinite;
}

@keyframes lea-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.40; }
}

.lea-rdv-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
    margin-bottom: 24px;
}

.lea-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.lea-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.lea-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.50);
}

.lea-feature::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}


/* ── SÉPARATEUR ── */

.or-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}


/* ── BLOCS SERVICE (page services) ── */

.service-block {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.service-block:hover { box-shadow: var(--shadow-hover); }

.service-block-visual {
    background: var(--dark);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-block-visual::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232, 145, 82, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.service-block-visual.orange-bg {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.visual-icon { font-size: 56px; margin-bottom: 16px; position: relative; z-index: 1; }

.visual-price {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.price-big    { font-size: 44px; font-weight: 800; color: var(--light); }
.price-suffix { font-size: 13px; color: rgba(255, 255, 255, 0.55); }

.price-tag {
    display: inline-block;
    margin-top: 10px;
    background: rgba(0, 200, 150, 0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 200, 150, 0.3);
}

.price-tag.gold {
    background: rgba(251, 188, 5, 0.15);
    color: var(--google-yellow);
    border-color: rgba(251, 188, 5, 0.3);
}

.duration-badge {
    margin-top: 14px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.duration-badge span { color: var(--light); font-weight: 600; }

.service-block-content { padding: 36px 32px; }

.service-block-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.service-subtitle {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.service-block-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
/* --- MOBILE --- */

.bois-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bois-img-wrapper {
    width: 100%;
    max-width: 480px;     /* bloque la taille max */
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid #3a3a3a;
}

.bois-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}


.features-list {
    list-style: none;
    margin-bottom: 24px;
}

.features-list li {
    font-size: 13.5px;
    color: var(--text-main);
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child { border-bottom: none; }

.features-list li .check {
    width: 20px;
    height: 20px;
    background: rgba(225, 84, 34, 0.10);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--secondary);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.info-item {
    background: var(--grey);
    border-radius: var(--radius);
    padding: 12px 14px;
}

.info-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 700;
}


/* ── CONTRATS ── */

.contrats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.contrat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.contrat-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.contrat-card.featured {
    background: var(--secondary);
    border-color: var(--secondary);
}

.contrat-icon { font-size: 32px; margin-bottom: 14px; }

.contrat-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 4px;
}

.contrat-type {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.contrat-card.featured .contrat-type { color: rgba(255, 255, 255, 0.75); }

.contrat-price-wrap { margin-bottom: 20px; }
.contrat-price  { font-size: 34px; font-weight: 800; color: var(--light); }
.contrat-period { font-size: 13px; color: rgba(255, 255, 255, 0.50); }

.contrat-features {
    list-style: none;
    margin-bottom: 24px;
}

.contrat-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contrat-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
.contrat-card.featured .contrat-features li::before { color: var(--light); }


/* ── PRODUITS SÉCURITÉ ── */

.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.produit-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid #f0f0f0;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

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

.produit-icon { font-size: 38px; margin-bottom: 14px; }

.produit-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.produit-brand {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.produit-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.produit-specs {
    list-style: none;
    margin-bottom: 18px;
}

.produit-specs li {
    font-size: 12.5px;
    color: var(--text-main);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.produit-specs li:last-child { border-bottom: none; }
.produit-specs li::before { content: '▸'; color: var(--secondary); font-size: 10px; }

.produit-badge {
    display: inline-block;
    background: rgba(0, 200, 150, 0.10);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 200, 150, 0.20);
}


/* ── BOIS DE CHAUFFAGE ── */

.bois-section {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.bois-header {
    background: var(--dark);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bois-header-icon { font-size: 48px; }

.bois-header h3 { font-size: 24px; font-weight: 800; color: var(--light); margin-bottom: 4px; }
.bois-header p  { font-size: 14px; color: rgba(255, 255, 255, 0.50); }

.bois-body { padding: 32px; }

.bois-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.bois-type {
    background: var(--grey);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.bois-type .type-icon { font-size: 28px; margin-bottom: 8px; }
.bois-type h4 { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.bois-type p  { font-size: 12.5px; color: var(--text-muted); }

.bois-infos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.bois-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--grey);
    border-radius: var(--radius);
    padding: 14px;
}

.binfo-icon { font-size: 22px; }
.binfo-text h5 { font-size: 13px; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.binfo-text p  { font-size: 12px; color: var(--text-muted); }


/* ── PROCESSUS ── */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 28px 20px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
    display: none; /* activé en desktop dans responsive.css */
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: var(--light);
    margin: 0 auto 14px;
    box-shadow: 0 6px 16px rgba(225, 84, 34, 0.30);
}

.process-step h4 { font-size: 14px; font-weight: 700; color: var(--light); margin-bottom: 6px; }
.process-step p  { font-size: 12.5px; color: rgba(255, 255, 255, 0.50); line-height: 1.6; }


/* ── BANDEAU CTA ── */

.cta-band {
    background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(140, 60, 26, 0.3);
}

.cta-band h2 {
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 800;
    color: var(--light);
    margin-bottom: 10px;
}

.cta-band p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ── PAGE INFOS & CONSEILS ── */

.alert-band {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    box-shadow: 0 8px 20px rgba(140, 60, 26, 0.28);
}

.alert-icon { font-size: 32px; flex-shrink: 0; }

.alert-text h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 4px;
}

.alert-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.infos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid #F0F0F0;
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card.accent-card {
    background: var(--dark-solid);
    border-color: var(--secondary);
}

.card-icon { font-size: 36px; margin-bottom: 12px; }

.info-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-solid);
    margin-bottom: 8px;
}

.info-card.accent-card h3 { color: var(--light); }

.info-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-card.accent-card p { color: rgba(255, 255, 255, 0.62); }

.card-list { list-style: none; margin-top: 12px; }

.card-list li {
    font-size: 13px;
    color: var(--text-main);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid #F0F0F0;
}

.info-card.accent-card .card-list li {
    color: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.08);
}

.card-list li:last-child { border-bottom: none; }

.card-list li::before {
    content: '▸';
    color: var(--secondary);
    font-size: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.regle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.regle-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    padding: 20px 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.regle-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-solid);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.regle-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

.regle-badge {
    display: inline-block;
    margin-top: 10px;
    background: rgba(225, 84, 34, 0.08);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(225, 84, 34, 0.15);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid #F0F0F0;
    padding: 20px 18px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(225, 84, 34, 0.10);
    transform: translateY(-2px);
}

.faq-q {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-solid);
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.faq-q::before {
    content: 'Q';
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    color: var(--light);
    font-size: 10px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-a {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 30px;
}

.saisons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.saison-card {
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid #E0E0E0;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.saison-card.ete       { background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D0 100%); border-color: #FFD166; }
.saison-card.automne   { background: linear-gradient(135deg, #FFF0E8 0%, #FFE4D0 100%); border-color: var(--primary); }
.saison-card.hiver     { background: linear-gradient(135deg, #E8F4FF 0%, #D0E8FF 100%); border-color: #66B2FF; }
.saison-card.printemps { background: linear-gradient(135deg, #E8FFF0 0%, #D0FFE4 100%); border-color: var(--green); }

.saison-icon { font-size: 32px; margin-bottom: 10px; }

.saison-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-solid);
    margin-bottom: 10px;
}

.saison-list { list-style: none; }

.saison-list li {
    font-size: 12.5px;
    color: var(--text-main);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.saison-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: 11px;
    margin-top: 1px;
}


/* ── FAQ ACCORDION ── */

.faq {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 2rem;
}

.faq h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.faq section { margin-bottom: 2rem; }

.faq details {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.faq details[open] {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq summary {
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    list-style: none;
}

.faq summary::marker { content: ""; }

.faq summary::after {
    content: "▼";
    font-size: 0.8rem;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after { transform: rotate(180deg); }

.faq p,
.faq ul { margin: 0.5rem 0 0; padding-left: 1rem; }

.faq ul li { margin-bottom: 0.3rem; }


/* ── CGV ── */

.cgv {
    width: 100%;
    padding: 20px 18px;
    box-sizing: border-box;
    text-align: center;
}

.cgv ul {
    list-style-position: inside;
    word-break: break-word;
}

.cgv h2 { text-wrap: wrap; }


/* ── VARIABLES LOCALES PAGE CONTACT ── */

.contact-page {
    --border: #E8E8F0;
}


    /* Styles spécifiques à la page mentions légales */
.legal-hero {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.85) 100%), url("../assets/images/salon-hiver-hero.webp");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* h1 en haut, p collé en bas */
    align-items: center;             /* centré en mobile */
    text-align: center;
    padding: 82px 8% 6px;           /* même margin-top que hero-content mobile */
    min-height: 550px;
    box-shadow: 0 2px 8px rgba(125, 125, 125, 0.4);
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
    color: white;
    gap: 0;                          /* space-between gère l'espace */
}

/* Bouton hero aligné à droite — page Services uniquement */
.legal-hero .hero-actions {
    align-self: flex-end;
}

.legal-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #fff;
    margin-top: 20px;                   /* retiré, géré par padding-top du parent */
    align-self: center;              /* centré mobile, surchargé en tablette */
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: .95rem;
    text-align: center;              /* toujours centré peu importe la taille */
    width: 100%;
    padding-bottom: 12px;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.legal-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #c0392b;
    margin-bottom: 1rem;
}

.legal-block p,
.legal-block address {
    font-size: .95rem;
    line-height: 1.8;
    color: #444;
    font-style: normal;
    margin-bottom: .6rem;
}

.legal-block a {
    color: #c0392b;
    text-decoration: underline;
}

.legal-block a:hover {
    opacity: .8;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin-top: .5rem;
}

.legal-table td {
    padding: .6rem .8rem;
    border: 1px solid #e8e8e8;
    vertical-align: top;
}

.legal-table td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
    background: #f9f9f9;
}

.legal-table td:last-child {
    color: #555;
}

.legal-notice {
    background: #fff8f0;
    border-left: 3px solid #e67e22;
    padding: .9rem 1.1rem;
    border-radius: 0 6px 6px 0;
    font-size: .9rem;
    color: #555;
    margin-top: 1rem;
}

.legal-date {
    text-align: center;
    font-size: .85rem;
    color: #999;
    margin-top: 3rem;
}


/* ── Articles Grid ── */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
    }

.article-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}

.article-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
    margin: 0;
}

.article-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

.article-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
}

.breadcrumb-bar {
    background: var(--light-bg, #f5f5f5);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border, #e0e0e0);
}

.breadcrumb-bar .article-breadcrumb {
    justify-content: flex-start;
    margin: 0;
}
/* Breadcrumb intégrée dans .legal-hero */
.article-breadcrumb-hero {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    align-self: flex-start;
}

.article-breadcrumb-hero .article-breadcrumb {
    color: rgba(255, 255, 255, 0.65);
    justify-content: flex-start;
    margin: 0;
    font-size: 0.78rem;
}

.article-breadcrumb-hero .article-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
}

.article-breadcrumb-hero .article-breadcrumb a:hover {
    color: var(--primary);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
/* ── FOOTER ── */

footer {
    color: var(--dark);
    text-align: center;
    padding: 20px;
    font-size: 16px;
}
