:root {
    --vert-fonce: #1c4525;
    --vert-clair: #59ac63;
    --blanc: #ffffff;
    --fond-clair: #f4f7f5;
    --texte-sombre: #223026;
    --ombre-douce: 0 20px 40px rgba(28, 69, 37, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--texte-sombre); background: var(--fond-clair); overflow-x: hidden; }

/* Typographie */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--vert-fonce); }
p { font-size: 1.1rem; line-height: 1.8; color: #556057; }
a { text-decoration: none; transition: 0.3s ease; }

/* Conteneurs & Boutons */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 120px 0; }
.text-center { text-align: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 40px; border-radius: 50px; font-weight: 500; font-family: 'Poppins'; text-transform: uppercase; letter-spacing: 1px; font-size: 0.95rem; transition: 0.4s ease; border: none; cursor: pointer; position: relative; overflow: hidden; z-index: 1; }
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: var(--vert-fonce); transition: 0.4s ease; z-index: -1; }
.btn-primary { background: #3a8242; color: var(--blanc); box-shadow: 0 10px 20px rgba(58, 130, 66, 0.3); }
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(28, 69, 37, 0.4); color: white; }

/* Bouton "ghost" — fond verre (ex: téléphone dans le hero) */
.btn-ghost { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost::before { background: rgba(255,255,255,0.15); }
.btn-ghost:hover::before { width: 100%; }
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.6); box-shadow: 0 15px 30px rgba(0,0,0,0.2); color: white; }

/* Bouton contour blanc — sur fond vert foncé (section galerie) */
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white::before { background: white; }
.btn-outline-white:hover::before { width: 100%; }
.btn-outline-white:hover { color: var(--vert-fonce); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); border-color: white; }

/* Header Dynamique */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 20px 0; transition: 0.4s ease; background: transparent; }
header.scrolled { background: rgba(28, 69, 37, 0.95); backdrop-filter: blur(10px); padding: 10px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 70px; width: auto; transition: 0.4s; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
header.scrolled .logo-img { height: 55px; width: auto; filter: none; }
.nav-links { display: flex; gap: 40px; align-items: center; list-style: none; }
.nav-links a { color: var(--blanc); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; position: relative; }

/* Hover desktop : soulignement animé */
.nav-links li a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vert-clair);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-links li a:not(.btn-nav):hover { color: var(--vert-clair); }
.nav-links li a:not(.btn-nav):hover::after { width: 100%; }

/* Page active : soulignement permanent + couleur */
.nav-links li a.active { color: var(--vert-clair); }
.nav-links li a.active::after { width: 100%; }

/* Bouton "Demander un devis" */
.btn-nav { border: 2px solid var(--vert-clair); padding: 10px 25px; border-radius: 30px; transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s; }
.btn-nav:hover { background: var(--vert-clair); color: white !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(89,172,99,0.35); }

/* ============================================
   MENU MOBILE — HAMBURGER
   ============================================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   MENU MOBILE — OVERLAY PLEIN ÉCRAN
   ============================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, var(--vert-fonce) 0%, #0a1a0d 100%);
    z-index: 1002; /* Au-dessus du header (1000) et du toggle (1001) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}
body.menu-open { overflow: hidden; }

.mobile-close {
    position: absolute;
    top: 28px;
    right: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}
.mobile-close:hover { background: rgba(255,255,255,0.18); }

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}
.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: color 0.25s, transform 0.25s;
    position: relative;
}
.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--vert-clair);
    transition: width 0.3s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.mobile-active {
    color: white;
    transform: translateX(6px);
}
.mobile-nav-link:hover::after,
.mobile-nav-link.mobile-active::after { width: calc(100% - 40px); }

.mobile-cta-devis {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vert-clair);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    margin-bottom: 48px;
    box-shadow: 0 8px 24px rgba(89,172,99,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
}
.mobile-cta-devis:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(89,172,99,0.45); color: white; }

.mobile-contact-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}
.mobile-phone-link {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
}
.mobile-phone-link:hover { color: var(--vert-clair); }
.mobile-phone-link i { color: var(--vert-clair); }
.mobile-sep { font-size: 1.2rem; opacity: 0.3; }

/* ============================================
   BOUTON APPEL FLOTTANT (mobile)
   ============================================ */
.float-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 996;
    background: #3a8242;
    color: white;
    border-radius: 50px;
    padding: 14px 22px;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(58,130,66,0.5);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
}
.float-call i { font-size: 1.1rem; animation: ring 2.5s ease infinite; }
.float-call:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(89,172,99,0.6); color: white; }
@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-12deg); }
    20% { transform: rotate(12deg); }
    30% { transform: rotate(0deg); }
}

