/* ============================================================
   RESET & VARIABLES GLOBALES
   ============================================================ */

/* Supprime les marges et paddings par défaut sur tous les éléments */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables CSS réutilisables dans tout le fichier */
:root {
    /* Couleurs */
    --navy:     #1a2540;
    --navy-mid: #223060;
    --blue:     #1e3a70;
    --blue-mid: #2a4a8a;
    --accent:   #c0694a;
    --accent2:  #d4825e;
    --steel:    #5a6e82;
    --light:    #f7f3f0;
    --white:    #ffffff;
    --gray:     #8a9ab0;
    --text:     #1a2030;
    --muted:    #6a7a8e;

    /* Polices */
    --ff-display: 'Bebas Neue', sans-serif;
    --ff-cond:    'Barlow Condensed', sans-serif;
    --ff-body:    'Barlow', sans-serif;

    /* Effets */
    --radius:     4px;
    --shadow:     0 4px 24px rgba(26, 37, 64, 0.15);
    --shadow-lg:  0 12px 48px rgba(26, 37, 64, 0.22);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   STYLES DE BASE
   ============================================================ */

html {
    scroll-behavior: smooth; /* Défilement doux lors des clics sur les ancres */
}

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden; /* Empêche le défilement horizontal */
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
   MISE EN PAGE GÉNÉRALE
   ============================================================ */

/* Conteneur centré avec largeur maximale */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

/* ============================================================
   TYPOGRAPHIE DES SECTIONS
   ============================================================ */

.section-label {
    font-family: var(--ff-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(36px, 5vw, 56px); /* Taille fluide entre 36px et 56px */
    letter-spacing: 1px;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   BOUTONS
   ============================================================ */

/* Style de base commun à tous les boutons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--ff-cond);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

/* Bouton principal (orange) */
.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 105, 74, 0.38);
}

/* Bouton avec contour transparent */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
    border-color: var(--accent2);
    color: var(--accent2);
}

/* Bouton sombre (bleu marine) */
.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
}

/* ============================================================
   EN-TÊTE (HEADER) ET NAVIGATION
   ============================================================ */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s;
}

/* Header avec fond sombre au défilement */
#header.scrolled {
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.logo-text {
    line-height: 1.2;
}

.logo-name {
    font-family: var(--ff-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--white);
}

.logo-sub {
    font-family: var(--ff-cond);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent2);
}

/* Liens de navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--ff-cond);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
    position: relative;
}

/* Soulignement animé au survol */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent2);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-links a:hover {
    color: var(--accent2);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Zone CTA (appel à l'action) dans la nav */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    font-family: var(--ff-cond);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.nav-phone:hover {
    color: var(--accent2);
}

.nav-phone .icon {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* Bouton hamburger (menu mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Menu mobile plein écran */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--ff-display);
    font-size: 36px;
    color: var(--white);
    letter-spacing: 2px;
}

.mobile-menu a:hover {
    color: var(--accent2);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: 32px;
}


/* ============================================================
   SECTION HERO (BANNIÈRE PRINCIPALE)
   ============================================================ */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Superposition sombre sur l'image de fond */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(26, 37, 64, 0.92) 0%,
        rgba(30, 58, 112, 0.78) 50%,
        rgba(42, 74, 138, 0.55) 100%
    );
}

/* Image de fond avec zoom animé */
.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

/* Motif de lignes diagonales discrètes */
.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.015) 40px,
        rgba(255, 255, 255, 0.015) 41px
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Badge "en ligne" avec point clignotant */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 105, 74, 0.15);
    border: 1px solid rgba(192, 105, 74, 0.4);
    color: #e8a48a;
    padding: 8px 16px;
    font-family: var(--ff-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Grand titre principal */
.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(52px, 8vw, 100px);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title em {
    color: var(--accent2);
    font-style: normal;
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 60px;
}

/* Statistiques affichées dans le hero */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 40px;
    color: var(--accent2);
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--ff-cond);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Indicateur "défiler vers le bas" animé */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--ff-cond);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent2);
    fill: none;
}

/* ============================================================
   BARRE DE CONFIANCE (TRUST BAR)
   ============================================================ */

#trust {
    background: var(--navy);
    padding: 28px 0;
    border-bottom: 2px solid rgba(192, 105, 74, 0.22);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    flex-shrink: 0;
}

.trust-item-text strong {
    display: block;
    font-family: var(--ff-cond);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
}

.trust-item-text span {
    font-size: 12px;
    color: var(--gray);
}

/* ============================================================
   SECTION À PROPOS (INTRO)
   ============================================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Badge flottant sur l'image */
.about-img-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--accent);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.about-img-badge-num {
    font-family: var(--ff-display);
    font-size: 52px;
    line-height: 1;
}

.about-img-badge-text {
    font-family: var(--ff-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content {
    padding-bottom: 32px;
}

.about-list {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
}

.about-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   SECTION SERVICES
   ============================================================ */

#services {
    background: var(--light);
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

/* Carte de service */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(26, 37, 64, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card-body {
    padding: 24px;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(192, 105, 74, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
}

.service-card h3 {
    font-family: var(--ff-cond);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* Étiquette de catégorie sur l'image */
.service-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--navy);
    color: var(--accent2);
    font-family: var(--ff-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

/* Lien "en savoir plus" avec flèche animée */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--ff-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    transition: gap 0.2s, color 0.2s;
}

.service-link:hover {
    color: var(--accent2);
    gap: 10px;
}

.service-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ============================================================
   BANDEAU D'APPEL À L'ACTION (CTA BAND)
   ============================================================ */

#cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

/* Motif de fond */
#cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(255, 255, 255, 0.025) 60px,
        rgba(255, 255, 255, 0.025) 61px
    );
}

.cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band-text h2 {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 52px);
    color: var(--white);
    margin-bottom: 8px;
}

.cta-band-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}

