/* ============================================
   RN3 ÉPAVE - STYLE.CSS
   Design Premium BBR & Sécurité
   ============================================ */

/* Google Fonts Import - Typographies Premium */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   ANIMATIONS GLOBALES PREMIUM
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(237, 41, 57, 0.3); }
    50% { box-shadow: 0 0 40px rgba(237, 41, 57, 0.6); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(237, 41, 57, 0.5); }
    50% { text-shadow: 0 0 20px rgba(237, 41, 57, 0.8), 0 0 30px rgba(237, 41, 57, 0.6); }
}

/* ============================================
   VARIABLES CSS - DESIGN SYSTEM PREMIUM
   ============================================ */
:root {
    /* Couleurs BBR Premium */
    --bleu-profond: #001d3d;
    --bleu-institutionnel: #002654;
    --bleu-clair: #003566;
    --blanc: #FFFFFF;
    --blanc-casse: #fafbfc;
    --rouge-urgence: #ED2939;
    --rouge-sombre: #c41f2d;
    --rouge-clair: #ff4d5a;
    
    /* Couleurs neutres */
    --gris-900: #1a1a2e;
    --gris-800: #2d2d44;
    --gris-700: #4a4a68;
    --gris-600: #6b6b8a;
    --gris-500: #8e8ea8;
    --gris-400: #b4b4c7;
    --gris-300: #d4d4e3;
    --gris-200: #e8e8f0;
    --gris-100: #f4f5f7;
    --gris-50: #f9fafb;
    
    /* Accents */
    --or-accent: #ffd700;
    --vert-succes: #10b981;
    --bleu-info: #3b82f6;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #001d3d 0%, #002654 50%, #003566 100%);
    --gradient-rouge: linear-gradient(135deg, #ED2939 0%, #c41f2d 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Ombres premium */
    --shadow-xs: 0 1px 2px rgba(0, 29, 61, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 29, 61, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 29, 61, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 29, 61, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 29, 61, 0.2);
    --shadow-2xl: 0 24px 64px rgba(0, 29, 61, 0.24);
    --shadow-rouge: 0 8px 32px rgba(237, 41, 57, 0.35);
    --shadow-inner: inset 0 2px 4px rgba(0, 29, 61, 0.06);
    
    /* Bordures */
    --border-light: 1px solid rgba(0, 29, 61, 0.08);
    --border-medium: 1px solid rgba(0, 29, 61, 0.12);
    
    /* Rayons */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   GESTION INTELLIGENTE DES IMAGES MANQUANTES
   ============================================ */
img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gris-200) 0%, var(--gris-100) 100%);
    color: var(--gris-600);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    min-height: 250px;
    border: none;
    border-radius: var(--radius-md);
    position: relative;
}

img::after {
    content: "📷 " attr(alt);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gris-100) 0%, var(--gris-50) 100%);
    z-index: 1;
    padding: 20px;
    line-height: 1.5;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gris-800);
    line-height: 1.7;
    background-color: var(--blanc);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--bleu-profond);
    letter-spacing: -0.02em;
}

p {
    color: var(--gris-700);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Selection */
::selection {
    background: var(--rouge-urgence);
    color: var(--blanc);
}

/* ============================================
   HEADER STICKY PREMIUM
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: var(--border-light);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    height: 80px;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Premium */
.logo {
    display: flex;
    align-items: center;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 55px;
    width: auto;
    min-height: auto;
    border: none;
    background: transparent;
    border-radius: 0;
}

.logo-img::after {
    display: none;
}

/* Navigation Premium */
.nav {
    display: flex;
    align-items: center;
    width: 400px;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
}

.nav-menu li {
    display: block;
}

.nav-menu a {
    display: block;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gris-700);
    border-radius: var(--radius-full);
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--bleu-profond);
    background: var(--gris-100);
}

.nav-menu a.active {
    color: var(--blanc);
    background: linear-gradient(135deg, var(--bleu-profond) 0%, var(--bleu-clair) 100%);
}

