/* ===================================
   Groupe HAVEN - Styles CSS
   Design haut de gamme - Bleu Nuit + Or + Blanc
   =================================== */

/* ===================================
   Variables CSS
   =================================== */
:root {
    /* Palette Bleu Nuit + Or + Blanc */
    --primary-blue: #0B1929;        /* Bleu nuit profond */
    --secondary-blue: #1A2F4A;      /* Bleu nuit moyen */
    --accent-blue: #2C4A6B;         /* Bleu nuit accent */
    --light-blue: #3D5A80;          /* Bleu nuit clair */
    --sky-blue: #4E6C8F;            /* Bleu grisé */
    --pale-blue: #E8EDF3;           /* Bleu très pâle */
    
    /* Couleurs neutres */
    --white: #FFFFF0;               /* Ivoire élégant (remplace le blanc pur) */
    --off-white: #F9FAFB;
    --light-gray: #E5E7EB;
    --medium-gray: #9CA3AF;
    --dark-gray: #4B5563;
    --charcoal: #1F2937;
    --black: #111827;
    
    /* Dark Mode - Backgrounds élégants */
    --dark-bg-primary: #0F1419;         /* Très sombre */
    --dark-bg-secondary: #1A1F2E;       /* Sombre moyen */
    --dark-bg-card: #1E2537;            /* Cartes sombres */
    --dark-text-primary: #E8EDF3;       /* Texte clair */
    --dark-text-secondary: #B8C5D6;     /* Texte secondaire */
    
    /* Couleurs d'accentuation - Or élégant */
    --gold: #D4AF37;                /* Or classique */
    --gold-light: #E8C878;          /* Or clair */
    --gold-dark: #B8941F;           /* Or foncé */
    --success: #10B981;
    
    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Ombres - Bleu nuit */
    --shadow-sm: 0 1px 3px rgba(11, 25, 41, 0.08);
    --shadow-md: 0 4px 6px rgba(11, 25, 41, 0.12);
    --shadow-lg: 0 10px 25px rgba(11, 25, 41, 0.18);
    --shadow-xl: 0 20px 40px rgba(11, 25, 41, 0.25);
    
    /* Ombres dorées pour les accents */
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===================================
   Reset & Base
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text-primary);
    background-color: var(--dark-bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text-secondary);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 120px !important;
    width: auto;
    display: block;
    transition: transform var(--transition-normal);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

