/* Variables CSS personnalisées pour éviter les patterns d'IA */
:root {
    --emerald-pitch: #2d7a3e;
    --grass-green: #4caf50;
    --sunset-gold: #ffa726;
    --deep-navy: #1a237e;
    --warm-white: #fafafa;
    --charcoal-text: #2c2c2c;
    --silver-border: #e0e0e0;
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    color: var(--charcoal-text);
    font-size: 1.05rem;
    background: var(--warm-white);
    overflow-x: hidden;
}

/* Headers avec Montserrat et tailles non-standard */
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Montserrat", sans-serif;
    color: var(--deep-navy);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

/* Container avec largeurs non-standards */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Navigation principale avec design unique */
.primary-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--silver-border);
    transition: all 0.4s var(--transition-smooth);
}

.navigation-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-identity img {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--deep-navy);
    position: relative;
    transition: all 0.35s ease;
    border-radius: 2px;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--deep-navy);
    transition: all 0.35s ease;
    border-radius: 2px;
}

.hamburger:before { top: -9px; }
.hamburger:after { top: 9px; }

.navigation-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-link {
    color: var(--charcoal-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 11px 0;
    position: relative;
    transition: color 0.3s var(--transition-smooth);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-pitch);
    transition: width 0.3s var(--transition-smooth);
}

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

/* Navigation mobile avec design glassmorphique */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        transition: all 0.4s var(--transition-smooth);
        padding-top: 85px;
        z-index: 1;
    }

    .navigation-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 15px 25px;
        font-size: 18px;
        color: var(--deep-navy);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero section avec design immersif */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(26, 35, 126, 0.1) 0%, 
        rgba(45, 122, 62, 0.1) 50%,
        rgba(255, 167, 38, 0.1) 100%);
    z-index: 0;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.slider-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.85) 0%, 
        rgba(45, 122, 62, 0.75) 50%,
        rgba(26, 35, 126, 0.9) 100%);
    z-index: 1;
}

.overlay-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        transparent 0%, 
        rgba(0, 0, 0, 0.2) 100%);
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 25px;
    max-width: 900px;
    margin: 0 auto;
}

.subtitle-text {
    font-family: "Dancing Script", cursive;
    font-size: 38px;
    color: var(--sunset-gold);
    display: block;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease-out;
}

.slider-content h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 32px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 1.4s ease-out 0.3s both;
}

.slider-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 45px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.6s ease-out 0.6s both;
}

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

/* Boutons avec design moderne */
.btn {
    display: inline-block;
    padding: 15px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    margin: 0 8px;
}

.btn-primary {
    background: var(--emerald-pitch);
    color: white;
    border-color: var(--emerald-pitch);
}

.btn-primary:hover {
    background: transparent;
    color: var(--emerald-pitch);
    border-color: var(--emerald-pitch);
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(45, 122, 62, 0.3);
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--deep-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(0px);
}

.btn-main {
    background: var(--sunset-gold);
    color: var(--deep-navy);
    border-color: var(--sunset-gold);
}

.btn-main:hover {
    background: transparent;
    color: var(--sunset-gold);
    border-color: var(--sunset-gold);
    transform: translateY(-2px);
}

/* Grid responsive avec breakpoints personnalisés */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.67%;
    max-width: 66.67%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
}

.col-lg-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
    padding: 0 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Section d'entraînement avec espacement unique */
.training-section {
    padding: 95px 0;
    background: white;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-soft);
    transition: transform 0.4s var(--transition-smooth);
}

.img-responsive:hover {
    transform: scale(1.03);
}

.font-weight-heavy {
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 18px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--emerald-pitch);
    margin-bottom: 22px;
    font-weight: 500;
}

/* Section programmes avec cards uniques */
.programs-area {
    padding: 85px 0;
}

.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.block-heading-1 h2 {
    color: var(--deep-navy);
    margin-bottom: 25px;
}

.block-heading-1 p {
    color: #666;
    font-size: 1.1rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 45px;
}

.program-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: all 0.35s var(--transition-smooth);
    border: 1px solid var(--silver-border);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(45, 122, 62, 0.15);
    border-color: var(--emerald-pitch);
}

