/* Variables globales */
:root {
    --orange-dark: #FF6B35;
    --orange-light: #FFB085;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #666666;
    --black: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header et Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
}

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

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

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

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--orange-dark);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    width: 24px;
    height: 20px;
    margin: 10px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
    left: 0;
    right: 0;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -7px;
}

.hamburger::after {
    content: '';
    bottom: -7px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background-color: var(--light-gray); /* Fallback si la vidéo ne charge pas */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    will-change: transform;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85); /* Overlay semi-transparent pour améliorer la lisibilité */
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    opacity: 0.15;
    transform: rotate(-15deg);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-image-top {
    position: relative;
    z-index: 1;
    max-width: 250px;
    margin: 0 auto 2rem;
}

.hero-image-top::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.hero-image-top img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image-top img:hover {
    transform: translateY(-5px);
}

.hero-text {
    padding-right: var(--spacing-lg);
    width: 100%;
    text-align: center;
}

.hero h2 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero h2.smaller-title {
    font-size: 3.2rem;
}

@media (max-width: 1200px) {
    .hero h2.smaller-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero h2.smaller-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .hero h2.smaller-title {
        font-size: 2.1rem;
    }
}

.hero h2 span {
    color: var(--orange-dark);
}

.hero p {
    font-size: 1.25rem;
    margin: 0 auto 2.5rem;
    color: var(--gray);
    max-width: 800px;
    line-height: 1.8;
    white-space: pre-line;
    text-align: center;
}

@media (max-width: 1200px) {
    .hero p {
        font-size: 1.15rem;
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .hero p {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--orange-dark);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-outline:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

@media (max-width: 1200px) {
    .hero h2 {
        font-size: 3.2rem;
    }
    
    .hero-image-top {
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image-top {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-image-top {
        max-width: 180px;
        margin: 0 auto 1.5rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .cta-buttons {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-image-top {
        max-width: 150px;
        margin: 0 auto 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--orange-dark), var(--orange-light));
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--orange-light), transparent);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0;
        width: 50px;
    }
    50% {
        opacity: 0.5;
        width: 100px;
    }
    100% {
        opacity: 0;
        width: 50px;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
    position: relative;
    padding: 0 1rem;
    font-weight: 400;
    background: linear-gradient(120deg, var(--gray) 0%, var(--black) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Formations Section */
.formations {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.formations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, var(--orange-light) 0%, transparent 60%),
        radial-gradient(circle at bottom left, var(--orange-light) 0%, transparent 60%);
    opacity: 0.1;
    z-index: 1;
    animation: gradientMove 15s ease-in-out infinite alternate;
}

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

.formations-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
    perspective: 1000px;
}

.formation-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer; /* Ajout du curseur pointer pour indiquer que c'est cliquable */
}

.formation-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(255, 176, 133, 0.1) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 30px;
}

.formation-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.8) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.formation-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 2px var(--orange-light) inset;
}

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

.formation-card:hover::after {
    opacity: 0.4;
}

.formation-icon {
    position: relative;
    z-index: 3;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-dark) 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 20px rgba(255, 107, 53, 0.2),
        0 0 0 8px rgba(255, 107, 53, 0.1);
}

.formation-card:hover .formation-icon {
    transform: scale(1.1) translateZ(20px);
    box-shadow: 
        0 15px 30px rgba(255, 107, 53, 0.3),
        0 0 0 12px rgba(255, 107, 53, 0.1);
}