/* Hero Section (Parallaxe) */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(rgba(10, 25, 13, 0.6), rgba(28, 69, 37, 0.8)), url('/images/travaux/4-IlotCentralApres.webp') center/cover fixed; text-align: center; }
.hero-content { position: relative; z-index: 2; padding-top: 50px; }
.hero h1 { font-size: 5rem; color: var(--blanc); margin-bottom: 20px; line-height: 1.1; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero p { font-size: 1.5rem; color: #e8f4ea; margin-bottom: 40px; font-weight: 300; font-family: 'Poppins'; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Cartes Services (Nouveau !) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.service-card { background: var(--blanc); padding: 50px 30px; border-radius: 20px; text-align: center; box-shadow: var(--ombre-douce); transition: 0.4s ease; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(28, 69, 37, 0.12); }
.service-card i { font-size: 3.5rem; color: var(--vert-clair); margin-bottom: 25px; transition: 0.4s; }
.service-card:hover i { transform: scale(1.1); color: var(--vert-fonce); }
.service-card h3 { font-size: 1.8rem; margin-bottom: 15px; font-family: 'Poppins'; font-weight: 600; }

/* Grille Galerie Wow */
.wow-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 50px; }
.gallery-img-wrapper { position: relative; border-radius: 15px; overflow: hidden; height: 350px; cursor: pointer; }
.gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: 0.8s ease; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,69,37,0.9), transparent); opacity: 0; transition: 0.5s ease; display: flex; align-items: flex-end; padding: 30px; }
.gallery-overlay h3 { color: white; font-size: 1.5rem; font-family: 'Poppins'; transform: translateY(20px); transition: 0.5s ease; }
.gallery-img-wrapper:hover img { transform: scale(1.1); }
.gallery-img-wrapper:hover .gallery-overlay { opacity: 1; }
.gallery-img-wrapper:hover .gallery-overlay h3 { transform: translateY(0); }

/* Formulaire Design */
.contact-box { background: white; border-radius: 30px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.contact-left { background: linear-gradient(135deg, var(--vert-fonce), #0d2412); padding: 60px; color: white; display: flex; flex-direction: column; justify-content: center; }
.contact-right { padding: 60px; }
.input-group { position: relative; margin-bottom: 30px; }
.input-group input, .input-group textarea { width: 100%; padding: 15px 0; border: none; border-bottom: 2px solid #ddd; background: transparent; font-size: 1.1rem; font-family: 'Poppins'; color: var(--texte-sombre); outline: none; transition: 0.3s; }
.input-group input:focus, .input-group textarea:focus { border-bottom-color: var(--vert-clair); }
.input-group label { position: absolute; top: 15px; left: 0; color: #999; transition: 0.3s; pointer-events: none; }
.input-group input:focus ~ label, .input-group input:valid ~ label, .input-group textarea:focus ~ label, .input-group textarea:valid ~ label { top: -10px; font-size: 0.85rem; color: var(--vert-clair); font-weight: 600; }

/* --- CSS POUR LA LIGHTBOX (PLEIN ÉCRAN GALERIE) --- */

.gallery-overlay { flex-direction: column; align-items: center; justify-content: center; text-align: center; }

/* Le fond noir semi-transparent */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 25, 13, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* L'image en grand */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s ease;
}

/* Le texte sous l'image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 1.2rem;
    font-family: 'Poppins';
}

/* La croix de fermeture */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover, .close-lightbox:focus { color: var(--vert-clair); text-decoration: none; cursor: pointer; transform: scale(1.2); }


/* --- SLIDER AVANT/APRÈS --- */
.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 500px; /* Ajustez selon la hauteur de vos photos */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    touch-action: none;
    user-select: none;
    cursor: ew-resize;
}

.image-before, .image-after {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.image-after img, .image-before img {
    width: 100%; height: 100%; object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

/* C'est ici que la magie opère : on coupe l'image du dessus via clip-path */
.image-before {
    width: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* Valeur de départ modifiée par le JS */
}

/* Badges "Avant" et "Après" */
.badge {
    position: absolute; top: 20px; padding: 8px 20px; background: rgba(0,0,0,0.6); color: white; border-radius: 30px; font-weight: bold; z-index: 5; backdrop-filter: blur(5px);
}
.before-badge { left: 20px; }
.after-badge { right: 20px; }

/* La ligne centrale et le bouton */
.slider-line {
    position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 4px; background: white; z-index: 3; pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.slider-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 50px; height: 50px; background: var(--vert-clair); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Le curseur natif HTML5 — masqué, les événements sont gérés directement */
.slider-control {
    display: none;
}

@media (max-width: 768px) {
    .before-after-slider { height: 350px; }
}

/* Animation d'ouverture de l'image */
@keyframes zoomIn {
    from {transform:scale(0.8); opacity: 0;}
    to {transform:scale(1); opacity: 1;}
}

@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .contact-box { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .float-call { display: flex; }
}

/* ============================================
   SECTION CTA APPEL (homepage)
   ============================================ */
.cta-appel {
    background: linear-gradient(135deg, #0d2412 0%, var(--vert-fonce) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-appel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(89,172,99,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-appel-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-appel-text { flex: 1; min-width: 260px; }
.cta-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--vert-clair);
    font-weight: 600;
    margin-bottom: 14px;
}
.cta-appel-text h2 {
    font-size: 2.4rem;
    color: white;
    line-height: 1.25;
    margin-bottom: 18px;
}
.cta-horaires {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cta-horaires i { color: var(--vert-clair); }

.cta-appel-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.btn-appel-principal {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--vert-clair);
    color: white;
    border-radius: 16px;
    padding: 18px 30px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(89,172,99,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}
.btn-appel-principal:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(89,172,99,0.5);
    color: white;
}
.btn-appel-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.btn-appel-icon i { animation: ring 3s ease infinite; }
.btn-appel-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.btn-appel-label small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
    font-weight: 400;
}
.btn-appel-label { font-size: 1.5rem; font-weight: 700; font-family: 'Poppins', sans-serif; }

.cta-devis-link {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
    padding-left: 4px;
}
.cta-devis-link:hover { color: var(--vert-clair); }
.cta-devis-link i { font-size: 0.8rem; }

@media (max-width: 900px) {
    .cta-appel-inner { flex-direction: column; text-align: center; }
    .cta-appel-text h2 { font-size: 1.9rem; }
    .cta-horaires { justify-content: center; }
    .cta-appel-action { align-items: center; width: 100%; }
    .btn-appel-principal { width: 100%; max-width: 360px; justify-content: center; }
}

/* ============================================
   SECTION GALERIE (homepage) — CTA bouton
   ============================================ */
.gallery-section-header { margin-bottom: 40px; }

.gallery-section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   SECTION NOS ENGAGEMENTS (homepage)
   ============================================ */
.engagements-section { background: white; }

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.engagement-card {
    background: var(--fond-clair);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(28,69,37,0.1);
    background: white;
}
.engagement-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--vert-clair), var(--vert-fonce));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.6rem;
    color: white;
    transition: transform 0.3s ease;
}
.engagement-card:hover .engagement-icon { transform: scale(1.1) rotate(-4deg); }
.engagement-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--vert-fonce);
    margin-bottom: 12px;
}
.engagement-card p { font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 600px) {
    .engagements-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE CONTACT — HERO
   ============================================ */
.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--vert-fonce) 0%, #0d2412 100%);
    text-align: center;
}
.contact-hero h1 {
    font-size: 3rem;
    color: var(--blanc);
    margin-bottom: 15px;
}
.contact-hero p {
    font-size: 1.2rem;
    color: #c5ddc9;
    font-weight: 300;
}

