/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--white); padding: 12px 24px;
    border-radius: 0 0 8px 8px; z-index: 10000; font-weight: 600;
    transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2D3436;
    --primary-dark: #1E2527;
    --accent: #6AB04C;
    --accent-dark: #52904A;
    --accent-light: rgba(106,176,76,0.12);
    --beige: #F2F6F1;
    --beige-dark: #E2EBE0;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --font: 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 8px; font-weight: 600;
    font-size: 14px; border: none; cursor: pointer;
    transition: var(--transition); letter-spacing: 0.5px;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(106,176,76,0.45); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--beige); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== SECTION LABELS ===== */
.section-label {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 700; color: var(--accent);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-label.center { justify-content: center; }
.section-label .line { display: inline-block; width: 40px; height: 2px; background: var(--accent); }
.section-title { font-size: 36px; font-weight: 800; color: var(--primary); line-height: 1.2; margin-bottom: 20px; }
.section-header { margin-bottom: 50px; }
.section-subtitle { font-size: 15px; color: var(--gray-600); max-width: 600px; margin: -8px auto 0; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary); color: rgba(255,255,255,0.7); font-size: 13px; padding: 10px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar i { color: var(--accent); }

/* ===== HEADER ===== */
.header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; color: var(--primary); }
.logo img { height: 75px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--gray-700); position: relative; padding: 4px 0; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-cta { background: var(--accent); color: var(--white); border-radius: 8px; padding: 10px 22px; font-weight: 600; font-size: 14px; }
.header-cta:hover { background: var(--accent-dark); }
.header-cta i { font-size: 12px; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 26px; height: 2px; background: var(--primary); transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.35) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-text { max-width: 620px; }
.hero-subtitle { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.hero-subtitle .line { display: inline-block; width: 40px; height: 2px; background: var(--accent); }
.hero h1 { font-size: 48px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero-list { margin-bottom: 32px; }
.hero-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 15px; margin-bottom: 10px; }
.hero-list i { color: var(--accent); font-size: 18px; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border: none; color: var(--white); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: var(--transition); }
.slider-btn:hover { background: var(--accent); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 60px 0; background: var(--white); }
.stats-bar-inner { display: flex; align-items: stretch; gap: 30px; max-width: 1200px; overflow: hidden; }
.stat-card { border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; justify-content: center; flex: 1; min-width: 0; }
.stat-card-accent { background: var(--primary); color: var(--white); }
.stat-card h3 { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-card p { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.stat-desc { font-size: 13px; opacity: 0.85; line-height: 1.6; }
.stat-images { display: flex; gap: 20px; flex: 2; min-width: 0; }
.stat-images img { flex: 1; height: 100%; min-height: 220px; max-height: 300px; object-fit: cover; border-radius: var(--radius); min-width: 0; }

/* ===== ABOUT ===== */
.about { padding: 80px 0; background: var(--beige); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); width: 100%; height: 450px; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px; object-fit: cover; border-radius: var(--radius); border: 6px solid var(--white); box-shadow: var(--shadow); }
.about-text { color: var(--gray-600); margin-bottom: 30px; font-size: 15px; }
.about-feature { display: flex; gap: 16px; margin-bottom: 24px; }
.about-feature-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 22px; }
.about-feature h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.about-feature p { font-size: 14px; color: var(--gray-600); }

/* ===== SERVICES ===== */
.services { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition); background: var(--white); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-icon { width: 60px; height: 60px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 24px; margin-bottom: 20px; }
.service-card:hover .service-icon { background: var(--accent); color: var(--white); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ===== RÉALISATIONS ===== */
.realisations { padding: 80px 0; background: var(--beige); }
.realisations-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 20px; }
.realisation-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.realisation-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.realisation-card:hover img { transform: scale(1.08); }
.realisation-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.12) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 1; transition: background 0.4s ease; }
.realisation-card:hover .realisation-overlay { background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.35) 65%, transparent 100%); }
.realisation-tag { display: inline-block; background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; width: fit-content; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.realisation-overlay h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.realisation-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); }
.realisation-large { grid-column: span 2; }

/* ===== TESTIMONIALS V2 — CAROUSEL ===== */
.testimonials { padding: 80px 0; background: var(--white); }