/* Logo texte épuré noir brillant */
.logo-text-only {
    display: flex;
    align-items: center;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 
        0 1px 2px rgba(212, 175, 55, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text-only:hover .logo-brand {
    letter-spacing: 3px;
    color: var(--gold-light);
    text-shadow: 
        0 2px 4px rgba(212, 175, 55, 0.5),
        0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Ancien styles texte conservés pour compatibilité */
.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--accent-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Effet de soulignement animé doré */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

/* Effet shimmer au survol - DÉSACTIVÉ */
.nav-link::before {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    text-shadow: none;
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.btn-contact {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-link.btn-contact::after {
    display: none;
}

.nav-link.btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-link.btn-contact:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.btn-contact:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Effet de brillance qui traverse le bouton */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    transform: skewX(-20deg);
}

.btn:hover::before {
    left: 150%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    position: relative;
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    border-radius: 50px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 0 80px 0;
    background-image: linear-gradient(135deg, rgba(11, 26, 48, 0.75) 0%, rgba(20, 41, 73, 0.70) 50%, rgba(31, 56, 89, 0.68) 100%), url('../images/hero-elegant-kitchen.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.4));
    animation: heroLogoFloat 3s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Phrase d'accroche principale */
.hero-tagline-signature {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    text-align: left;
    line-height: 1.5;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.6;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* ===================================
   Stats CTA Banner
   =================================== */
.stats-cta-banner {
    background: linear-gradient(135deg, #1A2F4A 0%, #0F1F35 100%);
    padding: 3rem 0;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.stats-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stats-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.stats-cta-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.stats-cta-text {
    flex: 1;
}

.stats-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stats-cta-text p {
    font-size: 1.1rem;
    color: var(--dark-text-secondary);
    margin: 0;
}

.btn-stats {
    background: var(--gold);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-stats:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-stats i {
    transition: transform 0.3s ease;
}

.btn-stats:hover i {
    transform: translateX(5px);
}

/* ===================================
   Enseignes Section
   =================================== */
.enseignes {
    background: var(--dark-bg-secondary);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.enseignes-intro {
    text-align: center;
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.enseignes-legal {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2.5rem;
    font-style: italic;
}

.enseignes-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.enseigne-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all var(--transition-fast);
    padding: 0.5rem 1rem;
    min-width: 140px;
    height: 80px;
}

.enseigne-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.enseigne-logo {
    height: 55px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(15%) brightness(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.enseigne-item:hover .enseigne-logo {
    filter: grayscale(0%) brightness(1.15);
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.3));
}

.enseigne-item.enseigne-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--dark-text-secondary);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--dark-bg-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Effet de lueur dorée au survol */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.service-title,
.service-description,
.service-features {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.service-features {
    padding-bottom: 2.5rem;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3), 
                0 10px 30px rgba(11, 25, 41, 0.4);
    border-color: var(--gold);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border: 2px solid var(--gold);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    }
}

.service-card.featured:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5),
                0 10px 30px rgba(11, 25, 41, 0.4);
    animation: none;
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    z-index: 10;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    color: var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 2.5rem 1.5rem 2.5rem;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 74, 107, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-text-secondary);
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--dark-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card.featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.service-card.featured .service-features i {
    color: var(--gold);
}

/* ===================================
   Expertise Section
   =================================== */
.expertise {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg-secondary);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.expertise-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.expertise-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-blue);
    color: var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.highlight-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.highlight-content p {
    font-size: 1rem;
    color: var(--dark-text-secondary);
}

.expertise-image-container {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.expertise-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expertise-image-container:hover .expertise-image {
    transform: scale(1.05);
}

.expertise-card {
    background: var(--dark-bg-card);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.expertise-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--white);
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all var(--transition-fast);
    color: var(--dark-text-secondary);
}

.expertise-item:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateX(10px);
}

/* Gallery d'images Expertise */
.expertise-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.gallery-main {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-image {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main img {
    height: 350px;
}

.gallery-grid .gallery-image img {
    height: 200px;
}

.gallery-image:hover img {
    transform: scale(1.05);
}


.expertise-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.expertise-item:hover i {
    color: var(--white);
}

.expertise-item span {
    font-weight: 500;
}

/* ===================================
   Pourquoi FSJ Section
   =================================== */
.pourquoi {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg-primary);
}

.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.pourquoi-card {
    background: var(--dark-bg-card);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Effet de lueur progressive */
.pourquoi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.05),
        transparent
    );
    transition: left 0.8s ease;
}

.pourquoi-card:hover::before {
    left: 100%;
}

.pourquoi-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2),
                0 8px 20px rgba(11, 25, 41, 0.3);
    border-color: var(--gold);
}

.pourquoi-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    grid-column: span 2;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    animation: featuredGlow 4s ease-in-out infinite;
}

@keyframes featuredGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 12px 45px rgba(212, 175, 55, 0.5);
    }
}

.pourquoi-card.featured:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6),
                0 10px 30px rgba(11, 25, 41, 0.4);
    animation: none;
}

.pourquoi-card.featured h3,
.pourquoi-card.featured p {
    color: var(--white);
}

.pourquoi-card.featured .pourquoi-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pourquoi-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-blue);
    color: var(--gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 74, 107, 0.3);
}

.pourquoi-card:hover .pourquoi-icon {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.pourquoi-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.pourquoi-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-text-secondary);
}

.pourquoi-card strong {
    color: var(--gold);
    font-weight: 600;
}

.pourquoi-card.featured strong {
    color: var(--gold);
}

.pourquoi-cta {
    background: var(--dark-bg-card);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.pourquoi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    border-radius: 15px;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.05);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 74, 107, 0.3);
}

.stat-box:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

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

.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: var(--dark-text-secondary);
    line-height: 1.3;
}

/* ===================================
   Processus Section
   =================================== */
.processus {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg-secondary);
}

.processus .container {
    max-width: 1400px;
    padding: 0 1rem;
}

.processus-timeline {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    gap: 1.5rem;
    position: relative;
    width: 100%;
}

.processus-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.processus-step:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.processus-step:hover .step-number {
    color: var(--gold);
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(11, 26, 48, 0.92) 0%, rgba(31, 56, 89, 0.88) 100%), url('../images/partnership-handshake.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--dark-bg-card);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 74, 107, 0.3);
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg) scale(1.15);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 1rem;
    color: var(--dark-text-secondary);
    margin-bottom: 0.5rem;
}