/* ============================================
   PAGE CONTACT — GRILLE PRINCIPALE
   ============================================ */
.contact-section { padding: 80px 0 120px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

/* --- Appel direct (encart gauche) --- */
.contact-appel-direct {
    background: linear-gradient(135deg, var(--vert-fonce), #0d2412);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 36px;
    text-align: center;
}
.contact-appel-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vert-clair);
    font-weight: 600;
    margin-bottom: 16px;
}
.contact-appel-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--vert-clair);
    color: white;
    border-radius: 14px;
    padding: 16px 24px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(89,172,99,0.4);
    transition: transform 0.25s, box-shadow 0.25s;
    width: 100%;
    justify-content: center;
}
.contact-appel-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(89,172,99,0.5); color: white; }
.contact-appel-btn i { font-size: 1.3rem; animation: ring 3s ease infinite; }
.contact-appel-btn span { display: flex; flex-direction: column; line-height: 1.3; text-align: left; }
.contact-appel-btn small { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.75; font-weight: 400; }
.contact-appel-btn span { font-size: 1.25rem; font-weight: 700; }
.contact-appel-horaires {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    margin-bottom: 0;
}

.contact-infos-list { margin-bottom: 0; }

/* --- Infos de contact --- */
.contact-infos h2 { font-size: 1.8rem; margin-bottom: 30px; }

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.info-icon {
    width: 46px;
    height: 46px;
    background: var(--vert-clair);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.info-item strong { display: block; color: var(--vert-fonce); font-weight: 600; margin-bottom: 4px; }
.info-item p { font-size: 1rem; line-height: 1.6; margin: 0; }
.info-item a { color: var(--vert-fonce); font-weight: 600; }
.info-item a:hover { color: var(--vert-clair); }

.map-embed {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--ombre-douce);
}

/* --- Formulaire --- */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--ombre-douce);
}
.contact-form-wrapper h2 { font-size: 1.8rem; margin-bottom: 10px; }

.form-intro {
    font-size: 1rem;
    color: #8fa693;
    margin-bottom: 30px;
}

.label-optional {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #aaa;
    background: #f0f4f1;
    border-radius: 20px;
    padding: 2px 10px;
    margin-left: 8px;
    text-transform: none;
    letter-spacing: 0;
    vertical-align: middle;
}

.devis-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.devis-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.devis-form label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--vert-fonce);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.devis-form input[type="text"],
.devis-form input[type="email"],
.devis-form input[type="tel"],
.devis-form textarea,
.devis-form select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0e8e2;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--texte-sombre);
    background: var(--fond-clair);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.devis-form input:focus,