.testimonial-rating-summary { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: -8px; }
.testimonial-stars-big { color: #f59e0b; font-size: 22px; display: flex; gap: 2px; }
.testimonial-note { font-size: 14px; color: var(--gray-600); font-weight: 500; }

.testimonial-carousel-wrap { position: relative; max-width: 700px; margin: 0 auto; overflow: hidden; }
.testimonial-carousel { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-slide { min-width: 100%; padding: 0 10px; }

.testimonial-card-v2 {
    background: var(--beige); border-radius: var(--radius); padding: 40px;
    text-align: center; box-shadow: var(--shadow);
    min-height: 340px; display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-card-v2 .testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 20px; display: flex; gap: 2px; justify-content: center; }
.testimonial-card-v2 .testimonial-text { font-size: 17px; color: var(--gray-700); line-height: 1.8; margin-bottom: 28px; font-style: italic; max-width: 560px; margin-left: auto; margin-right: auto; flex: 1; display: flex; align-items: center; justify-content: center; }
.testimonial-author-v2 { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.testimonial-author-v2 strong { display: block; font-size: 15px; color: var(--primary); text-align: left; }
.testimonial-author-v2 span { font-size: 12px; color: var(--gray-400); text-align: left; display: block; }
.testimonial-google { width: 60px; opacity: 0.6; margin-left: 12px; }

.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: var(--transition); border: none; }
.testimonial-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* ===== ESTIMATION CTA BIG ===== */
.estimation-cta-section { padding: 60px 0; background: var(--beige); }
.estimation-cta-big {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center;
    background: var(--white); border-radius: 16px; padding: 50px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.estimation-cta-big-icon { width: 64px; height: 64px; border-radius: 14px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.estimation-cta-big h2 { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
.estimation-cta-big p { font-size: 15px; color: var(--gray-600); margin-bottom: 28px; }

/* Mini mockup */
.estimation-mockup { background: var(--beige); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.estimation-mockup-header { background: var(--primary); padding: 12px 16px; display: flex; gap: 6px; }
.estimation-mockup-header span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.estimation-mockup-body { padding: 24px; }
.estimation-mockup-line { height: 10px; border-radius: 5px; background: var(--gray-200); margin-bottom: 14px; }
.estimation-mockup-line.w80 { width: 80%; }
.estimation-mockup-line.w60 { width: 60%; }
.estimation-mockup-line.w40 { width: 50%; }
.estimation-mockup-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.estimation-mockup-btn { width: 60px; height: 10px; border-radius: 5px; background: var(--accent-light); }
.estimation-mockup-total { background: var(--white); border-radius: 8px; padding: 16px; display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.estimation-mockup-total span { font-size: 13px; color: var(--gray-600); }
.estimation-mockup-total strong { font-size: 22px; font-weight: 800; color: var(--accent); }

/* ===== CTA ===== */
.cta { padding: 60px 0; background: var(--primary); overflow: hidden; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-content { max-width: 520px; }
.cta h2 { font-size: 36px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 28px; }
.cta .btn-white:hover { color: var(--accent); }
.cta-image img { width: 280px; height: 280px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ===== ZONE ===== */
.zone { padding: 80px 0; background: var(--beige); }
.zone-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.zone-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.zone-city { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--white); border-radius: 8px; font-weight: 500; font-size: 14px; color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: var(--transition); }
.zone-city:hover { background: var(--accent); color: var(--white); }
.zone-city i { color: var(--accent); font-size: 14px; }
.zone-city:hover i { color: var(--white); }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
    border-radius: 8px; font-family: var(--font); font-size: 14px;
    color: var(--dark); background: var(--beige); transition: var(--transition); outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(106,176,76,0.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--beige); border-radius: var(--radius); }
.contact-info-card > i { width: 44px; height: 44px; border-radius: 10px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.contact-info-card p { font-size: 13px; color: var(--gray-600); }
.contact-info-card a { color: var(--accent); }
.contact-info-card a:hover { text-decoration: underline; }

/* RGPD Consent */
.form-consent { margin-top: 8px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; }
.checkbox-label a { color: var(--accent); text-decoration: underline; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 10000;
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox-overlay.active { display: flex; opacity: 1; }
.lightbox-overlay img {
    max-width: 90vw; max-height: 85vh; border-radius: 12px;
    object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9); transition: transform 0.3s ease;
}
.lightbox-overlay.active img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    background: none; border: none; color: white; font-size: 36px;
    cursor: pointer; width: 50px; height: 50px; display: flex;
    align-items: center; justify-content: center; border-radius: 50%;
    transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-caption {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: white; text-align: center; font-size: 16px; font-weight: 600;
    background: rgba(0,0,0,0.5); padding: 10px 24px; border-radius: 8px;
}
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none; color: white;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
    font-size: 20px; display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 90px; width: auto; mix-blend-mode: screen; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-socials a:hover { background: var(--accent); color: var(--white); }
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; }
.footer-col ul li i { color: var(--accent); margin-right: 6px; width: 16px; }
.footer-col a:hover { color: var(--accent); }
.hours-list li { display: flex; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-bottom { margin-top: 40px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; }

/* ===== FLOATING WHATSAPP BTN ===== */
.floating-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; z-index: 999; transition: var(--transition);
}
.floating-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.4); animation: pulse-wa 2s infinite; }
.floating-whatsapp:hover { transform: scale(1.1); background: #1ebe57; }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-inner { gap: 40px; }
    .hero h1 { font-size: 40px; }
    .realisations-grid { grid-template-columns: repeat(2, 1fr); }
    .realisation-large { grid-column: span 1; }
    .estimation-cta-big { grid-template-columns: 1fr; }
    .estimation-cta-big-visual { display: none; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow); gap: 0; }
    .nav.active { display: flex; }
    .nav-link { padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
    .mobile-toggle { display: flex; }
    .header-cta { display: none; }

    .hero { height: 500px; }
    .hero h1 { font-size: 32px; }
    .hero-text { max-width: 100%; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { justify-content: center; }

    .stats-bar-inner { flex-direction: column; }
    .stat-images { width: 100%; }
    .stat-card { min-width: auto; width: 100%; }

    .about-inner { grid-template-columns: 1fr; text-align: center; }
    .about-img-secondary { display: none; }
    .about-content { display: flex; flex-direction: column; align-items: center; }
    .about-content .btn { align-self: center; width: 100%; justify-content: center; }
    .about-feature { text-align: left; }
    .about-text { text-align: left; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { text-align: center; }
    .service-icon { margin: 0 auto 20px; }
    .service-link { justify-content: center; }

    .realisations-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-image { display: none; }
    .cta-content { display: flex; flex-direction: column; align-items: center; }
    .cta-content .btn { width: 100%; justify-content: center; }

    .zone-content { grid-template-columns: 1fr; }
    .zone-cities { grid-template-columns: 1fr 1fr; }

    .contact-inner { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .estimation-cta-big { padding: 32px 24px; text-align: center; }
    .estimation-cta-big-icon { margin: 0 auto 20px; }
    .estimation-cta-big .btn { margin: 0 auto; width: 100%; justify-content: center; }

    .contact-info-card { flex-direction: column; align-items: center; text-align: center; }
    .contact-info-card > div { text-align: center; }

    .testimonial-card-v2 { min-height: auto; padding: 28px 20px; }

    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-col ul { display: flex; flex-direction: column; align-items: center; }
    .footer-logo { display: flex; justify-content: center; }
    .footer-logo img { margin: 0 auto; }
    .hours-list li { justify-content: center; }
    .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .section-title { font-size: 24px; }
    .zone-cities { grid-template-columns: 1fr; }
    .stat-images { flex-direction: column; }
    .stat-images img { min-height: 160px; }
    .testimonial-card-v2 { padding: 28px 20px; }
    .testimonial-card-v2 .testimonial-text { font-size: 15px; }
}

/* ===== SLOGAN ABOUT ===== */
.about-slogan {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-dark);
    border-left: 4px solid var(--accent);
    padding-left: 16px;
    margin-bottom: 20px !important;
    line-height: 1.5;
}

/* ===== AVANT / APRÈS SLIDER ===== */
.avant-apres {
    padding: 80px 0;
    background: var(--gray-100);
}

.avant-apres .section-subtitle {
    color: var(--gray-600);
    font-size: 16px;
    margin-top: 8px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.ba-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ba-label-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: ew-resize;
    user-select: none;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: #000;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.ba-img-before {
    z-index: 1;
    /* clip-path set by JS */
}

.ba-img-after {
    z-index: 0;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.ba-line {
    flex: 1;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.ba-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.35);
    flex-shrink: 0;
}

.ba-tag {
    position: absolute;
    top: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 4;
    pointer-events: none;
}

.ba-tag-before {
    left: 14px;
    background: rgba(0,0,0,0.55);
    color: #fff;
}

.ba-tag-after {
    right: 14px;
    background: var(--accent);
    color: #fff;
}

@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
