/* ============================================
   RESET & VARIABLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --accent-color: #10b981;
    
    /* Couleurs neutres */
    --dark: #1f2937;
    --dark-light: #374151;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --light: #f9fafb;
    --white: #ffffff;
    
    /* Typographie */
    --font-primary: 'Poppins', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.45) 0%, rgba(30, 64, 175, 0.25) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    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.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    /* Particules multiples pour effet plus riche */
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(37, 99, 235, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(37, 99, 235, 0.2), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s linear infinite;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(37, 99, 235, 0.1) 30%, transparent 70%);
    animation: float-particle 15s ease-in-out infinite;
    filter: blur(20px);
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

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

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(80px, -80px) scale(1.3);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50px, 50px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(50px, 80px) scale(1.2);
        opacity: 0.6;
    }
}

/* Rayons de lumière animés */
.hero-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(37, 99, 235, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: lightRays 15s linear infinite;
    opacity: 0.6;
}

@keyframes lightRays {
    0% {
        background-position: 0% 0%, 100% 100%;
    }
    100% {
        background-position: 100% 100%, 0% 0%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-md);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(37, 99, 235, 0.4),
        0 0 40px rgba(37, 99, 235, 0.3),
        0 0 70px rgba(37, 99, 235, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

.title-first,
.title-second {
    display: block;
    line-height: 1;
}

.title-second {
    margin-top: -0.1em;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(37, 99, 235, 0.4),
            0 0 40px rgba(37, 99, 235, 0.3),
            0 0 70px rgba(37, 99, 235, 0.2),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.7),
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(37, 99, 235, 0.6),
            0 0 60px rgba(37, 99, 235, 0.5),
            0 0 90px rgba(37, 99, 235, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(37, 99, 235, 0.15) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: titleAura 4s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes titleAura {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    z-index: -1;
    animation: titleSweep 4s ease-in-out infinite;
}

@keyframes titleSweep {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    opacity: 0.98;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: #fbbf24;
    animation: spin-slow 4s linear infinite;
}

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

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-features {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.hero-feature::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;
}

.hero-feature:hover::before {
    left: 100%;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.hero-feature i {
    color: #ffffff;
    font-size: 0.85rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform var(--transition-normal);
}

.scroll-indicator-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.15);
}

.scroll-indicator:hover .scroll-indicator-line {
    height: 50px;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ============================================
   MOUSE FOLLOWER BUS - DESIGN AMÉLIORÉ
   ============================================ */
.mouse-follower-bus {
    position: fixed;
    width: 90px;
    height: 90px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mouse-follower-bus.active {
    opacity: 1;
}

/* Glow extérieur */
.bus-outer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.3) 0%,
        rgba(37, 99, 235, 0.15) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    animation: outerGlowPulse 2.5s ease-in-out infinite;
}

.mouse-follower-bus.active .bus-outer-glow {
    opacity: 1;
}

@keyframes outerGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

/* Effet de traînée amélioré */
.bus-trail-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 8px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(37, 99, 235, 0.4) 30%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(37, 99, 235, 0.4) 70%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.mouse-follower-bus.active .bus-trail-effect {
    opacity: 0.7;
    animation: trailShimmer 1.5s ease-in-out infinite;
}

@keyframes trailShimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Ombre portée améliorée */
.bus-shadow {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mouse-follower-bus.active .bus-shadow {
    opacity: 0.7;
    animation: shadowPulse 2s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0.5;
    }
}

/* Corps du bus */
.bus-body {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.bus-icon-container {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glow autour de l'icône */
.bus-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(37, 99, 235, 0.2) 50%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: iconGlowPulse 2s ease-in-out infinite;
}

.mouse-follower-bus.active .bus-icon-glow {
    opacity: 1;
}

@keyframes iconGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.bus-icon {
    font-size: 3.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    filter: 
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 20px rgba(37, 99, 235, 0.6))
        drop-shadow(0 0 40px rgba(37, 99, 235, 0.3));
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.mouse-follower-bus.active .bus-icon {
    animation: busFloat 2.5s ease-in-out infinite;
}

@keyframes busFloat {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) scale(1.08) rotate(-2deg);
    }
    50% {
        transform: translateY(-8px) scale(1.1) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) scale(1.08) rotate(2deg);
    }
}