.devis-form textarea:focus,
.devis-form select:focus {
    border-color: var(--vert-clair);
    box-shadow: 0 0 0 3px rgba(89, 172, 99, 0.15);
    background: white;
}

.devis-form textarea { resize: vertical; min-height: 120px; }

.devis-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231c4525' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* --- Checkboxes personnalisées --- */
.checkboxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--texte-sombre);
    padding: 10px 14px;
    border: 2px solid #e0e8e2;
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.checkbox-label:hover { border-color: var(--vert-clair); background: #f0f8f1; }

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #c5d5c8;
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: var(--vert-clair);
    border-color: var(--vert-clair);
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}
.checkbox-label:has(input:checked) {
    border-color: var(--vert-clair);
    background: #f0f8f1;
}

/* --- Bouton et note --- */
.btn-full { width: 100%; justify-content: center; border-radius: 12px; font-size: 1.05rem; }
.form-note { font-size: 0.85rem; color: #999; margin-top: 14px; text-align: center; }

/* --- Alerte erreur --- */
.alert-error {
    background: #fff0f0;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 20px 0 0;
    font-size: 0.95rem;
}

/* ============================================
   PAGE MENTIONS LÉGALES
   ============================================ */
.legal-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--vert-fonce) 0%, #0d2412 100%);
    text-align: center;
}
.legal-hero h1 { font-size: 2.5rem; color: var(--blanc); margin-bottom: 12px; }
.legal-hero p { font-size: 1.1rem; color: #c5ddc9; font-weight: 300; }

.legal-section { padding: 70px 0 100px; }

.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5ede7;
}
.legal-block:last-of-type { border-bottom: none; margin-bottom: 0; }

.legal-block h2 {
    font-size: 1.5rem;
    color: var(--vert-fonce);
    margin-bottom: 18px;
}
.legal-block h3 {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--vert-fonce);
    margin: 20px 0 8px;
}
.legal-block p { margin-bottom: 14px; font-size: 1rem; }
.legal-block a { color: var(--vert-clair); font-weight: 500; }
.legal-block a:hover { text-decoration: underline; }

.legal-block ul {
    padding-left: 24px;
    margin-bottom: 14px;
}
.legal-block ul li {
    font-size: 1rem;
    line-height: 2;
    color: #556057;
}

.legal-date {
    font-size: 0.9rem;
    color: #999;
    margin-top: 40px;
    font-style: italic;
}

/* ============================================
   PAGE SUCCESS
   ============================================ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}
.success-icon {
    font-size: 5rem;
    color: var(--vert-clair);
    margin-bottom: 30px;
}
.success-page h1 { font-size: 2.5rem; margin-bottom: 20px; }
.success-page p { font-size: 1.1rem; margin-bottom: 10px; }

/* ============================================
   PAGE 404
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}
.error-code {
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: var(--vert-clair);
    line-height: 1;
    margin-bottom: 10px;
}
.error-page h1 { font-size: 2rem; margin-bottom: 15px; }
.error-page p { font-size: 1.1rem; }

/* ============================================
   RESPONSIVE — CONTACT
   ============================================ */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-hero h1 { font-size: 2.2rem; }
    .contact-form-wrapper { padding: 30px 20px; }
    .devis-form .form-row { grid-template-columns: 1fr; }
    .checkboxes-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE PACKS ANNUELS
   ============================================ */

/* Hero */
.packs-hero {
    padding: 160px 0 90px;
    background: linear-gradient(135deg, var(--vert-fonce) 0%, #0d2412 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.packs-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(89,172,99,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.packs-hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vert-clair);
    font-weight: 600;
    margin-bottom: 16px;
}
.packs-hero h1 {
    font-size: 3.2rem;
    color: var(--blanc);
    margin-bottom: 16px;
    line-height: 1.15;
}
.packs-hero p {
    font-size: 1.2rem;
    color: #c5ddc9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro note tarifaire */
.packs-pricing-note {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--fond-clair);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid var(--vert-clair);
}
.packs-pricing-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--vert-clair), var(--vert-fonce));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}
.packs-pricing-text h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    line-height: 1.25;
}
.packs-pricing-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #556057;
}
.packs-pricing-text strong { color: var(--vert-fonce); }

/* Grille des packs */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

/* Carte de base */
.pack-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(28,69,37,0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(28,69,37,0.12);
}

/* Carte Confort — mise en avant */
.pack-card-featured {
    background: linear-gradient(145deg, var(--vert-fonce) 0%, #0d2412 100%);
    color: white;
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(28,69,37,0.3);
}
.pack-card-featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 34px 80px rgba(28,69,37,0.35);
}
.pack-card-featured .pack-name,
.pack-card-featured .pack-tagline,
.pack-card-featured .pack-includes-title {
    color: white;
}
.pack-card-featured .pack-includes ul li {
    color: rgba(255,255,255,0.85);
}
.pack-card-featured .pack-includes ul li i {
    color: var(--vert-clair);
}