/* Bouton Appel Header Premium */
.btn-appel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-rouge);
    color: var(--blanc);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-rouge);
    text-decoration: none;
    white-space: nowrap;
}

.btn-appel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-appel:hover::before {
    left: 100%;
}

.btn-appel:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(237, 41, 57, 0.4);
}

/* Menu Burger Mobile */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    background: var(--gris-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.burger:hover {
    background: var(--gris-200);
}

.burger span {
    width: 24px;
    height: 2.5px;
    background: var(--bleu-profond);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.burger.active {
    background: var(--rouge-urgence);
}

.burger.active span {
    background: var(--blanc);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION PREMIUM
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 24px 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Motif de fond */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(237, 41, 57, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    animation: zoomIn 1.5s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    min-height: 100%;
    border: none;
    border-radius: 0;
}

/* Overlay bleu transparent léger pour lisibilité */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,29,61,0.65) 0%, rgba(0,38,84,0.55) 50%, rgba(0,53,102,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

/* Animations séquentielles pour le hero */
.hero-badge {
    animation: slideInDown 0.8s ease-out 0.2s both, float 4s ease-in-out 1s infinite;
}

.hero h1 {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-pression {
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.hero .btn-cta {
    animation: slideInUp 0.8s ease-out 1s both;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge au-dessus du titre */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blanc);
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease 0.1s both, float 4s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge span {
    width: 10px;
    height: 10px;
    background: var(--vert-succes);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    box-shadow: 0 0 10px var(--vert-succes), 0 0 20px var(--vert-succes);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: var(--blanc);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--rouge-clair) 0%, var(--rouge-urgence) 50%, #ff6b6b 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite, textGlow 2s ease-in-out infinite;
    display: block;
    margin-top: 8px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-pression {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-pression strong {
    color: var(--blanc);
    display: block;
    margin-top: 8px;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.hero-address {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-address span {
    color: var(--rouge-clair);
}

/* Icône téléphone blanche */
.icon-phone {
    color: var(--blanc);
    font-style: normal;
    font-size: 1.2em;
}

/* Bouton CTA Premium */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--rouge-urgence) 0%, var(--rouge-sombre) 50%, var(--rouge-urgence) 100%);
    background-size: 200% 200%;
    color: var(--blanc);
    padding: 20px 48px;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(237, 41, 57, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s both, glow 2s ease-in-out infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-cta::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--rouge-clair), var(--rouge-urgence), var(--rouge-sombre));
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    filter: blur(15px);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover::after {
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(237, 41, 57, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    background-position: 100% 50%;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   BANDEAU CONFIANCE PREMIUM
   ============================================ */
.bandeau-confiance {
    background: var(--blanc);
    padding: 0;
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.confiance-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.confiance-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    border-right: var(--border-light);
}

.confiance-item:last-child {
    border-right: none;
}

.confiance-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-rouge);
    transform: scaleX(0);
    transition: var(--transition);
}

.confiance-item:hover::before {
    transform: scaleX(1);
}

.confiance-item:hover {
    background: var(--gris-50);
}

.confiance-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--bleu-profond) 0%, var(--bleu-clair) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.confiance-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: var(--transition);
}

.confiance-item:hover .confiance-icon::before {
    animation: shimmer 1s ease;
}

.confiance-item:hover .confiance-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 38, 84, 0.3);
}

.confiance-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--bleu-profond);
}

.confiance-text p {
    color: var(--gris-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   SECTIONS GÉNÉRALES PREMIUM
   ============================================ */
.section {
    padding: 100px 24px;
    position: relative;
}

.section-gris {
    background: var(--gris-50);
}

.section-bleu {
    background: var(--gradient-hero);
    position: relative;
}

.section-bleu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-profond), var(--rouge-urgence), var(--rouge-clair));
    background-size: 200% 200%;
    border-radius: var(--radius-full);
    animation: gradientMove 3s ease infinite;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--rouge-urgence);
    border-radius: var(--radius-full);
    filter: blur(8px);
    opacity: 0.5;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gris-600);
    max-width: 600px;
    margin: 24px auto 0;
}