/* Particules/étincelles autour du bus */
.bus-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
}

.mouse-follower-bus.active .sparkle {
    animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.6s;
}

.sparkle-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 1.2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(15px, -15px) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   HERO STATISTICS
   ============================================ */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    width: 100%;
    max-width: 900px;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    margin-right: auto;
}

.hero-stat-item {
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-stat-item:last-child::after {
    display: none;
}

.hero-stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(37, 99, 235, 0.6),
        0 0 40px rgba(37, 99, 235, 0.4);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    width: 100%;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-stat-item::after {
        display: none;
    }
    
    .hero-stat-item {
        padding: var(--spacing-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-stat-item:last-child {
        border-bottom: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
    opacity: 0;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Changer la couleur du texte AVANT que le background ne se développe */
.btn-primary {
    transition: color 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--primary-color);
}

.btn-primary span {
    position: relative;
    z-index: 2;
    transition: color 0.2s ease;
}

/* Assurer que le texte devient blanc immédiatement au hover */
.btn-primary:hover span {
    color: var(--white) !important;
}

/* ============================================
   HERO BUTTONS (Spécialisés pour Hero)
   ============================================ */
.btn-hero-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-hero-primary:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    border-color: var(--white);
}

.btn-hero-primary .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: inherit;
}

.btn-hero-primary:hover .btn-content {
    color: var(--white) !important;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: width 0.4s ease;
    z-index: 0;
}

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

.btn-hero-secondary:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: inherit;
    transition: color 0.3s ease;
}

.btn-hero-secondary:hover .btn-content {
    color: var(--primary-color) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Section background patterns */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-color) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, var(--accent-color) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.03;
        transform: scale(1);
    }
    50% {
        opacity: 0.05;
        transform: scale(1.05);
    }
}

section > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    border-radius: 2px;
    animation: lineExpand 1s ease-out;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.section-tag {
    display: block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Gradient will override color if applied */
}

.section-title.float-active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation de flottement continu */
@keyframes floatContinuous {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.float-continuous {
    animation: floatContinuous 3s ease-in-out infinite;
}

/* Animation de révélation au scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation de texte lettre par lettre */
.text-reveal {
    display: inline-block;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/* Effet de flottement pour les cartes */
.service-card,
.fleet-card,
.destination-card,
.testimonial-card {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.service-card.float-active,
.fleet-card.float-active,
.destination-card.float-active,
.testimonial-card.float-active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation de flottement au hover */
.service-card:hover,
.fleet-card:hover,
.destination-card:hover {
    animation: cardFloat 2s ease-in-out infinite;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.section-description.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-tag.scroll-reveal {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-tag.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: transform var(--transition-slow);
}

.about-card:hover::after {
    transform: translate(20%, -20%) scale(1.2);
}

.about-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-color);
}

.about-card .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.about-card .icon-box i {
    font-size: 1.5rem;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.about-card p {
    color: var(--gray);
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
}

.about-image-wrapper:hover {
    transform: scale(1.02);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.about-image-wrapper:hover .image-overlay,
.fleet-image:hover .image-overlay,
.destination-image:hover .image-overlay {
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: 20px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: 1;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: visible;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: inherit;
    opacity: 0;
    z-index: -1;
    transition: all 0.6s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    animation: iconFloat 2s ease-in-out infinite;
}

.service-card:hover .service-icon::before {
    width: 140%;
    height: 140%;
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: rotate(5deg) scale(1.1) translateY(0);
    }
    50% {
        transform: rotate(5deg) scale(1.1) translateY(-5px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.service-features li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

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

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet {
    background: var(--light);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.fleet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.fleet-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.15);
}

.fleet-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 0;
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fleet-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-features {
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.fleet-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.fleet-capacity {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

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

.fleet-features li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.fleet-features i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.fleet-guarantee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    padding: 0;
}

.guarantee-item {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border-radius: 24px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.08) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0.5);
}

.guarantee-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.guarantee-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.guarantee-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.guarantee-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconBgFloat 4s ease-in-out infinite;
}

@keyframes iconBgFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.8;
    }
}

.guarantee-item:hover .guarantee-icon-bg {
    transform: translate(-50%, -50%) scale(1.3);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.12));
    animation: iconBgPulse 2s ease-in-out infinite;
}