.formation-icon i {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.formation-card h3 {
    position: relative;
    z-index: 3;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
    transform: translateZ(10px);
    transition: transform 0.3s ease;
}

.formation-card:hover h3 {
    transform: translateZ(30px);
}

.formation-card p {
    position: relative;
    z-index: 3;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    flex-grow: 1;
    transform: translateZ(5px);
    transition: transform 0.3s ease;
}

.formation-card:hover p {
    transform: translateZ(20px);
}

.btn-link {
    position: relative;
    z-index: 5; /* Augmenté pour s'assurer qu'il est au-dessus des autres éléments */
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--orange-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    padding: 0.75rem 0;
    transform: translateZ(15px);
    cursor: pointer; /* Assure que le curseur indique qu'il s'agit d'un élément cliquable */
    pointer-events: auto; /* Assure que les événements sont capturés */
}

.btn-link:hover {
    gap: 1.25rem;
    color: var(--orange-light);
    transform: translateZ(40px);
}

.btn-link i {
    transition: all 0.4s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .formations-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
        gap: 2rem;
    }

    .formation-card {
        padding: 2.5rem;
        position: relative; /* Assurer que la position est relative pour le positionnement des enfants */
        transform: none !important; /* Désactiver les transformations 3D sur mobile */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Simplifier les transitions */
    }
    
    .formation-card:hover {
        transform: translateY(-5px) !important; /* Animation simplifiée sur mobile */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Classe active pour le retour visuel sur mobile */
    .formation-card.touch-active {
        background-color: rgba(255, 240, 230, 0.95);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
    }

    .formation-icon {
        width: 80px;
        height: 80px;
    }

    .formation-icon i {
        font-size: 2.5rem;
    }

    .formation-card h3 {
        font-size: 1.5rem;
    }

    .formation-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem; /* Ajouter de l'espace pour le bouton */
    }
    
    /* Styles spécifiques pour le bouton sur mobile */
    .btn-link {
        padding: 0.75rem 0;
        margin-top: 0.5rem;
        transform: none; /* Supprimer la transformation 3D sur mobile */
        display: inline-block; /* Assurer qu'il s'affiche correctement */
        width: auto;
        position: relative;
    }
    
    /* Créer une zone de clic plus grande */
    .btn-link::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        z-index: 1;
    }
    
    /* S'assurer que le texte et l'icône restent au-dessus de la zone de clic étendue */
    .btn-link i {
        position: relative;
        z-index: 2;
    }
    
    /* Style pour l'état actif au toucher sur mobile */
    .btn-link.touch-active {
        color: var(--orange-light);
        transform: scale(1.05);
        transition: all 0.15s ease;
    }
    
    .btn-link.touch-active i {
        transform: translateX(5px);
    }
}

/* About Section */
.about {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at bottom right, var(--orange-light) 0%, transparent 60%),
        radial-gradient(circle at top left, var(--orange-light) 0%, transparent 60%);
    opacity: 0.1;
    z-index: 1;
    animation: gradientMove 15s ease-in-out infinite alternate;
}

.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    max-width: 500px;
    margin: 0 auto;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.2) 0%, 
        transparent 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

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

.about-text {
    padding: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.about-text .section-title::before,
.about-text .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--orange-light), transparent);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-dark);
    display: inline-block;
    position: relative;
}

.stat-item span:not(.stat-number) {
    font-size: 2rem;
    color: var(--orange-dark);
    margin-left: 0.25rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
    border: none;
    padding: 0;
}

@media (max-width: 992px) {
    .about-content {
        gap: var(--spacing-md);
    }

    .about-image {
        max-width: 450px;
    }
    
    .about-text {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .about-image {
        max-width: 350px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item::after {
        display: none;
    }

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

    .stat-item span:not(.stat-number) {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        padding: 1.5rem 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-lg) 0;
    background: var(--gray-light);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    padding: 0 var(--spacing-md);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    position: relative;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 3rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-quote i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--orange-dark);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--orange-dark);
}

/* Contact Section */
.contact {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, var(--orange-light) 0%, transparent 70%),
        radial-gradient(circle at bottom left, var(--orange-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(255, 176, 133, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.1),
        0 0 0 2px var(--orange-light) inset;
}

.info-item:hover::before {
    opacity: 1;
}

.info-icon {
    position: relative;
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 20px rgba(255, 107, 53, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.5) inset;
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 
        0 15px 25px rgba(255, 107, 53, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.6) inset;
}

.info-text {
    position: relative;
    z-index: 1;
    flex: 1;
}

.info-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.info-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    transform-origin: left;
}