.program-header h3 {
    color: var(--emerald-pitch);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Section excellence avec layout adaptatif */
.excellence-training {
    padding: 85px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.excellence-training::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45, 122, 62, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.main-title {
    font-size: 2.6rem;
    margin-bottom: 55px;
    color: var(--deep-navy);
    text-align: center;
    position: relative;
    z-index: 2;
}

.main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-pitch), var(--sunset-gold));
    margin: 18px auto 0;
    border-radius: 2px;
}

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

.text-block {
    padding-right: 25px;
}

.text-block p {
    margin-bottom: 28px;
    color: #4a5568;
    font-size: 1.08rem;
    line-height: 1.85;
    text-align: justify;
}

.text-block p:first-of-type {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal-text);
}

.embed-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(45, 122, 62, 0.15);
    background: linear-gradient(45deg, var(--emerald-pitch), var(--grass-green));
}

.embed-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 167, 38, 0.1) 100%);
    z-index: 1;
}

.embed-container-21by9 {
    padding-top: 56.25%;
}

.embed-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.embed-item:hover {
    transform: scale(1.03) rotate(1deg);
}

/* Section cours avec carousel personnalisé */
.courses-showcase {
    padding: 90px 0;
    background: white;
}

.section-title-underline span {
    border-bottom: 4px solid var(--emerald-pitch);
    padding-bottom: 8px;
    color: var(--deep-navy);
}

.courses-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 45px;
}

.course-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-soft);
    transition: all 0.4s var(--transition-smooth);
}

.course-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.2);
}

.course-thumbnail {
    position: relative;
    overflow: hidden;
}

.course-price {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--sunset-gold);
    color: var(--deep-navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.course-category {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--emerald-pitch), var(--grass-green));
    padding: 15px;
}

.course-category h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.course-content {
    padding: 32px 28px;
    text-align: center;
}

.course-content h2 {
    margin-bottom: 18px;
    color: var(--deep-navy);
    font-size: 1.4rem;
}

.rating {
    margin-bottom: 20px;
}

.star-rating {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--silver-border);
    border-radius: 50%;
    margin: 0 3px;
}

.star-rating.active {
    background: var(--sunset-gold);
}

/* Témoignages avec design moderne */
.testimonials-area {
    padding: 85px 0;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px var(--shadow-soft);
    height: 100%;
    transition: transform 0.3s var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-weight: 600;
    color: var(--deep-navy);
}

/* Section de texte simple */
.text-content {
    padding: 75px 0;
    background: var(--warm-white);
}

.text-black {
    color: var(--deep-navy) !important;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--emerald-pitch);
    margin-bottom: 28px;
}

/* Formulaire de contact avec glassmorphisme */
.contact-form-area {
    position: relative;
    background: var(--deep-navy);
    overflow: hidden;
}

.overlay-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(45, 122, 62, 0.3) 0%, 
        rgba(26, 35, 126, 0.8) 100%);
}

#academy-map {
    height: 450px;
    width: 100%;
    background: linear-gradient(45deg, var(--emerald-pitch), var(--grass-green));
    border-radius: 15px;
    margin: 20px;
}

.appointment-form {
    padding: 65px 45px;
    position: relative;
    z-index: 2;
}

.appointment-form h3 {
    color: white;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    transition: all 0.3s var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--sunset-gold);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer avec design moderne et professionnel */
.site-footer {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0f1419 100%);
    padding: 95px 0 45px;
    color: white;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--emerald-pitch) 0%, 
        var(--sunset-gold) 50%, 
        var(--emerald-pitch) 100%);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 122, 62, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-heading {
    color: white;
    margin-bottom: 32px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--sunset-gold);
    margin-top: 12px;
    border-radius: 2px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 18px;
}

.site-footer strong {
    color: var(--sunset-gold);
    font-weight: 600;
}

.footer-subscribe-form {
    margin-top: 25px;
}

.footer-subscribe-form .input-group {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subscribe-form .form-control {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: transparent;
    color: white;
    font-size: 15px;
    outline: none;
}

.footer-subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-subscribe-form .btn {
    border: none;
    background: linear-gradient(135deg, var(--emerald-pitch), var(--grass-green));
    padding: 18px 28px;
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
}

.footer-subscribe-form .btn:hover {
    background: linear-gradient(135deg, var(--grass-green), var(--emerald-pitch));
    transform: translateX(-2px);
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.list-unstyled li {
    margin-bottom: 15px;
}

.list-unstyled a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

.list-unstyled a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--sunset-gold);
    transition: width 0.3s ease;
}