.pack-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vert-clair);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(89,172,99,0.5);
}

/* En-tête de la carte */
.pack-header {
    text-align: center;
}
.pack-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}
.pack-card:hover .pack-icon { transform: scale(1.08) rotate(-4deg); }
.pack-icon-essentiel { background: linear-gradient(135deg, #59ac63, #3d8447); }
.pack-icon-confort   { background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1)); border: 1px solid rgba(255,255,255,0.3); }
.pack-icon-signature { background: linear-gradient(135deg, #8b6914, #c4960a); }

.pack-visits-badge {
    display: inline-block;
    background: rgba(89,172,99,0.12);
    color: var(--vert-fonce);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.pack-visits-badge-white {
    background: rgba(255,255,255,0.15);
    color: white;
}
.pack-visits-badge-gold {
    background: rgba(196,150,10,0.12);
    color: #8b6914;
}
.pack-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--vert-fonce);
    margin-bottom: 8px;
}
.pack-tagline {
    font-size: 0.95rem;
    color: #7a9080;
    line-height: 1.55;
}
.pack-card-featured .pack-tagline { color: rgba(255,255,255,0.65); }

/* Bandeau highlights */
.pack-highlight-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--fond-clair);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--texte-sombre);
}
.pack-highlight-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pack-highlight-row i { color: var(--vert-clair); font-size: 0.9rem; }
.pack-highlight-row strong { color: var(--vert-fonce); }

.pack-highlight-row-white {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
}
.pack-highlight-row-white i { color: var(--vert-clair); }
.pack-highlight-row-white strong { color: white; }

/* Liste inclus */
.pack-includes { flex: 1; }
.pack-includes-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--vert-clair);
    margin-bottom: 14px;
}
.pack-card-featured .pack-includes-title { color: var(--vert-clair); }
.pack-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.pack-includes ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: #556057;
    line-height: 1.5;
}
.pack-includes ul li i {
    color: var(--vert-clair);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Note "idéal pour" */
.pack-ideal {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(89,172,99,0.07);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.88rem;
    color: var(--vert-fonce);
    line-height: 1.5;
    font-style: italic;
}
.pack-ideal i {
    color: var(--vert-clair);
    margin-top: 2px;
    flex-shrink: 0;
}
.pack-ideal-white {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
}
.pack-ideal-white i { color: var(--vert-clair); }

/* CTA des cartes */
.pack-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.pack-cta-secondary {
    background: var(--fond-clair);
    color: var(--vert-fonce);
    border: 2px solid rgba(28,69,37,0.1);
}
.pack-cta-secondary:hover {
    background: var(--vert-clair);
    color: white;
    border-color: var(--vert-clair);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(89,172,99,0.35);
}
.pack-cta-white {
    background: white;
    color: var(--vert-fonce);
}
.pack-cta-white:hover {
    background: var(--vert-clair);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Note bas de grille */
.packs-devis-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    color: #7a9080;
    font-size: 0.95rem;
    font-weight: 500;
}
.packs-devis-note i { color: var(--vert-clair); font-size: 1.1rem; }

/* Note tarifaire sous les cartes */
.packs-pricing-below {
    margin-top: 60px;
    background: white;
    border-radius: 24px;
    padding: 48px;
    border-left: 5px solid var(--vert-clair);
    box-shadow: 0 4px 20px rgba(28,69,37,0.05);
}
.packs-pricing-below-inner {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}
.packs-pricing-below-icon {
    flex-shrink: 0;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--vert-clair), var(--vert-fonce));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: white;
}
.packs-pricing-below-text h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--vert-fonce);
}
.packs-pricing-below-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #556057;
}
.packs-pricing-below-text strong { color: var(--vert-fonce); }

/* Responsive packs */
@media (max-width: 1024px) {
    .packs-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .pack-card-featured { transform: none; }
    .pack-card-featured:hover { transform: translateY(-8px); }
}
@media (max-width: 768px) {
    .packs-hero h1 { font-size: 2.2rem; }
    .packs-pricing-below { padding: 28px 22px; }
    .packs-pricing-below-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 560px) {
    .packs-grid { max-width: 100%; }
    .pack-card { padding: 32px 22px; }
}

/* ============================================
   SECTION PACKS — HOMEPAGE (teaser)
   ============================================ */
.home-packs-section { background: var(--fond-clair); }

.home-packs-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vert-clair);
    font-weight: 600;
    margin-bottom: 12px;
}

.home-packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.home-pack-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(28,69,37,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.home-pack-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(28,69,37,0.12);
}
.home-pack-featured {
    background: linear-gradient(145deg, var(--vert-fonce) 0%, #0d2412 100%);
    transform: scale(1.02);
}
.home-pack-featured:hover { transform: scale(1.02) translateY(-6px); }
.home-pack-featured h3, .home-pack-featured p { color: white !important; }
.home-pack-featured p { color: rgba(255,255,255,0.7) !important; }

.home-pack-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--vert-clair);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(89,172,99,0.4);
}