/* ============================================
   SECTION MISSION
   ============================================ */
.mission-section {
    background: var(--blanc);
    padding: 100px 24px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-rouge);
    border-radius: var(--radius-full);
}

.mission-headline {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--bleu-profond);
    margin-bottom: 20px;
    margin-top: 30px;
    line-height: 1.4;
}

.mission-headline strong {
    color: var(--rouge-urgence);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gris-700);
    margin-bottom: 16px;
}

.mission-text strong {
    color: var(--bleu-profond);
}

.mission-content .btn-cta {
    align-self: flex-start;
    margin-top: 30px;
}

.mission-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    height: 100%;
    min-height: 450px;
    animation: float 4s ease-in-out infinite;
}

.mission-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-rouge);
    border-radius: calc(var(--radius-2xl) + 4px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.mission-image:hover::before {
    opacity: 1;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    border-radius: 0;
    transition: var(--transition);
}

.mission-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mission-image {
        min-height: 350px;
    }
    
    .mission-image img {
        height: 350px;
        min-height: 350px;
    }
    
    .mission-content .btn-cta {
        margin-top: 30px;
        padding-top: 0;
        align-self: center;
    }

    .mission-content {
        text-align: center;
        align-items: center;
    }
}

/* ============================================
   CARTES SERVICES PREMIUM
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--blanc);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: var(--border-light);
    animation: float 4s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) {
    animation-delay: 1s;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--bleu-clair) 0%, var(--rouge-urgence) 50%, var(--rouge-clair) 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rouge);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
    animation: gradientMove 2s ease infinite;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl), 0 20px 60px rgba(0, 38, 84, 0.15);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,29,61,0.1) 100%);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    min-height: 220px;
    border-radius: 0;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 32px;
}

.service-card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bleu-profond);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-content p {
    color: var(--gris-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   ZONE GÉOGRAPHIQUE PREMIUM
   ============================================ */
.zone-geo {
    background: var(--gradient-hero);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.zone-geo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 41, 57, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.zone-geo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zone-geo-text h2 {
    color: var(--blanc);
    font-size: 2.4rem;
    margin-bottom: 24px;
}

.zone-geo-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.zone-geo-list {
    list-style: none;
}

.zone-geo-list li {
    color: var(--blanc);
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.zone-geo-list li span {
    width: 28px;
    height: 28px;
    background: var(--gradient-rouge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.zone-geo-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.zone-geo-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    z-index: 1;
}

.zone-geo-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    min-height: 450px;
    border-radius: 0;
}

/* ============================================
   PAGE HEADER PREMIUM (PAGES INTÉRIEURES)
   ============================================ */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 100px;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(237, 41, 57, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    min-height: 100%;
    border: none;
    border-radius: 0;
    filter: grayscale(50%);
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,29,61,0.15) 0%, rgba(0,38,84,0.4) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--blanc);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease both;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ============================================
   SERVICES DÉTAILLÉS PREMIUM
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-img {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    height: 100%;
    min-height: 350px;
    animation: float 4s ease-in-out infinite;
}

.service-detail-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--gris-200);
    border-radius: var(--radius-2xl);
    z-index: 1;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    border-radius: 0;
    transition: var(--transition-slow);
}

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

.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--bleu-profond);
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gris-700);
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-top: 24px;
}

.service-detail-content ul li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--gris-700);
    border-bottom: var(--border-light);
}

.service-detail-content ul li:last-child {
    border-bottom: none;
}

.service-detail-content ul li span {
    width: 24px;
    height: 24px;
    background: var(--gradient-rouge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--blanc);
    flex-shrink: 0;
}

/* ============================================
   PAGE À PROPOS PREMIUM
   ============================================ */
.apropos-section {
    padding: 100px 24px;
}