.info-item:hover .info-text h3 {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item:hover .info-text p {
    color: var(--black);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .info-item {
        padding: 1.2rem;
        align-items: flex-start;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .info-icon i {
        font-size: 1.5rem;
    }

    .info-text h3 {
        font-size: 1.2rem;
    }

    .info-text p {
        font-size: 1rem;
    }

    .info-item:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .contact {
        padding: var(--spacing-sm) 0;
    }

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

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

    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .contact-content {
        gap: 1rem;
        margin-top: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .info-item {
        padding: 0.8rem;
        align-items: flex-start;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
        border-radius: 12px;
    }

    .info-text h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }
}

.contact-form {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, rgba(255, 176, 133, 0.2) 0%, transparent 60%),
        radial-gradient(circle at bottom left, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

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

.form-group {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 0;
}

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

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid transparent;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: var(--black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.input-group textarea {
    height: 180px;
    resize: none;
    line-height: 1.6;
    padding-top: 1.4rem;
}

.input-group label {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    padding: 0 0.5rem;
    color: var(--gray);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: transparent;
    font-weight: 500;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--orange-light);
    box-shadow: 
        0 10px 25px rgba(255, 107, 53, 0.15),
        0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
    background: white;
}

.input-group input:focus ~ label,
.input-group select:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group select:not(:placeholder-shown) ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -0.75rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--orange-dark);
    background: white;
    padding: 0 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px white;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--orange-dark), var(--orange-light));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    opacity: 0;
}

.input-group input:focus ~ .focus-border,
.input-group select:focus ~ .focus-border,
.input-group textarea:focus ~ .focus-border {
    width: 100%;
    opacity: 1;
}

.submit-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-light) 100%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

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

.submit-btn span {
    position: relative;
    z-index: 1;
    margin-right: 0.5rem;
}

.submit-btn i {
    position: relative;
    z-index: 1;
    margin-left: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Styles pour les messages de succès et d'erreur du formulaire */
.form-success-message,
.form-error-message {
    position: relative;
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: all 0.5s ease;
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease forwards;
}

.form-success-message {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1) 0%, rgba(46, 213, 115, 0.2) 100%);
    border-left: 4px solid #2ed573;
    color: #20bf6b;
}

.form-error-message {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.2) 100%);
    border-left: 4px solid #ff4757;
    color: #ea2027;
}