.home-pack-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin: 0 auto 14px;
}
.home-pack-icon-essentiel { background: linear-gradient(135deg, #59ac63, #3d8447); }
.home-pack-icon-confort   { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }
.home-pack-icon-signature { background: linear-gradient(135deg, #8b6914, #c4960a); }

.home-pack-visits {
    display: inline-block;
    background: rgba(89,172,99,0.1);
    color: var(--vert-fonce);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.home-pack-visits-white { background: rgba(255,255,255,0.15); color: white; }
.home-pack-visits-gold { background: rgba(196,150,10,0.1); color: #8b6914; }

.home-pack-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--vert-fonce);
}
.home-pack-card p { font-size: 0.92rem; line-height: 1.65; }

.home-packs-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    background: white;
    border-radius: 16px;
    padding: 22px 32px;
    border-left: 4px solid var(--vert-clair);
}
.home-packs-pricing i { color: var(--vert-clair); font-size: 1.2rem; flex-shrink: 0; }
.home-packs-pricing p {
    font-size: 0.95rem;
    color: #556057;
    margin: 0;
    flex: 1;
    min-width: 200px;
}
.home-packs-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vert-clair);
    color: white;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.home-packs-cta:hover {
    background: var(--vert-fonce);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28,69,37,0.25);
    color: white;
}

@media (max-width: 900px) {
    .home-packs-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 40px; }
    .home-pack-featured { transform: none; }
    .home-pack-featured:hover { transform: translateY(-6px); }
}

/* ============================================
   PAGE GALERIE — HERO
   ============================================ */
.gallery-hero-new {
    padding: 160px 0 90px;
    background: linear-gradient(135deg, var(--vert-fonce) 0%, #0d2412 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gallery-hero-new::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(89,172,99,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.gallery-hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vert-clair);
    font-weight: 600;
    margin-bottom: 14px;
}
.gallery-hero-new h1 { font-size: 3.2rem; color: white; margin-bottom: 16px; }
.gallery-hero-new p { font-size: 1.15rem; color: #c5ddc9; font-weight: 300; max-width: 650px; margin: 0 auto; }

.gallery-section-title { text-align: center; margin-bottom: 56px; }
.gallery-section-kicker {
    display: inline-block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vert-clair);
    font-weight: 600;
    margin-bottom: 12px;
}
.gallery-section-title h2 { font-size: 2.8rem; margin-bottom: 12px; }
.gallery-section-title p { font-size: 1rem; color: #7a9080; max-width: 500px; margin: 0 auto; }

/* ============================================
   CARTES COMPARAISON — PANEL SLIDE
   ============================================ */
.cmp-section { background: white; }

.cmp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cmp-card-last { grid-column: 2; }

.cmp-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    background: #0a160d;
    box-shadow: 0 8px 32px rgba(28,69,37,0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.cmp-card:hover {
    box-shadow: 0 24px 64px rgba(28,69,37,0.22);
    transform: translateY(-6px);
}

.cmp-card-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.cmp-card-img > img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.cmp-card:hover .cmp-card-img > img { transform: scale(1.07); }

.cmp-apres-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(89,172,99,0.88);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    display: flex; align-items: center; gap: 6px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
}

.cmp-card-panel {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(4,12,5,0.98) 0%, rgba(4,12,5,0.92) 55%, rgba(4,12,5,0.6) 82%, transparent 100%);
    transform: translateY(calc(100% - 60px));
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}
.cmp-card:hover .cmp-card-panel { transform: translateY(0); }

.cmp-card-thumb {
    position: relative;
    height: 120px;
    margin: 18px 16px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.cmp-card-thumb > img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.cmp-avant-label {
    position: absolute;
    top: 8px; left: 10px;
    background: rgba(0,0,0,0.7);
    color: rgba(255,255,255,0.9);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.cmp-card-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 16px;
    height: 60px;
}
.cmp-card-icon { color: var(--vert-clair); font-size: 0.9rem; flex-shrink: 0; }
.cmp-card-info h4 {
    flex: 1;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cmp-card-btn {
    color: var(--vert-clair);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.cmp-card:hover .cmp-card-btn { opacity: 1; transform: translateX(0); }

/* ============================================
   MODAL AVANT/APRES — COTE A COTE
   ============================================ */
.cmp-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(3, 8, 4, 0.97);
    backdrop-filter: blur(14px);
    display: none;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 20px 20px;
    transition: opacity 0.35s ease;
}
.cmp-modal.cmp-open { opacity: 1; }

.cmp-modal-panels {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: calc(100svh - 170px);
    max-height: 760px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cmp-modal-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-width: 0;
}
.cmp-modal-panel img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.cmp-panel-label {
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.65);
    color: white;
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 2;
}
.cmp-panel-label-apres {
    background: rgba(89,172,99,0.85);
    border-color: rgba(89,172,99,0.4);
}

.cmp-modal-divider {
    width: 5px;
    flex-shrink: 0;
    position: relative;
    background: white;
    box-shadow: 0 0 24px rgba(255,255,255,0.4);
    z-index: 2;
}
.cmp-modal-divider-line {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 42px; height: 42px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.cmp-modal-divider-line::before {
    content: '\f337';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--vert-fonce);
    font-size: 0.95rem;
}

.cmp-modal-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    width: 100%;
    max-width: 1200px;
}
.cmp-modal-title {
    flex: 1;
    text-align: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
.cmp-modal-nav {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
}
.cmp-modal-nav:hover { background: var(--vert-clair); border-color: var(--vert-clair); transform: scale(1.1); }

.cmp-modal-close {
    position: absolute;
    top: 18px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.2s;
    z-index: 10;
}
.cmp-modal-close:hover { background: rgba(200,50,50,0.5); transform: rotate(90deg); }

.cmp-modal-counter {
    position: absolute;
    top: 26px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    font-family: 'Poppins';
    letter-spacing: 1px;
}

/* ============================================
   GRILLE REALISATIONS
   ============================================ */
.gallery-realisations-section { padding-top: 80px; }
.gallery-group { margin-bottom: 64px; }
.gallery-group:last-child { margin-bottom: 0; }

.gallery-group-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--vert-fonce);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(28,69,37,0.08);
}
.gallery-group-title i { color: var(--vert-clair); }