@keyframes iconBgPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }
}

.guarantee-icon-inner {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.guarantee-item:hover .guarantee-icon-inner {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: iconInnerFloat 2s ease-in-out infinite;
}

@keyframes iconInnerFloat {
    0%, 100% {
        transform: scale(1.1) rotate(5deg) translateY(0);
    }
    50% {
        transform: scale(1.1) rotate(5deg) translateY(-6px);
    }
}

.guarantee-icon {
    font-size: 2.8rem;
    color: var(--white);
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.guarantee-item:hover .guarantee-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.3px;
}

.guarantee-item:hover .guarantee-title {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.guarantee-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-item:hover .guarantee-text {
    opacity: 1;
    color: var(--dark-light);
    transform: translateY(-2px);
}

/* Animation de révélation avec délai pour chaque item */
.guarantee-item.scroll-reveal:nth-child(1) {
    transition-delay: 0s;
}

.guarantee-item.scroll-reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.guarantee-item.scroll-reveal:nth-child(3) {
    transition-delay: 0.4s;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations {
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    justify-items: center;
}

.destination-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover .destination-image img {
    transform: scale(1.15);
}

.destination-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border-radius: 0;
}

.destination-content {
    padding: var(--spacing-md);
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.destination-content > p {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.destination-content ul {
    list-style: none;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
}

.destination-content ul li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.destination-content ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    color: var(--white);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

/* ============================================
   TRUST SECTION - Partenaire de Confiance
   ============================================ */
.trust-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trust-section > .container {
    position: relative;
    z-index: 1;
}

/* Garanties Principales */
.trust-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.guarantee-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 24px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

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

.guarantee-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.guarantee-card .guarantee-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.guarantee-card .guarantee-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.08));
    border-radius: 50%;
    animation: iconBgPulse 3s ease-in-out infinite;
    z-index: 1;
}

.guarantee-card .guarantee-icon {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@keyframes iconBgPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.8;
    }
}

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
    letter-spacing: -0.3px;
}

.guarantee-card > p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: 0.95rem;
}

.guarantee-stat {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.04));
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.15);
}

.guarantee-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-stat .stat-label {
    font-size: 0.875rem;
    color: var(--dark-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Témoignages en Vrac */
.trust-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.testimonial-quote {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-quote:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-light);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
}

.quote-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: quotePulse 2s ease-in-out infinite;
}

@keyframes quotePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.quote-text {
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    font-style: italic;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--gray-light);
}

.author-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Stats Globales */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.trust-stat-item {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s;
}

.trust-stat-item:hover::before {
    left: 100%;
}

.trust-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.stat-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-large {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Final */
.trust-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

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

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--light);
}

/* ============================================
   CONTACT MAIN WRAPPER
   ============================================ */
.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   CONTACT INFO COLUMN (Gauche)
   ============================================ */
.contact-info-column {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
}

.contact-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.contact-column-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-column-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-light);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.contact-info-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.contact-info-item:hover .contact-info-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.contact-info-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-info-content > p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: var(--spacing-xs);
}

.contact-action-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.contact-action-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-action-link i {
    font-size: 0.875rem;
}

.contact-address {
    color: var(--dark);
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs);
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
}

.hours-day {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.hours-time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.info-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-top: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-light);
    border-color: var(--primary-color);
}

.info-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    min-height: 40px;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
    display: inline-block;
    margin-top: var(--spacing-xs);
}

.info-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.info-address {
    color: var(--dark);
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    margin-top: var(--spacing-xs);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.info-card a:hover {
    color: var(--primary-dark);
}

.info-card address {
    color: var(--dark);
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
}

.hours {
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
}

/* ============================================
   CONTACT FORM COLUMN (Droite)
   ============================================ */
.contact-form-column {
    position: relative;
}

.contact-form-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

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

.contact-form-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.contact-form-card:hover::after {
    opacity: 1;
}

.form-header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    animation: headerLineExpand 0.8s ease-out;
}

@keyframes headerLineExpand {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.form-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-main-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    margin-top: var(--spacing-md);
}

