/*
* {
    outline: 1px solid red; 
}*/

body {
    overflow-x: hidden;
}

.contact-presse-wrapper {
    max-width: 100%;
    overflow: hidden;
}:root {
    --text: #1a1a1a;
    --white: #ffffff;
    --primary: #000000;
    --blue: #00C2FF;
    --violet: #7B61FF;
    --secondary: #0096C7;
    --accent: #FFB703;
    --bg: #f5f5f5;
    --deep-blue: #000000;
    --gradient: linear-gradient(135deg, var(--violet), var(--blue));
    --gradient-blue: linear-gradient(135deg, var(--blue), var(--primary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--bg);
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--violet);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}


.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    color: var(--text);
    padding: 0.7rem 1.5rem;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.dropdown-menu li a::after {
    display: none;
}

.hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #000000;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #000000;
    color: var(--white);
    padding: 2rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    scroll-behavior: smooth;
    z-index: 200;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background-color: transparent;
    border: 2px solid transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: var(--violet);
    border-width: 1px;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-sidebar:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.sidebar-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.sidebar-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-toggle i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle i {
    transform: rotate(180deg);
}

.accordion-content {
    list-style: none;
    padding-left: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content li a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.banner {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.banner img {
    width: 100vw;
    height: 100%;
    margin-top: -95px;
    object-fit: contain;
    object-position: center;
    background: black;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #f5f5f5, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.banner-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .banner {
        height: 60vh;
        min-height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.6rem 1rem;
    }

    .navbar-logo {
        height: 32px;
    }

    .sidebar {
        width: 280px;
        padding: 1.5rem;
    }

    .banner {
        height: 50vh;
        min-height: 350px;
    }

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

.content-wrapper {
    min-height: calc(100vh - 73px - 100px);
}

.banner-buttons {
    display: flex;
    margin-top: 35%;
    justify-content: end;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #000000;
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: #000000;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .cta-competition .btn-outliner {
        border-color: var(--white);
        color: var(--white);
    }

    .cta-competition .btn-outliner:hover {
        background: var(--white);
        color: #000000;
    }

    .btn-outline {
        background: var(--white);
        color: #000000;
    }

    .btn-outline:hover {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
        transform: translateY(-2px);
    }

    .btn-primary {
        background: transparent;
        color: var(--text);
        border-color: var(--text);
    }

    .btn-primary:hover {
        background: var(--white);
        color: #000000;
        border-color: var(--violet);
        transform: translateY(-2px);
    }
}

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

.home-page .btn-primary:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}


.home-page .section-title::after {
    background: var(--accent);
}




.presentation {
    padding: 1rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.presentation-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.5;
    pointer-events: none;
}

.presentation-bg-svg img {
    width: 100%;
    height: auto;
    display: block;
}

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

.section-title {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

.presentation-content {
    max-width: 900px;
    margin: 0 auto;
}

.presentation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--blue);
    font-weight: 600;
    font-size: 1.2rem;
}

.highlight:hover {
    color: var(--secondary);
    transition: ease-in;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    border-left: 5px solid var(--violet);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.highlight-box i {
    font-size: 2.5rem;
    background: -webkit-linear-gradient(var(--accent), #fff200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-box p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: -webkit-linear-gradient(var(--deep-blue), #a08aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

.organisateurs {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.organisateurs .section-title {
    margin-left: 8rem;
}

.organisateurs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.organisateurs-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.organisateurs .logo-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.organisateurs .logo-item img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
}

.organisateurs .logo-item:hover img {
    filter: grayscale(0%);
}

.organisateurs .logo-item h3 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
}

.organisateurs-text {
    text-align: center;
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
}

.organisateurs-text .highlight {
    color: var(--accent);
    font-weight: 600;
}

.egide {
    padding: 4rem 0;
    background: var(--white);
}

.egide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.egide-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.egide .logo-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.egide .logo-item.large img {
    width: 220px;
    height: auto;
}

.egide .logo-item img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.egide .logo-item:hover img {
    opacity: 1;
}

.egide .logo-item h3 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
}

.egide-text {
    text-align: center;
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
}

.egide-text .highlight {
    color: var(--blue);
    font-weight: 600;
}

.sponsors-cta {
    padding: 5rem 0;
    /*background: linear-gradient(135deg, #0096C7, #fff200);*/
    background: var(--deep-blue);
    margin-bottom: 20px;
    color: var(--white);
}

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

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: var(--white);
    color: #000000;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-large i {
    margin-right: 0.8rem;
}