.gallery-realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.gallery-real-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    background: #1c4525;
}
.gallery-real-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-real-item:hover img { transform: scale(1.08); }

.real-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,25,13,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.3rem;
}
.gallery-real-item:hover .real-overlay { opacity: 1; }

/* ============================================
   LIGHTBOX REALISATIONS
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5, 12, 7, 0.97);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
}
.lightbox-content {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: opacity 0.2s ease;
    display: block;
}
#lightbox-caption { margin-top: 14px; color: #afc8b4; font-size: 0.9rem; font-family: 'Poppins'; text-align: center; }
.lightbox-counter { margin-top: 6px; color: rgba(255,255,255,0.3); font-size: 0.78rem; font-family: 'Poppins'; text-align: center; letter-spacing: 1px; }

.lightbox-close {
    position: absolute;
    top: 18px; right: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.2s;
}
.lightbox-close:hover { background: rgba(200,50,50,0.5); transform: rotate(90deg); }

.lightbox-nav {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
    margin: 0 12px;
}
.lightbox-nav:hover { background: var(--vert-clair); border-color: var(--vert-clair); transform: scale(1.1); }

/* ============================================
   RESPONSIVE GALERIE
   ============================================ */
@media (max-width: 1024px) {
    .cmp-grid { grid-template-columns: repeat(2, 1fr); }
    .cmp-card-last { grid-column: 1 / 3; max-width: calc(50% - 12px); margin: 0 auto; }
}
@media (max-width: 900px) {
    .gallery-hero-new h1 { font-size: 2.3rem; }
    .cmp-modal-title { font-size: 1.2rem; }
}
@media (max-width: 700px) {
    .cmp-modal { padding: 66px 10px 16px; }
    .cmp-modal-panels {
        flex-direction: column;
        height: calc(100svh - 150px);
        max-height: none;
        border-radius: 12px;
    }
    .cmp-modal-divider { width: 100%; height: 5px; }
    .cmp-modal-divider-line { display: none; }
    .cmp-panel-label { font-size: 0.68rem; padding: 5px 14px; }
    .cmp-modal-nav { width: 44px; height: 44px; }
    .cmp-modal-title { font-size: 1rem; }
}
@media (max-width: 640px) {
    .cmp-grid { grid-template-columns: 1fr; }
    .cmp-card-last { grid-column: 1; max-width: 100%; margin: 0; }
    .gallery-realisations-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-real-item { height: 150px; }
    .lightbox-nav {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 40px; height: 40px;
        font-size: 0.9rem;
        margin: 0;
        z-index: 2001;
    }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

/* ============================================
   AVANT/APRÈS — BA SHOWCASE SLIDER
   ============================================ */
.ba-showcase {
    background: #1e2832;
    padding: 90px 0 80px;
}
.ba-showcase .gallery-section-title { text-align: center; margin-bottom: 50px; }
.ba-showcase .gallery-section-title h2 { color: white; font-size: 2.8rem; margin-bottom: 12px; }
.ba-showcase .gallery-section-title p { color: #a1b0a3; font-size: 1rem; }
.ba-showcase .gallery-section-kicker {
    display: inline-block;
    background: rgba(89,172,99,0.2);
    color: var(--vert-clair);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ba-wrapper { display: flex; flex-direction: column; gap: 20px; }

.ba-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ba-slider {
    position: relative;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: col-resize;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.22s ease, transform 0.22s ease;
    user-select: none;
    -webkit-user-select: none;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.ba-img-before {
    clip-path: inset(0 50% 0 0);
}

.ba-badge {
    position: absolute;
    bottom: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ba-badge-apres { right: 14px; background: rgba(89,172,99,0.9); color: white; }
.ba-badge-avant { left: 14px; background: rgba(0,0,0,0.55); color: white; }

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}
.ba-handle-bar {
    flex: 1;
    width: 3px;
    background: white;
    opacity: 0.85;
}
.ba-handle-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vert-fonce);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    flex-shrink: 0;
}

.ba-arrow {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.2s;
    flex-shrink: 0;
}
.ba-arrow:hover { background: var(--vert-clair); border-color: var(--vert-clair); transform: scale(1.1); }

.ba-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
}
.ba-info-row h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}
.ba-pair-counter {
    color: #a1b0a3;
    font-size: 0.9rem;
    font-weight: 500;
}