/* ============================================================
   SECTION AVIS CLIENTS
   ============================================================ */

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

/* Score global affiché */
.reviews-score {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light);
    padding: 20px 28px;
    border-radius: var(--radius);
}

.reviews-score-num {
    font-family: var(--ff-display);
    font-size: 52px;
    color: var(--navy);
    line-height: 1;
}

.reviews-score-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Étoiles */
.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 18px;
    height: 18px;
    fill: #c87c5a;
}

.reviews-score-label {
    font-family: var(--ff-cond);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
}

/* Grille des cartes d'avis */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
}

/* Guillemet décoratif en arrière-plan */
.review-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(192, 105, 74, 0.15);
}

.review-stars {
    margin-bottom: 12px;
}

.review-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar avec initiales */
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-cond);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-author-name {
    font-family: var(--ff-cond);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.review-author-loc {
    font-size: 12px;
    color: var(--muted);
}


/* ============================================================
   SECTION ZONES D'INTERVENTION
   ============================================================ */

#zones {
    background: var(--navy);
    color: var(--white);
}

.zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Carte Google Maps intégrée */
.zones-map {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(192, 105, 74, 0.3);
}

.zones-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(190deg); /* Inversion des couleurs pour correspondre au thème sombre */
}

.zones-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--ff-cond);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s, border-color 0.2s;
}

.zone-item:hover {
    background: rgba(192, 105, 74, 0.12);
    border-color: rgba(192, 105, 74, 0.35);
    color: var(--accent2);
}

.zone-item svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
    flex-shrink: 0;
}


/* ============================================================
   SECTION À PROPOS (COMPLÈTE)
   ============================================================ */

.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Grille des certifications */
.certif-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.certif-card {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.certif-card h4 {
    font-family: var(--ff-cond);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.certif-card p {
    font-size: 13px;
    color: var(--muted);
}

/* Liste des valeurs */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 105, 74, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.value-text h4 {
    font-family: var(--ff-cond);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.value-text p {
    font-size: 14px;
    color: var(--muted);
}


/* ============================================================
   SECTION CONTACT
   ============================================================ */

#contact {
    background: var(--light);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Carte d'information de contact */
.contact-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(26, 37, 64, 0.06);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

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

.contact-card-content a,
.contact-card-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
}

.contact-card-content a:hover {
    color: var(--accent);
}

/* Formulaire de contact */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: var(--ff-display);
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 6px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-family: var(--ff-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--steel);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e4ddd8;
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

/* Mise en valeur du champ actif */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 105, 74, 0.12);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    justify-content: center;
    font-size: 16px;
}

/* Mini-carte dans les infos de contact */
.map-wrap {
    height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
    border: 2px solid #e4ddd8;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tableau des horaires */
.horaires {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(26, 37, 64, 0.06);
}

.horaires h4 {
    font-family: var(--ff-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f0ebe6;
    font-size: 14px;
    color: var(--text);
}

.horaire-row:last-child {
    border: none;
}

.horaire-row span:last-child {
    font-weight: 600;
    color: var(--navy);
}

.horaire-row.closed span:last-child {
    color: var(--muted);
}

/* Message de succès après envoi du formulaire */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    width: 60px;
    height: 60px;
    fill: #22c55e;
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: var(--ff-display);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--muted);
}

/* ============================================================
   PIED DE PAGE (FOOTER)
   ============================================================ */

#footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

/* Bouton de réseau social */
.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-btn:hover {
    background: var(--accent);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.footer-col h4 {
    font-family: var(--ff-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent2);
}

/* Barre du bas du footer */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   BOUTONS FLOTTANTS (APPEL ET WHATSAPP)
   ============================================================ */

.float-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.float-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.float-call { background: var(--accent); }  /* Bouton appel téléphonique */
.float-wa   { background: #25D366; }         /* Bouton WhatsApp */

/* Étiquette apparaissant au survol du bouton */
.float-btn-label {
    position: absolute;
    right: 62px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--ff-cond);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.float-btn:hover .float-btn-label {
    opacity: 1;
}



/* ============================================================
   ANIMATIONS D'APPARITION (REVEAL)
   ============================================================ */

/* Apparition depuis le bas */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Apparition depuis la gauche */
.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: none;
}

/* Apparition depuis la droite */
.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* Délais d'animation décalés */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLETTES (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
    .about-grid    { gap: 48px; }
    .contact-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILES (max 768px)
   ============================================================ */

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    /* Navigation */
    .nav-links,
    .nav-cta  { display: none; }
    .hamburger { display: flex; }

    /* Grilles en colonne unique */
    .about-grid,
    .about-full-grid,
    .zones-grid { grid-template-columns: 1fr; }

    .about-img-badge { right: 0; bottom: -20px; }

    .services-grid,
    .reviews-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row    { grid-template-columns: 1fr; }

    .hero-stats { gap: 24px; }

    .cta-band-inner { flex-direction: column; align-items: flex-start; }

    .trust-inner { justify-content: flex-start; }

    .contact-form { padding: 24px; }

    .certif-grid,
    .zones-list  { grid-template-columns: 1fr; }
}


/* ============================================================
   RESPONSIVE — PETITS MOBILES (max 480px)
   ============================================================ */

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn          { width: 100%; justify-content: center; }

    .reviews-header { flex-direction: column; align-items: flex-start; }
}
