/* ============================================
   MULTI CENTRALE EXPRESS - STYLES PRINCIPAUX
   ============================================ */

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

/* Variables CSS */
:root {
    /* Couleurs basées sur le logo vert */
    --primary-color: #228B22;
    --primary-dark: #1B6B1B;
    --primary-light: #90EE90;
    --primary-lighter: #E8F5E9;
    --secondary-color: #1a1a2e;
    --accent-color: #2ECC71;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --text-white: #ffffff;
    --bg-light: #f5f7f5;
    --bg-white: #ffffff;
    --bg-dark: #1a1a2e;
    --border-color: #dce5dc;
    --shadow-sm: 0 2px 8px rgba(34, 139, 34, 0.08);
    --shadow-md: 0 4px 16px rgba(34, 139, 34, 0.12);
    --shadow-lg: 0 8px 32px rgba(34, 139, 34, 0.16);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;

    /* Espacements augmentés */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    letter-spacing: -0.01em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.logo-text span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--primary-light);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(34, 139, 34, 0.85) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Image de fond du hero */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

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

/* Overlay gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(34, 139, 34, 0.7) 50%,
        rgba(26, 26, 46, 0.85) 100%);
    z-index: 1;
}

/* Animation avion cargo qui décolle */
.hero-plane-animation {
    position: absolute;
    bottom: 5%;
    left: -200px;
    z-index: 2;
    pointer-events: none;
    animation: planeTakeoff 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-plane-animation svg {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes planeTakeoff {
    0% {
        left: -200px;
        bottom: 5%;
        transform: rotate(5deg) scale(0.6);
        opacity: 0;
    }
    5% {
        opacity: 0.9;
    }
    30% {
        left: 30%;
        bottom: 25%;
        transform: rotate(15deg) scale(0.9);
    }
    60% {
        left: 60%;
        bottom: 50%;
        transform: rotate(20deg) scale(1);
        opacity: 0.9;
    }
    85% {
        opacity: 0.7;
    }
    100% {
        left: 110%;
        bottom: 80%;
        transform: rotate(25deg) scale(0.7);
        opacity: 0;
    }
}

/* Deuxième avion plus petit en arrière-plan */
.hero-plane-animation-2 {
    position: absolute;
    bottom: 15%;
    left: -150px;
    z-index: 1;
    pointer-events: none;
    animation: planeTakeoff2 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 7s;
}

.hero-plane-animation-2 svg {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    opacity: 0.5;
}

@keyframes planeTakeoff2 {
    0% {
        left: -150px;
        bottom: 15%;
        transform: rotate(8deg) scale(0.5);
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    50% {
        left: 45%;
        bottom: 40%;
        transform: rotate(18deg) scale(0.7);
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 105%;
        bottom: 70%;
        transform: rotate(22deg) scale(0.5);
        opacity: 0;
    }
}

/* Trainées des réacteurs */
.plane-trails {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.plane-trail {
    position: absolute;
    width: 400px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.5) 80%,
        white 100%);
    border-radius: 2px;
    filter: blur(2px);
    animation: trailMove 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.plane-trail-2 {
    width: 250px;
    height: 2px;
    opacity: 0.4;
    animation: trailMove2 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 7s;
}

@keyframes trailMove {
    0% {
        left: -400px;
        bottom: 8%;
        transform: rotate(5deg);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    30% {
        left: 25%;
        bottom: 23%;
        transform: rotate(15deg);
    }
    60% {
        left: 55%;
        bottom: 48%;
        transform: rotate(20deg);
        opacity: 0.6;
    }
    100% {
        left: 100%;
        bottom: 78%;
        transform: rotate(25deg);
        opacity: 0;
    }
}

@keyframes trailMove2 {
    0% {
        left: -250px;
        bottom: 17%;
        transform: rotate(8deg);
        opacity: 0;
    }
    5% {
        opacity: 0.4;
    }
    50% {
        left: 40%;
        bottom: 38%;
        transform: rotate(18deg);
        opacity: 0.3;
    }
    100% {
        left: 95%;
        bottom: 68%;
        transform: rotate(22deg);
        opacity: 0;
    }
}

/* Nuages animés style réaliste */
.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cloud-1 {
    width: 300px;
    height: 120px;
    top: 15%;
    animation: cloudDrift 35s linear infinite;
}

.cloud-2 {
    width: 200px;
    height: 80px;
    top: 35%;
    animation: cloudDrift 28s linear infinite;
    animation-delay: -10s;
}

.cloud-3 {
    width: 250px;
    height: 100px;
    top: 55%;
    animation: cloudDrift 40s linear infinite;
    animation-delay: -20s;
}

.cloud-4 {
    width: 180px;
    height: 70px;
    top: 70%;
    animation: cloudDrift 32s linear infinite;
    animation-delay: -5s;
}

@keyframes cloudDrift {
    0% {
        left: -300px;
        opacity: 0;
        transform: scale(0.8);
    }
    5% {
        opacity: 0.6;
    }
    50% {
        transform: scale(1);
    }
    95% {
        opacity: 0.6;
    }
    100% {
        left: 110%;
        opacity: 0;
        transform: scale(0.9);
    }
}

/* Conteneur cargo animé en bas */
.hero-cargo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.cargo-container {
    position: absolute;
    bottom: 20px;
    animation: cargoMove 25s linear infinite;
}

.cargo-container svg {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.cargo-container:nth-child(1) {
    animation-delay: 0s;
}

.cargo-container:nth-child(2) {
    animation-delay: -12s;
}

@keyframes cargoMove {
    0% {
        left: -200px;
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    95% {
        opacity: 0.7;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}

/* Ligne de sol/piste */
.hero-runway {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%);
    z-index: 2;
}

/* Lumières de piste */
.runway-lights {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    padding: 0 5%;
}

.runway-light {
    width: 8px;
    height: 8px;
    background: rgba(34, 139, 34, 0.8);
    border-radius: 50%;
    animation: lightBlink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 139, 34, 0.5);
}

.runway-light:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes lightBlink {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    opacity: 0.95;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}


.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    padding: 40px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.hero-globe {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    animation: globeFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease-out;
}

@keyframes globeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, #f0f0f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    font-size: 2.2rem;
    animation: floatIcon 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-icon:hover {
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(34, 139, 34, 0.3);
}

.floating-icon.plane {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #228B22 0%, #1B6B1B 100%);
    color: white;
}

.floating-icon.ship {
    bottom: 15%;
    left: 0%;
    animation-delay: 1.3s;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    color: white;
}

.floating-icon.eagle {
    top: 45%;
    left: -5%;
    animation-delay: 2.6s;
    background: linear-gradient(135deg, var(--bg-white) 0%, #f5f5f5 100%);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(3deg);
    }
    75% {
        transform: translateY(10px) rotate(-3deg);
    }
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    min-width: fit-content;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

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

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

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
.section {
    padding: 120px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--secondary-color);
    color: var(--text-white);
}

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

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

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-lighter);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.25;
}

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

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

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

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

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 28px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.85;
    font-size: 0.95rem;
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 28px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.85;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-lighter);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.about-badge .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VALUES / ENGAGEMENTS
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.value-card {
    background: var(--bg-white);
    padding: 45px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.value-icon {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 28px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ============================================
   ZONE D'INTERVENTION / MAP
   ============================================ */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coverage-map {
    position: relative;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-visual {
    text-align: center;
}

.map-visual svg {
    max-width: 100%;
    height: auto;
}

/* Coverage image style */
.coverage-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 350px;
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.coverage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.7), transparent);
}

.coverage-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: white;
}

.stat-box .stat-icon {
    font-size: 2rem;
}

.stat-box .stat-title {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-box .stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    margin-top: 30px;
    font-weight: 600;
}

.route-badge .arrow {
    font-size: 1.5rem;
}

.coverage-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.coverage-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.coverage-item .flag {
    font-size: 2rem;
}

.coverage-item .country {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ============================================
   TARIFS / PRICING
   ============================================ */
.pricing-table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.pricing-table tr:hover {
    background: var(--bg-light);
}

.pricing-table .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-card ul {
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

/* ============================================
   FORMULAIRE
   ============================================ */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-light);
}

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

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 48px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-message {
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    color: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.contact-text a:hover {
    color: var(--primary-light);
}

.contact-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* ============================================
   AVIS CLIENTS
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    line-height: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
    position: relative;
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.review-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand .logo img {
    height: 70px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-brand .logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

/* ============================================
   WHATSAPP FLOTTANT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   PAGE HEADER (POUR PAGES INTERNES)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(34, 139, 34, 0.75) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

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

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--primary-color);
}

/* ============================================
   GALERIE
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ============================================
   CONDITIONS / MENTIONS LÉGALES
   ============================================ */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-content p,
.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

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

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

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

    .menu-toggle {
        display: flex;
    }

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

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

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    /* Réduire les animations sur mobile */
    .hero-plane-animation svg {
        width: 120px;
    }

    .hero-plane-animation-2 {
        display: none;
    }

    .hero-cargo {
        height: 100px;
    }

    .cargo-container svg {
        height: 50px;
    }

    .runway-lights {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .about-grid,
    .coverage-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

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

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-container {
        padding: 50px 20px;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .coverage-list {
        grid-template-columns: 1fr;
    }

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

    .page-header {
        padding: 120px 0 60px;
    }

    /* Badges réduits en tablette */
    .about-badge {
        padding: 20px;
        bottom: -15px;
        right: -15px;
    }

    .about-badge .number {
        font-size: 2rem;
    }

    .about-badge .label {
        font-size: 0.75rem;
    }

    .route-badge {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    /* Cards avec padding réduit */
    .value-card {
        padding: 35px 30px;
    }

    .pricing-card {
        padding: 35px 30px;
    }

    .review-card {
        padding: 30px 25px;
    }

    .service-content {
        padding: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        height: 70px;
    }

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

    .hero {
        padding-top: 70px;
    }

    .hero-container {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .values-grid,
    .pricing-cards {
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    /* Badges réduits en mobile */
    .about-badge {
        padding: 15px;
        bottom: -10px;
        right: -10px;
    }

    .about-badge .number {
        font-size: 1.5rem;
    }

    .about-badge .label {
        font-size: 0.7rem;
    }

    .route-badge {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .route-badge .arrow {
        font-size: 1.2rem;
    }

    /* Cards avec marges correctes */
    .service-card,
    .value-card,
    .pricing-card,
    .review-card {
        margin: 0 5px;
    }

    .service-content {
        padding: 20px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .review-card {
        padding: 25px 20px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Animations d'entrée élégantes pour le hero */
.hero-content h1 {
    animation: textReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s both;
}

.hero-content h1 span {
    display: inline-block;
    animation: textHighlight 0.8s ease-out 1.5s both;
}

.hero-subtitle {
    animation: slideReveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.6s both;
}

.hero-buttons {
    animation: fadeSlideUp 0.8s ease-out 0.9s both;
}

.hero-buttons .btn {
    opacity: 0;
    animation: buttonReveal 0.6s ease-out both;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 1.1s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 1.3s;
}

.hero-stats {
    animation: fadeSlideUp 0.8s ease-out 1.2s both;
}

.hero-visual {
    animation: visualReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.8s both;
}

/* Animation de révélation du texte */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) skewY(3deg);
        filter: blur(10px);
    }
    50% {
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
        filter: blur(0);
    }
}

/* Animation de highlight pour le mot coloré */
@keyframes textHighlight {
    0% {
        transform: scale(1);
        text-shadow: none;
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(34, 139, 34, 0.5);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(34, 139, 34, 0.3);
    }
}

/* Animation de slide reveal */
@keyframes slideReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        clip-path: inset(100% 0 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

/* Animation fade slide up */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation pour les boutons */
@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation pour la partie visuelle */
@keyframes visualReveal {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animations au scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

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

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

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Animation des stats avec compteur */
.stat-item {
    animation: bounceIn 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 1s; }
.stat-item:nth-child(2) { animation-delay: 1.2s; }
.stat-item:nth-child(3) { animation-delay: 1.4s; }

/* Animation hover améliorée pour les cartes */
.service-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Animation du logo header */
.header .logo img {
    transition: transform 0.3s ease;
}

.header .logo:hover img {
    transform: scale(1.05);
}

/* Animation des boutons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

/* Animation section tag */
.section-tag {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 139, 34, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(34, 139, 34, 0);
    }
}

/* Animation des icônes flottantes améliorée */
.floating-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animation de typing pour le titre */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Shimmer effect pour les éléments premium */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Animation des review cards */
.review-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-lg);
}

/* Animation de l'étoile */
.review-stars {
    display: inline-block;
}

.review-card:hover .review-stars {
    animation: starPulse 0.5s ease-in-out;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Gradient animation pour CTA */
.cta-section {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

/* Animation de la route sur la carte */
.route-badge {
    animation: routePulse 2s ease-in-out infinite;
}

@keyframes routePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(34, 139, 34, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(34, 139, 34, 0.5);
    }
}

/* Animation du badge about */
.about-badge {
    animation: float 4s ease-in-out infinite;
}

/* Parallax micro-interactions */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* ============================================
   UTILITAIRES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}
