/* ==========================================================================
   Template Pisciniste v2
   Design System complet : variables, typo, layout, composants, responsive
   Palette bleu / sable — Playfair Display + Lato
   ========================================================================== */

/* ---------- 1. Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@400;500;600;700;800&display=swap');

/* ---------- 2. CSS Variables ---------- */
:root {
    /* Couleurs principales */
    --primary: #1A6FA0;
    --primary-dark: #145980;
    --primary-light: #3B9DD1;
    --accent: #D4A574;
    --accent-dark: #B8895A;

    /* Fonds */
    --bg-white: #FFFFFF;
    --bg-light: #F7F9FB;
    --bg-dark: #1C2E3F;

    /* Texte */
    --text-dark: #1C2E3F;
    --text-muted: #5A6E7F;
    --text-white: #FFFFFF;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --card-radius: 12px;
    --btn-radius: 8px;
    --transition: all 0.3s ease;

    /* Typographie */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- 3. CSS Reset / Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--accent);
}

.text-primary {
    color: var(--primary);
}

/* ---------- 5. Layout ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: flex;
    gap: 32px;
    align-items: start;
}

.grid-2 > * {
    flex: 1;
}

.grid-3 {
    display: flex;
    gap: 24px;
}

.grid-3 > * {
    flex: 1;
}

.grid-4 {
    display: flex;
    gap: 24px;
}

.grid-4 > * {
    flex: 1;
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ---------- 6. Boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-dark);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---------- 7. Top Bar ---------- */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--accent);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

.top-bar-left a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.top-bar-left svg {
    width: 16px;
    height: 16px;
}

.top-bar .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ---------- 8. Header / Navigation ---------- */
.site-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.site-logo:hover {
    color: var(--primary-dark);
}

.site-navigation ul {
    display: flex;
    gap: 8px;
}

.site-navigation a {
    padding: 8px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
}

.site-navigation a:hover,
.site-navigation a.active {
    color: var(--primary);
    background: rgba(26, 111, 160, 0.06);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: var(--transition);
}

/* ---------- 9. Hero Section (Split Layout) ---------- */
.section-hero {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    overflow: hidden;
}

.section-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
    text-align: left;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

.section-hero h1 {
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 0 20px;
    line-height: 1.2;
}