.apropos-section:nth-child(even) {
    background: var(--gris-50);
}

.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.apropos-grid:nth-child(even) {
    direction: rtl;
}

.apropos-grid:nth-child(even) > * {
    direction: ltr;
}

.apropos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apropos-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.apropos-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gris-700);
    margin-bottom: 20px;
}

.apropos-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    height: 520px;
    animation: float 4s ease-in-out infinite;
}

.apropos-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-rouge);
    border-radius: calc(var(--radius-2xl) + 4px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.apropos-image:hover::before {
    opacity: 1;
}

.apropos-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition);
}

.apropos-image:hover img {
    transform: scale(1.02);
}


/* ============================================
   PAGE CONTACT PREMIUM
   ============================================ */
.contact-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--gris-50) 0%, var(--blanc) 100%);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

/* Colonne Infos Premium */
.contact-info {
    background: var(--gradient-hero);
    padding: 48px;
    border-radius: var(--radius-2xl);
    color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 41, 57, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h2 {
    color: var(--blanc);
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-rouge);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: var(--shadow-rouge);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-item-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-item:hover .contact-item-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-item-text h3 {
    color: var(--blanc);
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item-text a {
    color: var(--blanc);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    display: block;
    margin-top: 4px;
}

.contact-item-text a:hover {
    color: var(--rouge-clair);
}

.contact-visuel {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.contact-visuel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 20%;
    min-height: unset;
    border-radius: 0;
    border: none;
    background: var(--gris-200);
    display: block;
}

/* Colonne Formulaire Premium */
.contact-form-container {
    background: var(--blanc);
    padding: 48px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: var(--border-light);
}

.contact-form-container h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-container > p {
    color: var(--gris-600);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--bleu-profond);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gris-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--blanc);
    color: var(--gris-800);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gris-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bleu-profond);
    box-shadow: 0 0 0 4px rgba(0, 38, 84, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    padding: 18px;
    background: var(--gris-50);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.form-checkbox:hover {
    border-color: var(--gris-300);
}

.form-checkbox input {
    width: 22px;
    height: 22px;
    accent-color: var(--rouge-urgence);
    cursor: pointer;
}

.form-checkbox span {
    font-size: 0.95rem;
    color: var(--gris-700);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--rouge-urgence) 0%, var(--rouge-sombre) 50%, var(--rouge-urgence) 100%);
    background-size: 200% 200%;
    color: var(--blanc);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-rouge), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-submit::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-rouge);
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover::after {
    opacity: 1;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(237, 41, 57, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    background-position: 100% 50%;
}

.btn-submit:active {
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    margin-top: 64px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--blanc);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   PAGE MENTIONS LÉGALES
   ============================================ */
.page-header-small {
    min-height: 300px;
    background: var(--gradient-hero);
}

.page-header-small .page-header-content {
    padding-top: 100px;
}

.mentions-section {
    padding: 80px 24px;
    background: var(--blanc);
}

.mentions-container {
    max-width: 900px;
    margin: 0 auto;
}

.mentions-intro {
    background: linear-gradient(135deg, var(--bleu-profond) 0%, var(--bleu-clair) 100%);
    color: var(--blanc);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
}

.mentions-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mentions-intro strong {
    color: var(--blanc);
}

.mentions-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gris-200);
}

.mentions-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mentions-block h2 {
    font-size: 1.5rem;
    color: var(--bleu-profond);
    margin-bottom: 20px;
    font-weight: 700;
}

.mentions-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gris-700);
    margin-bottom: 16px;
}

.mentions-block a {
    color: var(--bleu-profond);
    text-decoration: underline;
}

.mentions-block a:hover {
    color: var(--rouge-urgence);
}

.mentions-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mentions-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gris-100);
    color: var(--gris-700);
}

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

.mentions-list-activities li {
    padding-left: 24px;
    position: relative;
}

.mentions-list-activities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vert-succes);
    font-weight: bold;
}