.list-unstyled a:hover {
    color: white;
    transform: translateX(5px);
}

.list-unstyled a:hover::before {
    width: 20px;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    margin-top: 50px;
    padding-top: 35px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Classes utilitaires */
.mb-3 { margin-bottom: 1.2rem; }
.mb-4 { margin-bottom: 1.8rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.pt-5 { padding-top: 3rem; }
.pb-4 { padding-bottom: 1.8rem; }
.ml-auto { margin-left: auto; }
.text-center { text-align: center; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.d-flex { display: flex; }
.no-gutters { margin: 0; }
.no-gutters > [class*="col-"] { padding: 0; }

/* Responsive avec breakpoints non-standards */
@media (max-width: 1280px) {
    .container { max-width: 1140px; }
    .programs-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 890px) {
    .hero-carousel { height: 85vh; min-height: 600px; }
    .slider-content h1 { font-size: 2.8rem; }
    .subtitle-text { font-size: 28px; }
    .slider-content p { font-size: 1.1rem; max-width: 100%; }
    .content-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .text-block { padding-right: 0; }
    .courses-slider { grid-template-columns: 1fr; }
    .col-md-6, .col-md-8 { flex: 0 0 100%; max-width: 100%; }
    .training-section { padding: 65px 0; }
    .programs-area { padding: 65px 0; }
    .excellence-training { padding: 65px 0; }
    .site-footer { padding: 65px 0 35px; }
    
    /* Contact page responsive */
    .contact-hero-section { padding: 120px 0 60px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .main-contact-section { padding: 65px 0; }
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-info-panel { position: static; }
    .contact-form-panel { padding: 35px; }
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .academy-map-section { padding: 60px 0; }
    .stylized-map { height: 300px; }
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-carousel { height: 80vh; min-height: 550px; }
    .slider-content h1 { font-size: 2.2rem; }
    .subtitle-text { font-size: 24px; }
    .slider-content p { font-size: 1rem; padding: 0 15px; }
    .btn { padding: 12px 20px; margin: 5px; font-size: 14px; }
    .main-title { font-size: 2rem; }
    .main-title::after { width: 60px; }
    .content-wrapper { gap: 30px; }
    .text-block p { font-size: 1rem; text-align: left; }
    .embed-container { border-radius: 15px; }
    .col-lg-4, .col-lg-7 { flex: 0 0 100%; max-width: 100%; }
    .appointment-form { padding: 35px 25px; }
    .site-footer { padding: 55px 0 25px; }
    .footer-subscribe-form .input-group { flex-direction: column; }
    .footer-subscribe-form .form-control { margin-bottom: 10px; border-radius: 8px; }
    .footer-subscribe-form .btn { border-radius: 8px; width: 100%; }
    
    /* Contact page mobile */
    .contact-hero-section { padding: 100px 0 50px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; padding: 0 15px; }
    .main-contact-section { padding: 50px 0; }
    .contact-layout { gap: 35px; }
    .info-card { padding: 25px; }
    .contact-form-panel { padding: 25px; border-radius: 20px; }
    .form-header h2 { font-size: 1.8rem; }
    .form-input, .form-select, .form-textarea { padding: 15px; font-size: 14px; }
    .submit-button { padding: 15px 30px; font-size: 14px; min-width: 240px; }
    .academy-map-section { padding: 50px 0; }
    .stylized-map { height: 250px; }
    .map-overlay { padding: 25px; max-width: 300px; }
    
    /* Thank you page mobile */
    .thankyou-hero-section { padding: 100px 0 70px; }
    .thankyou-title { font-size: 2.2rem; }
    .thankyou-subtitle { font-size: 1rem; padding: 0 15px; }
    .next-steps { padding: 25px; margin-bottom: 30px; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .academy-summary { padding: 60px 0; }
    .summary-content h2 { font-size: 2rem; }
    .benefits-grid { grid-template-columns: 1fr; gap: 25px; }
    .benefit-card { padding: 25px; }
}

/* Animations pour éviter les patterns d'IA */
.fade-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.program-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.program-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Styles spécifiques pour la page Contact */

/* Hero section contact */
.contact-hero-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0f1419 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45, 122, 62, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-decoration {
    position: relative;
    margin-top: 35px;
}

.decoration-circle {
    width: 12px;
    height: 12px;
    background: var(--sunset-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald-pitch), transparent);
    margin: 8px auto 0;
}

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

/* Section contact principale */
.main-contact-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}

/* Panel d'informations */
.contact-info-panel {
    position: sticky;
    top: 120px;
}

.info-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
    border: 1px solid #f0f2f5;
    transition: all 0.3s var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.12);
    border-color: var(--emerald-pitch);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--emerald-pitch), var(--grass-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.info-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background: var(--sunset-gold);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

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

.icon-football, .icon-location, .icon-phone {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.icon-football::before {
    content: '⚽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.icon-location::before {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.icon-phone::before {
    content: '📞';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.info-card h3 {
    color: var(--deep-navy);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.academy-features {
    background: linear-gradient(135deg, var(--emerald-pitch), var(--grass-green));
    padding: 35px;
    border-radius: 18px;
    color: white;
    margin-top: 25px;
}

.academy-features h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sunset-gold);
    font-weight: bold;
}

/* Panel formulaire */
.contact-form-panel {
    background: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f2f5;
    position: relative;
    overflow: hidden;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--emerald-pitch), var(--sunset-gold), var(--emerald-pitch));
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--deep-navy);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Formulaire */
.academy-application-form {
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.form-group {
    position: relative;
}

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

.form-label {
    display: block;
    color: var(--deep-navy);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: var(--charcoal-text);
    background: #fafbfc;
    transition: all 0.3s var(--transition-smooth);
    outline: none;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--emerald-pitch);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-select {
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    appearance: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.input-decoration, .select-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-pitch), var(--sunset-gold));
    transition: width 0.3s var(--transition-smooth);
    border-radius: 1px;
}