.section-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 0 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- 10. Cards ---------- */
.card {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    padding: 32px 28px;
    border: 1px solid #E8ECEF;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 46, 63, 0.08);
    border-color: rgba(26, 111, 160, 0.15);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 111, 160, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover {
    gap: 8px;
}

/* ---------- 11. Section Services ---------- */
.section-services {
    padding: var(--section-padding);
}

/* ---------- 12. Section Confiance / Trust ---------- */
.section-trust {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    padding: 24px 32px;
    border-radius: var(--card-radius);
    border: 1px solid #E8ECEF;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-stars {
    color: #D4A574;
    font-size: 1.3rem;
    font-weight: 700;
}

.trust-badge-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-badge-text strong {
    color: var(--text-dark);
}

.trust-item {
    text-align: center;
    padding: 24px;
}

.trust-item-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 111, 160, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.trust-item-icon svg {
    width: 28px;
    height: 28px;
}

.trust-item h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.trust-item p {
    font-size: 0.9rem;
}

/* ---------- 12b-bis. Section Avis Clients ---------- */
.section-avis {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.avis-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.avis-stars {
    color: #FBBC05;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.avis-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}

.avis-author {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

.avis-google-link {
    text-align: center;
    margin-top: 24px;
}

.avis-google-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.avis-google-link a:hover {
    text-decoration: underline;
}

.avis-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    border: 1px solid #E8ECEF;
    border-radius: 12px;
    padding: 12px 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ---------- 12b. Section Horaires ---------- */
.section-horaires {
    padding: var(--section-padding);
}

.horaires-card {
    max-width: 550px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--card-radius);
    border: 1px solid #E8ECEF;
    overflow: hidden;
}

.horaires-grid {
    padding: 8px 0;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    border-bottom: 1px solid #F0F3F5;
}

.horaire-row:last-child {
    border-bottom: none;
}

.horaire-jour {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.horaire-heures {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.horaire-ferme .horaire-heures {
    color: var(--text-muted);
    font-weight: 400;
}

.horaires-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(26, 111, 160, 0.04);
    border-top: 1px solid #E8ECEF;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.horaires-note a {
    color: var(--primary);
}

/* ---------- 12c. Encarts colores (SEO) ---------- */
.encart {
    padding: 20px 24px;
    border-radius: var(--card-radius);
    margin: 24px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.encart p {
    margin-bottom: 0;
    color: inherit;
}

.encart strong {
    font-size: 1rem;
}

.encart-info {
    background: rgba(26, 111, 160, 0.06);
    border-top: 4px solid var(--primary);
    color: var(--text-dark);
}

.encart-conseil {
    background: rgba(52, 168, 83, 0.06);
    border-top: 4px solid #34A853;
    color: var(--text-dark);
}

.encart-important {
    background: rgba(212, 165, 116, 0.08);
    border-top: 4px solid var(--accent);
    color: var(--text-dark);
}

.encart-bref {
    background: var(--bg-dark);
    color: var(--text-white);
    border-top: 4px solid var(--primary-light);
    padding: 24px 28px;
}

.encart-bref p {
    color: rgba(255, 255, 255, 0.85);
}

.encart-bref strong {
    color: var(--primary-light);
}

/* ---------- 12d. Section Avant / Apres ---------- */
.section-avant-apres {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.ba-grid {
    display: flex;
    gap: 32px;
}

.ba-grid > * {
    flex: 1;
}

.ba-item {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-img-after {
    z-index: 1;
}

.ba-img-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    width: 4px;
    background: var(--bg-white);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-handle::before,
.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 3px solid var(--bg-white);
    border-radius: 2px;
}

.ba-handle::before {
    right: 8px;
    transform: translateY(-50%) rotate(45deg);
    border-right: none;
    border-top: none;
}

.ba-handle::after {
    left: 8px;
    transform: translateY(-50%) rotate(45deg);
    border-left: none;
    border-bottom: none;
}

.ba-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ba-circle svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.ba-label-avant,
.ba-label-apres {
    position: absolute;
    top: 16px;
    z-index: 4;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ba-label-avant {
    left: 16px;
    background: rgba(220, 53, 69, 0.85);
    color: #fff;
}

.ba-label-apres {
    right: 16px;
    background: rgba(52, 168, 83, 0.85);
    color: #fff;
}

.ba-caption {
    padding: 20px 24px;
}

.ba-caption h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.ba-caption p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ba-grid {
        flex-direction: column;
    }
}

/* ---------- 13. Section Zones d'intervention ---------- */
.section-zones {
    padding: var(--section-padding);
}

.section-zones .grid-2 {
    align-items: stretch;
}

.zones-map {
    border-radius: var(--card-radius);
    overflow: hidden;
    min-height: 350px;
    border: 1px solid #E8ECEF;
}

.zones-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: start;
}

.zone-tag {
    display: inline-block;
    background: rgba(26, 111, 160, 0.06);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(26, 111, 160, 0.12);
    transition: var(--transition);
}

.zone-tag:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* ---------- 14. Section CTA ---------- */
.section-cta {
    background: var(--bg-dark);
    border-top: 4px solid var(--accent);
    padding: var(--section-padding);
    text-align: center;
}

.section-cta h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- 15. Section Galerie ---------- */
.section-galerie {
    padding: var(--section-padding);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.galerie-item {
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

.galerie-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 111, 160, 0);
    transition: var(--transition);
}

.galerie-item:hover::after {
    background: rgba(26, 111, 160, 0.15);
}

/* ---------- 16. Page Header (pages interieures) ---------- */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark), #145980);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--text-white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* ---------- 17. Services detailles ---------- */
.service-block {
    padding: 48px 0;
    border-bottom: 1px solid #E8ECEF;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block .card-icon {
    width: 64px;
    height: 64px;
}

.service-block h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-block p {
    margin-bottom: 16px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}

.service-list li {
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
}

/* ---------- 18. Formulaire Contact ---------- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 111, 160, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-item a {
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--card-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DFE6E9;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 111, 160, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ---------- 19. Footer ---------- */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-top {
    display: flex;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .site-logo {
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- 20. Section Alt (fond creme) ---------- */
.section-alt {
    background: var(--bg-light);
}

/* ---------- 21. Responsive ---------- */

/* Tablette */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }

    .grid-3 {
        flex-wrap: wrap;
    }

    .grid-3 > * {
        flex: 1 1 calc(50% - 12px);
    }

    .grid-4 {
        flex-wrap: wrap;
    }

    .grid-4 > * {
        flex: 1 1 calc(50% - 12px);
    }

    .footer-top {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    /* Navigation mobile */
    .site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 16px;
        z-index: 999;
    }

    .site-navigation.active {
        display: block;
    }

    .site-navigation ul {
        flex-direction: column;
        gap: 4px;
    }

    .site-navigation a {
        display: block;
        padding: 12px 16px;
    }

    .menu-toggle {
        display: block;
    }

    .header-cta .btn {
        display: none;
    }

    /* Grids en 1 colonne */
    .grid-2,
    .grid-3,
    .grid-4 {
        flex-direction: column;
    }

    .grid-3 > * {
        flex: 1 1 100%;
    }

    /* Hero split layout mobile */
    .section-hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .hero-image img {
        height: 300px;
        border-radius: 16px;
    }

    /* Hero */
    .section-hero {
        min-height: auto;
    }

    /* Top bar */
    .top-bar-left span:not(:first-child) {
        display: none;
    }

    /* Galerie */
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services detailles */
    .service-list {
        grid-template-columns: 1fr;
    }

    /* Contact form */
    .contact-form {
        padding: 24px;
    }

    /* Zones */
    .zones-map {
        min-height: 300px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .top-bar {
        display: none;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
    }
}