.mentions-address {
    background: var(--gris-50);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.mentions-hebergeur {
    background: var(--gris-50);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 16px;
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--bleu-profond) 0%, #000d1a 100%);
    color: var(--blanc);
    padding: 80px 24px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rouge-urgence), var(--rouge-clair), var(--rouge-urgence));
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 41, 57, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: var(--blanc);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-rouge);
    border-radius: var(--radius-full);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--rouge-clair);
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-security {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-security span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
}

.footer-legal a:hover {
    color: var(--blanc);
    text-decoration: underline;
}

/* ============================================
   BANDEAU COOKIES
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bleu-profond);
    color: var(--blanc);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--gradient-rouge);
    color: var(--blanc);
    box-shadow: var(--shadow-rouge);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 41, 57, 0.5);
}

.cookie-refuse {
    background: transparent;
    color: var(--blanc);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-refuse:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BOUTON WHATSAPP FLOTTANT PREMIUM
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite, float 3s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulse-ring 1.5s infinite;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.2);
    animation: pulse-ring 1.5s infinite 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 16px 50px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.animated,
.slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-up.animated {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .confiance-grid {
        grid-template-columns: 1fr;
        border-radius: var(--radius-xl);
    }
    
    .confiance-item {
        border-right: none;
        border-bottom: var(--border-light);
    }
    
    .confiance-item:last-child {
        border-bottom: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .zone-geo-content,
    .service-detail,
    .apropos-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-detail:nth-child(even),
    .apropos-grid:nth-child(even) {
        direction: ltr;
    }

    .zone-geo-image img,
    .apropos-image img,
    .service-detail-img img {
        height: 320px;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--blanc);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
        border-bottom-left-radius: var(--radius-xl);
        border-bottom-right-radius: var(--radius-xl);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu a {
        padding: 16px;
        text-align: center;
        border-radius: var(--radius-md);
    }

    .btn-appel {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Logo mobile - ne pas couper */
    .logo {
        flex-shrink: 0;
    }

    .logo-img {
        height: 50px;
        width: auto;
        min-height: 50px !important;
        max-width: none;
        object-fit: contain;
    }

    /* Bouton centré en mobile */
    .mission-content {
        text-align: center;
        align-items: center;
    }

    .mission-content .btn-cta {
        align-self: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .mission-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        min-height: 90vh;
        padding: 120px 20px 80px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Images services et apropos - ne pas couper */
    .service-detail-img,
    .apropos-image {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .service-detail-img img,
    .apropos-image img {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Zone géo carte */
    .zone-geo-image,
    .zone-geo-image img {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    /* Retirer le min-height global des images en mobile */
    img {
        min-height: auto !important;
    }

    .bandeau-confiance {
        margin-top: -40px;
        padding: 0 16px;
    }

    .confiance-grid {
        border-radius: var(--radius-lg);
    }

    .confiance-item {
        padding: 24px;
    }

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

    .contact-info,
    .contact-form-container {
        padding: 32px;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 64px 16px;
    }

    .header-container {
        height: 72px;
        padding: 0 16px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero-address {
        flex-direction: column;
        gap: 8px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .footer-security {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .confiance-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* ============================================
   SECTION VALEURS - PAGE ENTREPRISE
   ============================================ */
.valeurs-section {
    background: var(--gris-50) !important;
}

.valeurs-section::before {
    display: none;
}

.valeurs-titre {
    color: var(--bleu-profond) !important;
}

.valeurs-item {
    background: var(--blanc) !important;
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.valeurs-item:hover {
    background: var(--blanc) !important;
    box-shadow: var(--shadow-md);
}

.valeurs-h3 {
    color: var(--bleu-profond) !important;
}

.valeurs-p {
    color: var(--gris-600) !important;
}

/* ============================================
   DARK MODE SUPPORT (OPTIONNEL)
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* Peut être activé si souhaité */
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .whatsapp-float,
    .scroll-indicator {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px;
    }
    
    .section {
        padding: 40px 20px;
    }
}