.btn-large:hover {
    background: #000000;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.footer {
    background: #000000;
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-group h4 {
    color: var(--blue);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.footer-logos-grid img {
    height: 40px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-logos-grid img:hover {
    opacity: 0.8;
}

.placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-info {
    text-align: center;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-info strong {
    color: var(--blue);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .footer-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .organisateurs .section-title {
        margin-left: 1rem;
    }

    .organisateurs-logos,
    .egide-logos {
        gap: 2rem;
    }

    .organisateurs .logo-item img,
    .egide .logo-item img {
        width: 140px;
    }

    .egide .logo-item.large img {
        width: 160px;
    }

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

    .footer-logos {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logos-grid {
        justify-content: center;
    }

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

@media screen and (max-width: 480px) {
    .organisateurs .section-title {
        margin-left: 1rem;
    }

    .organisateurs-logos,
    .egide-logos {
        flex-direction: column;
    }

    .organisateurs .logo-item img,
    .egide .logo-item img {
        width: 160px;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .footer-social {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.media-hero {
    margin-top: 73px;
    padding: 5rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
}

.media-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.media-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.media-ressources {
    padding: 5rem 0;
    background: var(--bg);
}

.ressources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ressource-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ressource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ressource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ressource-icon i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ressource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.ressource-card p {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-ressource {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #000000;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ressource:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-presse {
    padding: 5rem 0;
    background: var(--white);
}

.contact-presse-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-presse-map {
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.map-placeholder {
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    color: var(--text);
    opacity: 0.7;
}

.galerie-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.galerie-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.galerie-placeholder {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.org-info {
    margin: 2rem 0;
}

.org-info h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-presse-info {
    padding-right: 2rem;
}

.info-item i {
    width: 24px;
    font-size: 1.2rem;
    color: var(--violet);
    margin-top: 3px;
}

.info-item strong {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.info-item p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.5;
}

.info-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--violet);
}

.social-detailed {
    margin-top: 2rem;
}

.social-detailed h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

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

.social-detailed-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.social-detailed-item i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.social-detailed-item div {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.social-detailed-item strong {
    font-size: 0.9rem;
    color: #000000;
}

.social-detailed-item span {
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.8;
}

.social-detailed-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-detailed-item.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.social-detailed-item.whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.2);
}

.social-detailed-item.facebook {
    background-color: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.2);
}

.social-detailed-item.instagram {
    background: radial-gradient(circle at 30% 30%, rgba(228, 64, 95, 0.1), rgba(64, 93, 230, 0.1));
    border-color: rgba(228, 64, 95, 0.2);
}

.social-detailed-item.x {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.social-detailed-item.linkedin {
    background-color: rgba(0, 119, 181, 0.1);
    border-color: rgba(0, 119, 181, 0.2);
}

@media screen and (max-width: 992px) {
    .ressources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-presse-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .media-title {
        font-size: 2.2rem;
    }

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

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

@media screen and (max-width: 480px) {
    .media-hero {
        padding: 3rem 0;
    }

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

    .ressource-card {
        padding: 1.5rem;
    }
}

.media-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.media-contain {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.programme-hero {
    margin-top: 73px;
    padding: 5rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programme-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.programme-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-badge i {
    color: var(--accent);
}

.programme-timeline {
    padding: 5rem 0;
    background: var(--bg);
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header .section-title {
    margin: 0 auto 2rem;
    display: inline-block;
    text-align: center;
}

.timeline-intro {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #000000;
    opacity: 0.2;
}

.timeline-block {
    margin-bottom: 3rem;
}

.timeline-period {
    margin-bottom: 2rem;
    padding-left: 180px;
}

.period-badge {
    background: #000000;
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.timeline-time {
    width: 160px;
    text-align: right;
    padding-right: 2rem;
    font-weight: 600;
}

.time {
    display: block;
    font-size: 1.2rem;
    color: var(--violet);
    font-weight: 700;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

.timeline-content {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-left: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: -webkit-linear-gradient(#fff700, var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-details {
    flex: 1;
}

.timeline-details h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-details p {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.location {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--blue);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.location i {
    margin-right: 0.3rem;
}

.timeline-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--accent);
}

.timeline-note i {
    font-size: 1.5rem;
    color: var(--accent);
}

.timeline-note p {
    color: var(--text);
    font-size: 0.95rem;
}

.infos-pratiques {
    padding: 5rem 0;
    background: var(--white);
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    padding: 2rem;
    background: var(--bg);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.info-card h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-address {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.info-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--violet);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--blue);
}

.programme-download {
    padding: 3rem 0 5rem;
    background: var(--bg);
}

.download-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon i {
    font-size: 3rem;
    color: var(--accent);
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.download-content p {
    color: var(--text);
    opacity: 0.8;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00C2FF, #0066c6);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 992px) {
    .infos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 100px;
    }

    .timeline-period {
        padding-left: 100px;
    }

    .timeline-time {
        width: 80px;
    }
}

@media screen and (max-width: 768px) {
    .programme-hero-title {
        font-size: 2.2rem;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-time {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .timeline-period {
        padding-left: 0;
    }

    .timeline-content {
        margin-left: 0;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .infos-grid {
        grid-template-columns: 1fr;
    }

    .programme-hero-title {
        font-size: 1.8rem;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }
}

.hero-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.hero-bg-svg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programme-hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.ecoles-hero {
    margin-top: 73px;
    padding: 4rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
}

.ecoles-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ecoles-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.ecoles-filtres {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filtres-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filtre-search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.filtre-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
    opacity: 0.5;
}

.filtre-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.filtre-search input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.filtre-ville select {
    padding: 1rem 2rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtre-ville select:focus {
    outline: none;
    border-color: #000000;
}

.ecoles-grid-section {
    padding: 4rem 0;
    background: var(--bg);
}

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

.ecole-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.ecole-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ecole-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

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

.ecole-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    backdrop-filter: blur(5px);
}

.ecole-info {
    padding: 1.5rem;
}

.ecole-nom {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.ecole-ville,
.ecole-coach {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ecole-ville i,
.ecole-coach i {
    color: var(--violet);
    width: 16px;
}

.ecole-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 15px;
    margin-top: 2rem;
}

.no-results i {
    font-size: 3rem;
    color: #000000;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.no-results h3 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text);
    opacity: 0.7;
}

.ecoles-map {
    padding: 4rem 0;
    background: var(--white);
}

.ecoles-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: var(--white);
    text-align: center;
}

.cta-ecoles h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-ecoles p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-ecoles .btn {
    background: var(--white);
    color: #000000;
}

.cta-ecoles .btn:hover {
    background: #000000;
    color: var(--white);
}

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

@media screen and (max-width: 992px) {
    .ecoles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .ecoles-hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

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

    .filtres-wrapper {
        flex-direction: column;
    }

    .filtre-search {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .ecoles-grid {
        grid-template-columns: 1fr;
    }

    .ecoles-hero-title {
        font-size: 1.8rem;
    }

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

.galerie-contain {
    margin-left: 7%;
}

.apropos-hero {
    margin-top: 73px;
    padding: 5rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
}

.apropos-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.apropos-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.section-mondial {
    padding: 5rem 0;
    background: var(--white);
}

.mondial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mondial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.mondial-text .highlight {
    color: var(--violet);
    font-weight: 600;
}

.mondial-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg);
    border-radius: 20px;
}

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

.mondial-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mondial-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
}

.mondial-image {
    position: relative;
    height: 400px;
    width: 55vw;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mondial-image svg {
    width: 90%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    font-size: 0.9rem;
    text-align: center;
}

.section-togo {
    padding: 5rem 0;
    background: var(--bg);
}

.togo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.togo-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.togo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #000000;
}

.image-overlay i {
    color: var(--accent);
}

.togo-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.togo-text .highlight {
    color: var(--violet);
    font-weight: 600;
}

.togo-list {
    list-style: none;
    margin: 2rem 0;
}

.togo-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.togo-list li i {
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.togo-list li strong {
    color: #000000;
}

.section-organisateurs {
    padding: 5rem 0;
    background: var(--white);
}

.organisateurs-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.organisateurs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.org-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.org-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.org-name {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.org-description {
    font-size: 0.9rem;
    color: var(--violet);
    margin-bottom: 1rem;
    font-weight: 500;
}

.org-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.org-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.org-tags .tag {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.section-chiffres {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: var(--white);
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.chiffre-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chiffre-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.chiffre {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.chiffre-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media screen and (max-width: 992px) {
    .mondial-wrapper,
    .togo-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mondial-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .mondial-image {
        height: 350px;
        width: 85vw;
        margin-left: 5%;
        margin-right: auto;
    }

    .mondial-image svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media screen and (max-width: 768px) {
    .mondial-image {
        height: 350px;
        width: 90vw;
        margin-left: 5%;
        margin-right: auto;
    }

    .mondial-image svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

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

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

    .mondial-stats {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .mondial-image {
        height: 250px;
        width: 95vw;
        margin-left: -1%;
        margin-right: auto;
    }

    .mondial-image svg {
        zoom: 0.6;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .apropos-hero-title {
        font-size: 1.8rem;
    }

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

    .togo-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.media-title {
    animation: fadeInUp 1s ease;
}

.media-subtitle {
    animation: fadeInUp 1s ease 0.2s both;
}

.ecoles-hero-title {
    animation: fadeInUp 1s ease;
}

.ecoles-hero-subtitle {
    animation: fadeInUp 1s ease 0.2s both;
}

.competition-hero {
    margin-top: 73px;
    padding: 5rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
}

.competition-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.competition-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.section-theme {
    padding: 5rem 0;
    background: var(--white);
}

.theme-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.theme-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border-radius: 15px;
    border-left: 5px solid var(--accent);
}

.theme-highlight i {
    font-size: 2.5rem;
    color: var(--accent);
}

.theme-highlight h3 {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 600;
}

.theme-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.theme-text .highlight {
    color: var(--violet);
    font-weight: 600;
}

.theme-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.theme-tags .tag {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.theme-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.theme-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.section-etapes {
    padding: 5rem 0;
    background: var(--bg);
}

.etapes-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 4rem;
}

.etapes-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.etapes-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #000000;
    opacity: 0.2;
    border-radius: 3px;
}

.etape-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.etape-number {
    width: 70px;
    height: 70px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.etape-content {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.etape-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.etape-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.etape-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.etape-content h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.etape-content p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
}

.section-categories {
    padding: 5rem 0;
    background: var(--white);
}

.categories-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.categorie-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.categorie-card.junior {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.05), rgba(255, 183, 3, 0.02));
    border: 2px solid var(--accent);
}

.categorie-card.senior {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.05), rgba(0, 198, 255, 0.02));
    border: 2px solid var(--violet);
}

.categorie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.categorie-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.categorie-card.junior .categorie-badge {
    color: var(--accent);
}

.categorie-card.senior .categorie-badge {
    color: var(--violet);
}

.categorie-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

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

.categorie-card.junior .categorie-icon i {
    color: var(--accent);
}

.categorie-card.senior .categorie-icon i {
    color: var(--violet);
}

.categorie-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.categorie-card.junior h3 {
    color: var(--accent);
}

.categorie-card.senior h3 {
    color: var(--violet);
}

.categorie-age {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}

.categorie-features {
    list-style: none;
    text-align: left;
}

.categorie-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.categorie-features li i {
    color: #000000;
}

.section-prix {
    padding: 5rem 0;
    background: var(--bg);
}

.prix-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.prix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.prix-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.prix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prix-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.prix-card h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prix-card p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
}

.prix-callout {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.prix-callout i {
    font-size: 2rem;
    color: var(--accent);
}

.prix-callout p {
    font-size: 1.1rem;
}

.competition-cta {
    padding: 5rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
}

.cta-competition h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-competition p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-competition .btn-primary {
    background: var(--white);
    color: #000000;
}

.cta-competition .btn-primary:hover {
    background: var(--violet);
    color: var(--white);
    border-color: var(--violet);
}

.cta-competition .btn-outliner {
    border-color: var(--white);
    color: var(--white);
}

.cta-competition .btn-outliner:hover {
    background: var(--white);
    color: #000000;
}

@media screen and (max-width: 992px) {
    .theme-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media screen and (max-width: 768px) {
    .competition-hero-title {
        font-size: 2.2rem;
    }

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

    .etapes-timeline::before {
        left: 25px;
    }

    .etape-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .etape-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .prix-callout {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
}

@media screen and (max-width: 480px) {
    .competition-hero-title {
        font-size: 1.8rem;
    }

    .theme-highlight {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

.partenaires-hero {
    margin-top: 73px;
    padding: 5rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
}

.partenaires-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.partenaires-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.section-organisateurs-logos {
    padding: 5rem 0;
    background: var(--white);
}

.organisateurs-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.organisateurs-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.org-logo-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.org-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.org-logo-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.org-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.org-logo-title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.org-logo-subtitle {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.5;
}

.section-partenaires {
    padding: 5rem 0;
    background: var(--bg);
}

.partenaires-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.partenaire-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.partenaire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partenaire-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partenaire-logo img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partenaire-card:hover .partenaire-logo img {
    opacity: 1;
}

.partenaire-card h3 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.partenaire-card p {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.partenaire-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--accent);
    color: #000000;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partenaires-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    color: #000000;
}

.partenaires-note i {
    color: var(--accent);
}

.section-sponsors {
    padding: 5rem 0;
    background: var(--white);
}

.sponsors-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.sponsors-table {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.sponsor-category {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-header {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
}

.sponsor-category.gold .category-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border-bottom: 3px solid gold;
}

.sponsor-category.silver .category-header {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), rgba(192, 192, 192, 0.02));
    border-bottom: 3px solid silver;
}

.sponsor-category.bronze .category-header {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.05), rgba(205, 127, 50, 0.02));
    border-bottom: 3px solid #cd7f32;
}

.category-badge {
    font-size: 1.3rem;
    font-weight: 700;
}

.sponsor-category.gold .category-badge {
    color: gold;
}

.sponsor-category.silver .category-badge {
    color: silver;
}

.sponsor-category.bronze .category-badge {
    color: #cd7f32;
}

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

.sponsor-category.gold .category-icon i {
    color: gold;
}

.sponsor-category.silver .category-icon i {
    color: silver;
}

.sponsor-category.bronze .category-icon i {
    color: #cd7f32;
}

.category-sponsors {
    padding: 1rem;
    background: var(--white);
}

.sponsor-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

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

.sponsor-item:hover {
    background: rgba(0, 0, 0, 0.01);
}

.sponsor-logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-placeholder i {
    font-size: 1.5rem;
    color: #000000;
    opacity: 0.5;
}

.sponsor-info {
    flex: 1;
}

.sponsor-info h4 {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.2rem;
}

.sponsor-info p {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

.sponsor-badge {
    padding: 0.3rem 1rem;
    background: var(--bg);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
}

.sponsors-cta-section {
    margin-top: 4rem;
}

.sponsors-cta-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.sponsors-cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.sponsors-cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.sponsors-cta-card .btn {
    background: var(--white);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
}

.sponsors-cta-card .btn:hover {
    background: #000000;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.section-merci {
    padding: 3rem 0;
    background: var(--bg);
}

.merci-message {
    text-align: center;
    padding: 2rem;
}

.merci-message i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.merci-message h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.merci-message p {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
}

@media screen and (max-width: 992px) {
    .organisateurs-logos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .partenaires-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .partenaires-hero-title {
        font-size: 2.2rem;
    }

    .sponsor-item {
        flex-direction: column;
        text-align: center;
    }

    .sponsor-badge {
        align-self: center;
    }

    .org-logo-wrapper {
        height: 150px;
    }
}

@media screen and (max-width: 480px) {
    .partenaires-hero-title {
        font-size: 1.8rem;
    }

    .org-logo-title {
        font-size: 1.2rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .sponsors-cta-card {
        padding: 2rem 1rem;
    }

    .sponsors-cta-card h3 {
        font-size: 1.4rem;
    }
}

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

.galerie-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: auto;
    cursor: pointer;
}

.galerie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.galerie-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerie-item:hover .galerie-overlay {
    opacity: 1;
}

.galerie-overlay i {
    color: var(--white);
    font-size: 2rem;
    background: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.galerie-item:hover .galerie-overlay i {
    transform: scale(1);
}

@media screen and (max-width: 992px) {
    .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .galerie-item {
        max-width: 100%;
    }
}

.contact-hero {
    margin-top: 73px;
    padding: 5rem 0;
    background: #000000;
    color: var(--white);
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.contact-section {
    padding: 5rem 0;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-formulaire {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.contact-formulaire .section-title::after {
    left: 0;
}

.subject-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.subject-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--bg);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #000000;
}

.subject-btn i {
    font-size: 1.2rem;
    color: var(--violet);
}

.subject-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #000000;
    transform: translateY(-2px);
}

.subject-btn.active {
    background: #000000;
    color: var(--white);
    border-color: #000000;
}

.subject-btn.active i {
    color: var(--white);
}

.contact-form {
    margin-top: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000000;
}

.required {
    color: var(--accent);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.input-icon.textarea-icon i {
    top: 1.2rem;
    transform: none;
}

.input-icon input,
.input-icon textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 2.8rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg);
}

.input-icon textarea {
    padding-top: 1rem;
    resize: vertical;
}

.input-icon input:focus,
.input-icon textarea:focus {
    outline: none;
    border-color: #000000;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.input-icon input:focus + i,
.input-icon textarea:focus + i {
    opacity: 1;
}

textarea::placeholder {
    color: #aaa;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.7;
    white-space: pre-wrap;
}

textarea:focus::placeholder {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.btn-submit-contact {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-infos {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-infos .section-title {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-infos .section-title::after {
    left: 0;
}

.contact-card {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1rem;
    color: #000000;
}

.contact-text h3 {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 0.2rem;
}

.contact-text p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.4;
    font-size: 0.85rem;
}

.contact-text a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #000000;
}

.contact-social {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-social h3 {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--bg);
    color: #000000;
    font-size: 1rem;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-icon.instagram:hover {
    background: #E4405F;
    color: white;
}

.social-icon.linkedin:hover {
    background: #0077B5;
    color: white;
}

.social-icon.x:hover {
    background: #000000;
    color: white;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-map {
    margin-top: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.map-container iframe {
    display: block;
}

.map-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

.map-caption i {
    color: #000000;
    margin-right: 0.3rem;
}

@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }

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

    .subject-btn {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-formulaire,
    .contact-infos {
        padding: 1.8rem;
    }

    .contact-infos {
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-formulaire,
    .contact-infos {
        padding: 1.5rem;
    }

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