.form-success-message i,
.form-error-message i {
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

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

/* Styles responsifs pour les messages de formulaire */
@media (max-width: 992px) {
    .form-success-message,
    .form-error-message {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .form-success-message,
    .form-error-message {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .form-success-message i,
    .form-error-message i {
        margin-right: 0.6rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .form-success-message,
    .form-error-message {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 10px;
        border-left-width: 3px;
    }
    
    .form-success-message i,
    .form-error-message i {
        margin-right: 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-group {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .input-group input,
    .input-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    .input-group label {
        left: 1rem;
        top: 1rem;
    }

    .submit-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Contact Section Responsive */
@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--spacing-md);
    }

    .contact-form {
        padding: 2.5rem;
    }

    .info-item {
        padding: 1.2rem;
    }
}

@media (max-width: 992px) {
    .contact {
        padding: var(--spacing-md) 0;
    }

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

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

    .info-item {
        margin-bottom: 0;
        height: 100%;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .info-icon i {
        font-size: 1.5rem;
    }

    .info-text h3 {
        font-size: 1.1rem;
    }

    .info-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }

    .contact-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .info-item {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-right: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .input-group {
        margin-bottom: 1rem;
    }

    .input-group input,
    .input-group textarea {
        padding: 0.9rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .input-group label {
        font-size: 0.95rem;
    }

    .input-group textarea {
        height: 150px;
    }

    .submit-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: var(--spacing-sm) 0;
    }

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

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

    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .contact-content {
        gap: 1rem;
        margin-top: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .info-item {
        padding: 0.8rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0.8rem;
        border-radius: 12px;
    }

    .info-text h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .input-group input,
    .input-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .input-group label {
        font-size: 0.9rem;
        left: 0.8rem;
        top: 0.8rem;
    }

    .input-group input:focus ~ label,
    .input-group textarea:focus ~ label,
    .input-group input:not(:placeholder-shown) ~ label,
    .input-group textarea:not(:placeholder-shown) ~ label {
        top: -0.6rem;
        left: 0.8rem;
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        border-radius: 25px;
    }

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
}

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

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: var(--orange-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--orange-dark);
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    min-width: 30px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--orange-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-contact-text {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--orange-dark);
    color: var(--white);
    transform: scale(1.1);
}

.footer-contact-item:hover .footer-contact-text {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-dark);
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-links a i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links a:hover i {
    transform: scale(1.2);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange-light);
    transform: translateX(20px);
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.footer-logo .logo-white {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal li {
    position: relative;
}

.footer-legal li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-legal a:hover,
.footer-legal a.active {
    color: var(--orange-light);
}

@media (max-width: 768px) {
    .footer-legal {
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .footer-legal li:not(:last-child)::after {
        right: -0.6rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        text-align: center;
        gap: 2rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        transform: translateX(0);
        color: var(--orange-light);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-section {
        padding: 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact-item {
        margin-bottom: 0.8rem;
    }
    
    .footer-contact-text {
        font-size: 0.9rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .about-content {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text {
        padding-left: 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-quote {
        padding-left: 2rem;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .testimonial-controls {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .logo img {
        height: 35px;
    }
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus visible pour l'accessibilité */
:focus-visible {
    outline: 3px solid var(--orange-dark);
    outline-offset: 2px;
}

/* Styles pour la section de la gérante */
.manager-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.manager-profile:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 2px var(--orange-light) inset;
}

.manager-photo {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    box-shadow: 
        0 10px 20px rgba(255, 107, 53, 0.2),
        0 0 0 4px rgba(255, 255, 255, 0.8),
        0 0 0 8px rgba(255, 107, 53, 0.1);
    flex-shrink: 0;
}

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

.manager-profile:hover .manager-photo img {
    transform: scale(1.05);
}

.manager-info {
    text-align: left;
}

.manager-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manager-info p {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .manager-profile {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .manager-photo {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .manager-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .manager-profile {
        padding: 1rem;
    }
    
    .manager-photo {
        width: 100px;
        height: 100px;
    }
    
    .manager-info h3 {
        font-size: 1.2rem;
    }
    
    .manager-info p {
        font-size: 1rem;
    }
}

/* Liste des caractéristiques dans le hero */
.hero-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.hero-features li {
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Grille des objectifs */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.objective-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.objective-item:hover {
    transform: translateY(-5px);
}

.objective-item i {
    font-size: 2.5rem;
    color: var(--orange-dark);
    margin-bottom: 1rem;
}

.objective-item h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.objective-item p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-features {
        margin: 1.5rem 0;
    }

    .hero-features li {
        font-size: 1rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .objective-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-features li {
        font-size: 0.9rem;
    }

    .objective-item {
        padding: 1.2rem;
    }

    .objective-item i {
        font-size: 2rem;
    }

    .objective-item h3 {
        font-size: 1.2rem;
    }
}

/* Ajustements responsifs supplémentaires */
@media (max-width: 768px) {
    .formation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .formation-card {
        padding: 1.5rem;
    }

    .formation-card ul {
        padding-left: 1rem;
    }

    .formation-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-image-top {
        max-width: 200px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 480px) {
    .formation-card {
        padding: 1.2rem;
    }

    .formation-card h3 {
        font-size: 1.2rem;
    }

    .formation-card p,
    .formation-card ul li {
        font-size: 0.9rem;
    }

    .formation-icon {
        font-size: 1.8rem;
    }

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

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

    .hero-image-top {
        max-width: 150px;
    }

    .smaller-title {
        font-size: 1.8rem;
    }
}

/* Optimisations pour les écrans tactiles */
@media (hover: none) {
    .formation-card:hover,
    .objective-item:hover {
        transform: none;
    }

    .nav-link,
    .btn {
        padding: 0.8rem 1.2rem;
    }
}

/* Optimisations de performance */
.video-background video {
    will-change: transform;
}

.fade-in,
.reveal-text {
    will-change: opacity, transform;
}

/* Accordion styles */
.programme-accordion {
    margin: 2rem 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background-color: var(--white);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid var(--orange-dark);
}

.accordion-header:hover {
    background-color: rgba(255, 107, 53, 0.05);
}

.accordion-header.active {
    background-color: rgba(255, 107, 53, 0.1);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--orange-dark);
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: var(--white);
    padding: 0 1.5rem;
    will-change: max-height;
}

.accordion-content.active {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    height: auto;
}

.accordion-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .accordion-content.active {
        padding: 1.2rem;
    }
    
    .accordion-content li {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .accordion-header {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-content.active {
        padding: 1rem;
    }
    
    .accordion-content li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
}