.contact-hours {
    font-size: 0.9rem !important;
    color: var(--medium-gray) !important;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 3px;
}

.contact-link::after {
    content: '';\n    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.contact-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact-link:hover::after {
    width: 100%;
}

/* ===================================
   Contact Form
   =================================== */
.contact-form {
    background: var(--dark-bg-card);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.form-group select {
    background: rgba(11, 26, 48, 0.9);
    color: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4AF37' d='M1.41 0L6 4.59 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    transform: translateX(5px);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 
                0 8px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px) scale(1.01);
}

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

.contact-form .btn-large {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-width: 250px;
    display: block;
    filter: brightness(1.2);
    transition: transform var(--transition-normal);
    object-fit: contain;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

/* Ancien styles texte conservés pour compatibilité */
.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-subtext {
    color: var(--light-blue);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--light-blue);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.ssl-badge:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.qualiopi-badge-footer {
    display: flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.qualiopi-badge-footer:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.qualiopi-logo-footer {
    max-height: 35px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.qualiopi-badge-footer:hover .qualiopi-logo-footer {
    opacity: 1;
    transform: scale(1.05);
}

.ssl-badge i {
    font-size: 0.9rem;
}

.ssl-badge span {
    white-space: nowrap;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-blue);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */

/* Timeline responsive - Mobile uniquement */
@media (max-width: 768px) {
    .processus-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Hero Logo responsive */
    .hero-logo-image {
        max-width: 180px;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 90%;
        white-space: normal;
    }
    
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-bg-secondary);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    /* Stats CTA Banner responsive */
    .stats-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stats-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .stats-cta-text p {
        font-size: 1rem;
    }
    
    /* Grid layouts */
    .expertise-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .expertise-card {
        position: static;
    }
    
    /* Images responsive */
    .service-image {
        height: 180px;
    }
    
    .expertise-image-container {
        height: 250px;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .cta {
        background-attachment: scroll;
    }
    
    .expertise-gallery {
        position: static;
    }
    
    .gallery-main img {
        height: 250px;
    }
    
    .gallery-grid .gallery-image img {
        height: 150px;
    }
    
    /* Pourquoi responsive */
    .pourquoi-grid {
        grid-template-columns: 1fr;
    }
    
    .pourquoi-card.featured {
        grid-column: span 1;
    }
    
    .pourquoi-stats {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* Logo responsive */
    .logo-image {
        height: 120px !important;
    }
    
    .footer-logo-image {
        height: 70px;
        max-width: 220px;
        object-fit: contain;
    }
}

@media (max-width: 640px) {
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero Section Mobile - CORRECTION COMPLÈTE */
    .hero {
        min-height: auto !important;
        padding: 120px 0 50px 0 !important;
    }
    
    .hero-logo-image {
        max-width: 120px !important;
        width: 120px !important;
        height: auto !important;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0.8rem !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* Phrase signature sur mobile */
    .hero-tagline-signature {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
        letter-spacing: 1.5px !important;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        white-space: normal !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Stats CTA Banner mobile */
    .stats-cta-banner {
        padding: 2rem 0;
    }
    
    .stats-cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-cta-icon i {
        font-size: 1.8rem;
    }
    
    .stats-cta-text h3 {
        font-size: 1.25rem;
    }
    
    .stats-cta-text p {
        font-size: 0.9rem;
    }
    
    .btn-stats {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer responsive */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ssl-badge {
        font-size: 0.75rem;
    }
    
    /* Logo mobile */
    .logo-image {
        height: 90px !important;
    }
    
    .logo-brand {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .footer-logo-image {
        height: 60px;
        max-width: 200px;
        object-fit: contain;
    }
    
    .hero-logo-image {
        max-width: 150px;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 1rem !important;
    }
    
    /* Phrase signature sur tablette */
    .hero-tagline-signature {
        font-size: 0.8rem !important;
        margin-bottom: 2rem !important;
        letter-spacing: 1.8px !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
        white-space: normal !important;
        overflow: visible !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: auto !important;
        padding: 100px 0 60px 0 !important;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Logos */
    .logo-image {
        height: 120px !important;
    }
    
    .enseigne-logo {
        height: 40px;
        max-width: 120px;
    }
    
    .enseignes-list {
        gap: 2rem;
    }
    
    /* Stats */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Pourquoi mobile */
    .pourquoi-card {
        padding: 2rem;
    }
    
    .pourquoi-cta {
        padding: 2rem;
    }
    
    .pourquoi-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}