.form-section-compact {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-light);
}

.form-section-compact:last-of-type {
    border-bottom: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-row .form-group:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.char-counter {
    margin-top: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--gray);
    text-align: right;
}

.char-counter span {
    font-weight: 600;
    color: var(--primary-color);
}

.form-consent-section {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark);
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

/* ============================================
   CONTACT SUBMIT WRAPPER (Centré sur 2 colonnes)
   ============================================ */
.contact-submit-wrapper {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
    border-radius: 20px;
    border: 2px dashed rgba(37, 99, 235, 0.2);
}

.btn-submit-large {
    min-width: 300px;
    padding: 18px 45px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: 0 auto;
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.3),
        0 4px 12px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff !important;
}

.btn-submit-large::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;
}

.btn-submit-large:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(37, 99, 235, 0.4),
        0 6px 16px rgba(37, 99, 235, 0.3);
}

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

.btn-submit-large .btn-text,
.btn-submit-large i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    color: #ffffff !important;
}

.btn-submit-large:hover .btn-text {
    transform: translateX(4px);
}

.btn-submit-large:hover i {
    transform: translateX(4px) rotate(15deg);
}

.form-submit-wrapper {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.btn-submit-large i {
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: var(--spacing-lg);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.form-group:focus-within::before {
    opacity: 1;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.05),
        rgba(37, 99, 235, 0.02),
        rgba(255, 255, 255, 0.3),
        rgba(37, 99, 235, 0.02),
        rgba(37, 99, 235, 0.05)
    );
    background-size: 200% 100%;
    animation: shimmerBg 2s ease-in-out infinite;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.form-group:focus-within label {
    color: var(--primary-color);
    transform: translateX(4px);
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group:focus-within label i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--dark);
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 4px 20px rgba(37, 99, 235, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px) scale(1.01);
    background: var(--white);
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}


.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.5s ease-in-out;
    box-shadow: 
        0 0 0 4px rgba(239, 68, 68, 0.1),
        0 4px 20px rgba(239, 68, 68, 0.15);
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #10b981;
    background: #f0fdf4;
    box-shadow: 
        0 0 0 4px rgba(16, 185, 129, 0.1),
        0 4px 20px rgba(16, 185, 129, 0.15);
}

.form-group.success::after {
    content: '✓';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
    animation: checkmark 0.5s ease-in-out;
    z-index: 2;
    pointer-events: none;
    margin-top: 12px;
}

@keyframes checkmark {
    0% {
        transform: translateY(-50%) scale(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) scale(1.2) rotate(180deg);
    }
    100% {
        transform: translateY(-50%) scale(1) rotate(360deg);
    }
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    min-height: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    display: inline-block;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* ============================================
   GOOGLE MAPS SECTION
   ============================================ */
.map-container {
    margin-top: var(--spacing-xl);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-header {
    padding: var(--spacing-md);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.map-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.map-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--light);
}

.map-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--dark);
    transition: all var(--transition-normal);
}

.map-info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-info-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ============================================
   LIVE CLOCK WIDGET
   ============================================ */