.form-input:focus + .input-decoration,
.form-select:focus + .select-decoration,
.form-textarea:focus + .input-decoration {
    width: 100%;
}

/* Actions du formulaire */
.form-actions {
    text-align: center;
}

.submit-button {
    background: linear-gradient(135deg, var(--emerald-pitch), var(--grass-green));
    color: white;
    border: none;
    padding: 20px 45px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 280px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45, 122, 62, 0.4);
    background: linear-gradient(135deg, var(--grass-green), var(--emerald-pitch));
}

.submit-button:active {
    transform: translateY(-1px);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-decoration {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1;
}

.button-circle {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

.form-note {
    margin-top: 25px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Section carte */
.academy-map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h3 {
    color: var(--deep-navy);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.academy-map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.stylized-map {
    height: 400px;
    background: linear-gradient(45deg, var(--emerald-pitch), var(--grass-green));
    position: relative;
    overflow: hidden;
}

.stylized-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 350px;
}

.map-marker {
    position: relative;
}

.marker-icon {
    width: 40px;
    height: 40px;
    background: var(--sunset-gold);
    border-radius: 50% 50% 50% 0;
    margin: 0 auto 20px;
    position: relative;
    transform: rotate(-45deg);
}

.marker-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.marker-info h4 {
    color: var(--deep-navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.marker-info p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Navigation active state */
.nav-link.active {
    color: var(--emerald-pitch);
    font-weight: 600;
}

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

/* Styles pour la page Thank You */
.thankyou-hero-section {
    background: linear-gradient(135deg, var(--emerald-pitch) 0%, var(--grass-green) 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.thankyou-hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.thankyou-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.thankyou-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.success-animation {
    margin-bottom: 40px;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: zoomIn 0.6s ease-out;
}

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

.checkmark {
    width: 35px;
    height: 35px;
    position: relative;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 18px;
    width: 8px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    animation: checkAnimation 0.4s ease-in-out 0.2s both;
}

@keyframes checkAnimation {
    0% { opacity: 0; transform: rotate(45deg) scale(0); }
    100% { opacity: 1; transform: rotate(45deg) scale(1); }
}

.thankyou-title {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thankyou-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.next-steps h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--sunset-gold);
    color: var(--deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
}

.step-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.action-buttons {
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.action-buttons .btn {
    margin: 0 10px;
}

/* Section résumé académie */
.academy-summary {
    padding: 90px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

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

.summary-content h2 {
    color: var(--deep-navy);
    font-size: 2.4rem;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.summary-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-pitch), var(--sunset-gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.3s var(--transition-smooth);
    border: 1px solid #f0f2f5;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 122, 62, 0.15);
    border-color: var(--emerald-pitch);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    color: var(--deep-navy);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

.sa {
    margin-left: 35%;
    margin-top: 15%;
}