.ba-thumbs-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.ba-thumbs-strip::-webkit-scrollbar { height: 4px; }
.ba-thumbs-strip::-webkit-scrollbar-track { background: transparent; }
.ba-thumbs-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.ba-thumb {
    flex-shrink: 0;
    width: 110px;
    background: none;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.ba-thumb img {
    width: 100%;
    height: 68px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.ba-thumb-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #a1b0a3;
    text-align: center;
    padding: 5px 4px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ba-thumb:hover { border-color: var(--vert-clair); transform: translateY(-2px); }
.ba-thumb-active { border-color: var(--vert-clair) !important; }
.ba-thumb-active .ba-thumb-label { color: var(--vert-clair); }

@media (max-width: 768px) {
    .ba-showcase { padding: 60px 0; }
    .ba-showcase .gallery-section-title h2 { font-size: 2rem; }
    .ba-slider { aspect-ratio: 4/3; max-height: 70vw; }
    .ba-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
    .ba-thumb { width: 88px; }
    .ba-thumb img { height: 55px; }
    .ba-handle-circle { width: 38px; height: 38px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .ba-slider-row { gap: 8px; }
    .ba-arrow { width: 34px; height: 34px; font-size: 0.8rem; }
    .ba-slider { aspect-ratio: 4/3; max-height: 72vw; }
    .ba-thumb { width: 76px; }
    .ba-thumb img { height: 48px; }
    .ba-thumbs-strip { gap: 8px; }
}

/* ============================================
   JUSTIFICATION DES TEXTES (paragraphes)
   ============================================ */
.legal-content p,
.legal-content li,
.pack-tagline,
.pack-includes ul li,
.pack-ideal span,
.packs-pricing-below-text p,
.home-pack-card p,
.engagement-card p,
.contact-infos p,
.form-intro,
.service-card p {
    text-align: justify;
}

/* ============================================
   BOUTON APPEL FLOTTANT — au-dessus du footer
   ============================================ */
.float-call.above-footer {
    position: absolute;
}

/* ============================================
   BA SHOWCASE — FOND CLAIR (overrides)
   ============================================ */
.ba-showcase { background: #f4f7f5; }
.ba-showcase .gallery-section-title h2 { color: var(--vert-fonce); }
.ba-showcase .gallery-section-title p { color: #556057; }
.ba-showcase .gallery-section-kicker {
    background: rgba(28,69,37,0.08);
    color: var(--vert-fonce);
}
.ba-arrow {
    background: rgba(28,69,37,0.07);
    border: 1px solid rgba(28,69,37,0.2);
    color: var(--vert-fonce);
}
.ba-arrow:hover { background: var(--vert-clair); border-color: var(--vert-clair); color: white; }
.ba-info-row h3 { color: var(--vert-fonce); }
.ba-pair-counter { color: #7a8f7d; }
.ba-thumbs-strip {
    scrollbar-color: rgba(28,69,37,0.2) transparent;
}
.ba-thumbs-strip::-webkit-scrollbar-thumb { background: rgba(28,69,37,0.2); }
.ba-thumb { border: 2px solid rgba(28,69,37,0.12); background: white; }
.ba-thumb-label { color: #7a8f7d; }

/* Honeypot anti-bot — invisible pour les humains */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   SECTION AVIS GOOGLE
   ============================================ */
.reviews-section { background: white; }

.reviews-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.reviews-kicker i { font-size: 1rem; }

.reviews-global-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 12px 0 48px;
}
.reviews-avg-score {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--vert-fonce);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.reviews-stars-big { color: #f9ab00; font-size: 1.4rem; display: flex; gap: 3px; }
.reviews-see-all {
    color: #1a73e8;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.reviews-see-all:hover { gap: 9px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--fond-clair);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(28,69,37,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ombre-douce);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.review-author {
    font-weight: 600;
    color: var(--texte-sombre);
    font-size: 0.92rem;
    margin: 0;
}
.review-date {
    color: #8a9a8d;
    font-size: 0.78rem;
    margin: 2px 0 0;
}
.review-stars {
    margin-left: auto;
    color: #f9ab00;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}
.review-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #556057;
    margin: 0;
}

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-avg-score { font-size: 2.2rem; }
}