.live-clock {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.clock-time {
    font-size: 1.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.clock-date {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   WEATHER WIDGET
   ============================================ */
.weather-widget {
    margin-top: var(--spacing-sm);
    min-height: 80px;
}

.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    color: var(--gray);
    font-size: 0.875rem;
}

.weather-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 10px;
    color: var(--white);
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.weather-temp {
    font-size: 2rem;
    font-weight: 700;
}

.weather-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.weather-desc {
    font-size: 0.9rem;
    text-transform: capitalize;
    opacity: 0.95;
}

.weather-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: var(--spacing-xs);
    padding-top: var(--spacing-xs);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-error {
    padding: var(--spacing-sm);
    background: #fee2e2;
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.875rem;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-main-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-column {
        position: relative;
        top: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md) 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: var(--spacing-sm) 0;
    }
    
    /* ============================================ */
    /* HERO SECTION - CORRECTIONS MOBILES          */
    /* ============================================ */
    
    /* Hero principal - compensation navbar fixe */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 70px; /* Compense la navbar fixe */
        background-attachment: scroll !important; /* Fix pour le chargement de l'image sur mobile */
        background-size: cover !important;
        background-position: center center !important;
    }
    
    /* Contenu Hero */
    .hero-content {
        min-height: calc(100vh - 70px);
        padding: var(--spacing-md) var(--spacing-sm);
        padding-top: var(--spacing-lg);
        padding-bottom: 80px; /* Espace pour le scroll indicator */
    }
    
    /* Titre Hero */
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .title-first,
    .title-second {
        line-height: 1.1;
    }
    
    .title-second {
        margin-top: 0;
    }
    
    /* Sous-titre Hero */
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    /* Description Hero */
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    /* Badge Hero */
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: var(--spacing-sm);
    }
    
    /* Boutons Hero */
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-hero-primary .btn-content,
    .btn-hero-secondary .btn-content {
        justify-content: center;
    }
    
    /* Features Hero */
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Statistiques Hero */
    .hero-stats {
        margin-top: var(--spacing-md);
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: 20px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator-line {
        height: 30px;
    }
    
    .scroll-indicator i {
        font-size: 1.2rem;
    }
    
    /* Désactiver le bus suiveur de souris sur mobile */
    .mouse-follower-bus {
        display: none !important;
    }
    
    /* Désactiver les animations lourdes sur mobile pour les performances */
    .hero::before,
    .hero-particles,
    .hero-light-rays,
    .hero-title::before,
    .hero-title::after {
        animation: none !important;
    }
    
    /* Overlay simplifié sur mobile */
    .hero-overlay {
        animation: none !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-guarantee {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Trust guarantees section - Votre Partenaire de Confiance */
    .trust-guarantees {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .trust-testimonials {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantee-item {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .guarantee-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .guarantee-icon {
        font-size: 2.5rem;
    }
    
    .guarantee-title {
        font-size: 1.2rem;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .form-section {
        padding-bottom: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .contact-section-title {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* ============================================ */
    /* HERO SECTION - TRÈS PETITS ÉCRANS (< 480px)  */
    /* ============================================ */
    
    /* Hero principal */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 60px;
    }
    
    /* Contenu Hero */
    .hero-content {
        min-height: calc(100vh - 60px);
        padding: var(--spacing-sm);
        padding-top: var(--spacing-md);
        padding-bottom: 70px;
    }
    
    /* Titre Hero */
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-xs);
    }
    
    /* Sous-titre Hero */
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    /* Description Hero */
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-sm);
        padding: 0;
    }
    
    /* Badge Hero */
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-bottom: var(--spacing-xs);
    }
    
    /* Boutons Hero */
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
        width: 100%;
        padding: 0;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Features Hero */
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
        padding: 0;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-feature i {
        font-size: 0.75rem;
    }
    
    /* Statistiques Hero */
    .hero-stats {
        margin-top: var(--spacing-sm);
        padding: var(--spacing-sm);
        border-radius: 15px;
        gap: var(--spacing-sm);
    }
    
    .hero-stat-item {
        padding: var(--spacing-xs);
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator-line {
        height: 25px;
    }
    
    .scroll-indicator i {
        font-size: 1rem;
    }
    
    /* Boutons généraux */
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Stats container */
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */
/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all var(--transition-normal);
}

/* Loading state for page */
body:not(.loaded) {
    overflow: hidden;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar styling (webkit browsers) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Pulse animation for CTA buttons - désactivée pour éviter les problèmes de contraste */
/* L'animation pulse peut causer des problèmes de lisibilité */

/* Image loading animation */
.fleet-image img,
.destination-image img,
.about-image-wrapper img {
    opacity: 0;
    animation: fadeInImage 0.8s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced image effects */
.fleet-image,
.destination-image {
    position: relative;
}

.fleet-image::before,
.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.fleet-card:hover .fleet-image::before,
.destination-card:hover .destination-image::before {
    opacity: 1;
}

/* Gradient text effect for section titles - optional enhancement */
.section-title {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--dark); /* Fallback for browsers that don't support background-clip */
}

/* Enhanced card hover effects */
.service-card,
.fleet-card,
.destination-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.fleet-card::before,
.destination-card::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;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before,
.fleet-card:hover::before,
.destination-card:hover::before {
    left: 100%;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
    z-index: 10;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
