/* --- Variables de Couleurs et Polices --- */
:root {
    --color-dark-blue: #1d2a4a;
    --color-gold: #d1b27a;
    --color-white: #ffffff;
    --color-background: #f8f9fa;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: #333;
}

/* --- Header / Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px; /* Ajustez la taille si nécessaire */
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

.btn-dark {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
}


/* --- Section Hero (principale) --- */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('asset/image-cdps-2-1024x680-1.webp'); /* Chemin vers votre image de fond */
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--color-white);
}

/* Superposition de couleur sur l'image de fond */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 42, 74, 0.6); /* Bleu foncé avec 60% d'opacité */
}

.hero-content {
    position: relative; /* Pour être au-dessus de la superposition */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    height: 70px; /* Logo un peu plus grand dans la section hero */
    margin-bottom: 1rem;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.divider {
    width: 150px;
    height: 1px;
    background-color: var(--color-white);
    border: none;
    margin: 1.5rem 0;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Grande taille pour l'impact */
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 2px solid var(--color-white);
    border-radius: 50px;
    padding: 12px 15px 12px 30px;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-white);
    color: var(--color-dark-blue);
}

.cta-button:hover .arrow-icon {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
}

.arrow-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
    border-radius: 50%;
    margin-left: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- Icône Flottante WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background-color: #ff3b30;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid var(--color-white);
}

/* --- Styles pour le bouton Hamburger (caché par défaut) --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001; /* Doit être au-dessus du reste */
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-dark-blue);
    transition: all 0.3s ease-in-out;
}


/* --- Media Query pour tablettes et mobiles (breakpoint à 1024px) --- */
@media (max-width: 1024px) {
    /* Afficher le bouton hamburger */
    .hamburger {
        display: block;
    }

    /* Animer le hamburger en croix (X) quand il est actif */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Styles pour le menu mobile (caché par défaut) */
    .navigation-wrapper {
        position: absolute;
        top: 82px; /* Hauteur du header */
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        
        /* Cacher le menu en le déplaçant en dehors de l'écran */
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    }

    /* Afficher le menu quand il est actif */
    .navigation-wrapper.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        width: 80%;
        align-items: center;
    }

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


/* --- Media Query pour les petits écrans (smartphones) --- */
@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Réduire la taille du titre principal */
        line-height: 1.3;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 12px 10px 25px;
    }

    .arrow-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem; /* Encore plus petit pour les très petits écrans */
    }

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

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* --- Section Formations --- */
.formations-section {
    padding: 100px 5%;
    background-color: var(--color-white);
}

.formations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem; /* Espace entre les deux colonnes */
    align-items: flex-start; /* Aligne le haut des colonnes */
}

/* Colonne de gauche */
.formations-intro {
    flex: 1; /* Prend l'espace disponible */
    min-width: 40%;
}

.formations-intro h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.formations-intro .intro-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-dark-blue);
    margin-bottom: 2rem;
}

.formations-intro .intro-text {
    font-family: var(--font-body);
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

/* Colonne de droite */
.formations-links {
    flex: 1; /* Prend l'espace disponible */
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Espace entre "Bachelor" et "Mastère" */
    margin-top: 1rem;
}

.formation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 2rem;
    transition: transform 0.3s ease;
}

.formation-item:hover {
    transform: translateX(10px); /* Léger décalage au survol */
}

.formation-item h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.arrow-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 300;
    transition: background-color 0.3s ease;
}

.formation-item:hover .arrow-circle {
    background-color: var(--color-dark-blue); /* Changement de couleur au survol */
}

/* --- RESPONSIVITÉ pour la section Formations --- */
@media (max-width: 992px) {
    .formations-container {
        flex-direction: column; /* Les colonnes se placent l'une sous l'autre */
        gap: 4rem; /* Espace entre l'intro et les liens sur mobile */
    }
}

@media (max-width: 576px) {
    .formations-section {
        padding: 60px 5%;
    }
    
    .formations-intro h2 {
        font-size: 2.5rem;
    }

    .formation-item h3 {
        font-size: 1.8rem;
    }

    .arrow-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* --- Section À Propos --- */
.about-section {
    background-color: var(--color-dark-blue); /* Couleur de fond pour toute la section */
}

.about-grid {
    display: flex;
    /* Supprime tout espace entre les éléments flex */
    gap: 0;
}

/* Colonne de gauche : Contenu */
.about-content {
    flex-basis: 40%; /* La colonne de texte prend 40% de la largeur */
    padding: 80px 60px;
    color: var(--color-white);
    
    /* Pour le motif de fond subtil */
    background-image: url('assets/network-pattern.png'); /* !! REMPLACEZ PAR VOTRE IMAGE DE MOTIF !! */
    background-size: cover;
    background-position: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px; /* Limite la largeur du texte pour une meilleure lisibilité */
}

.about-link {
    font-family: var(--font-heading);
    text-decoration: none;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.about-link:hover {
    opacity: 0.8;
}

/* Colonne de droite : Image */
.about-image {
    flex-basis: 60%; /* L'image prend les 60% restants */
    line-height: 0; /* Supprime l'espace sous l'image */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre l'espace sans se déformer */
}


/* --- RESPONSIVITÉ pour la section À Propos --- */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column; /* Empile les colonnes sur les écrans plus petits */
    }

    .about-content {
        /* L'ordre est changé pour que l'image apparaisse en premier sur mobile */
        order: 2; 
        padding: 60px 40px;
    }

    .about-image {
        order: 1;
        min-height: 300px; /* Donne une hauteur minimale à l'image sur mobile */
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* --- Section Société à mission --- */
.mission-section {
    padding: 100px 5%;
    background-color: var(--color-white);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem; /* Espace important entre les deux colonnes */
    align-items: center; /* Aligne verticalement les deux colonnes */
}

/* Colonne de gauche */
.mission-intro {
    flex: 1.2; /* Donne un peu plus de largeur à la colonne de texte */
}

.mission-intro h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.mission-intro p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-dark-blue);
    line-height: 1.7;
    max-width: 550px;
}

/* Colonne de droite */
.mission-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Espace entre chaque valeur */
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Espace entre le cercle et le texte */
}

.value-number {
    flex-shrink: 0; /* Empêche le cercle de se réduire */
    width: 55px;
    height: 55px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.value-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin: 0 0 0.25rem 0; /* Réinitialise la marge et ajoute un petit espace en bas */
}

.value-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-dark-blue);
}


/* --- RESPONSIVITÉ pour la section Mission --- */
@media (max-width: 992px) {
    .mission-container {
        flex-direction: column; /* Empile les colonnes */
        gap: 4rem;
        text-align: center; /* Centre le texte sur les petits écrans */
    }

    .mission-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .mission-values {
        align-items: flex-start; /* Aligne les éléments à gauche dans la colonne */
        width: 100%;
        max-width: 400px; /* Limite la largeur pour un meilleur affichage */
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 60px 5%;
    }

    .mission-intro h2 {
        font-size: 2.5rem;
    }
    
    .mission-intro p {
        font-size: 1rem;
    }

    .value-text h3 {
        font-size: 1.5rem;
    }

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

/* --- Section Communauté Mondiale --- */
.global-section {
    position: relative;
    padding: 100px 5% 0; /* Padding en haut, pas en bas car la bannière s'en charge */
    background-color: #fdfaf3; /* Une couleur beige très claire, proche de l'image */
    
    /* L'image de la carte en arrière-plan */
    background-image: url('asset/map.svg'); /* !! REMPLACEZ PAR VOTRE IMAGE DE CARTE !! */
    background-size: cover; /* Couvre toute la section */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Pas de répétition de l'image */
    background-attachment: fixed; /* L'image reste fixe lors du défilement */
}

.global-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-intro h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--color-dark-blue);
    margin-bottom: 1.5rem;
}

.global-intro p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-dark-blue);
    line-height: 1.7;
    max-width: 800px; /* Limite la largeur du paragraphe */
    margin: 0 auto;
}

/* Bannière inférieure */
.partners-banner {
    width: 100%;
    background-color: var(--color-dark-blue);
    margin-top: 350px; /* Espace crucial pour laisser voir la carte */
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne sur mobile */
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.checkmark-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.checkmark-icon .fa-check {
    color: var(--color-gold);
    font-size: 0.8rem;
}

/* --- RESPONSIVITÉ pour la section Communauté --- */
@media (max-width: 992px) {
    .global-section {
        background-position: center 150px;
    }

    .partners-banner {
        margin-top: 300px;
        gap: 1.5rem 2.5rem; /* Ajuste l'espacement vertical et horizontal */
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .global-section {
        padding-top: 60px;
        background-position: center 120px;
        background-size: 130%; /* Zoome un peu sur la carte pour qu'elle reste visible */
    }

    .global-intro h2 {
        font-size: 2.5rem;
    }

    .global-intro p {
        font-size: 1rem;
    }
    
    .partners-banner {
        margin-top: 250px;
        flex-direction: column;
        align-items: flex-start; /* Aligne à gauche en mode colonne */
        gap: 1.5rem;
    }
}

/* --- Section Liste des Programmes (Bachelor) --- */
.program-list-section {
    padding: 100px 5%;
    background-color: var(--color-white);
}

.program-list-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Colonne de gauche */
.program-list-intro {
    flex: 1;
    max-width: 300px; /* Limite la largeur de la colonne de gauche */
}

.program-list-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.program-list-intro .intro-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark-blue);
    margin-bottom: 1.5rem;
}

.program-list-intro .intro-text {
    font-family: var(--font-body);
    line-height: 1.7;
    color: #555;
    font-size: 0.9rem;
}

/* Colonne de droite */
.programs-list {
    flex: 2; /* Donne plus d'espace à la liste des programmes */
}

.list-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.program-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}
.program-item:hover {
    background-color: #fdfaf3; /* Léger fond doré au survol */
}

.program-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--color-dark-blue);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-dark-blue);
    margin-bottom: 0.75rem;
}

.program-details h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark-blue);
    line-height: 1.3;
    margin: 0;
}

.program-arrow-circle {
    flex-shrink: 0;
    margin-left: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 300;
    transition: background-color 0.3s ease;
}
.program-item:hover .program-arrow-circle {
    background-color: var(--color-dark-blue);
}

/* --- RESPONSIVITÉ pour la liste des programmes --- */
@media (max-width: 992px) {
    .program-list-container {
        flex-direction: column;
        gap: 3rem;
    }
    .program-list-intro {
        max-width: 100%; /* Prend toute la largeur en mode colonne */
        text-align: center;
    }
}

@media (max-width: 576px) {
    .program-list-section {
        padding: 60px 5%;
    }
    .list-title {
        font-size: 1.8rem;
    }
    .program-details h4 {
        font-size: 1.2rem;
    }
    .program-arrow-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* --- Section CTA (En savoir plus) --- */
.cta-banner {
    padding: 80px 5%;
    background-color: var(--color-dark-blue);
    /* Réutilisation du motif de fond */
    background-image: url('asset/deco2-1.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--color-white);
}



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

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.cta-content .highlight {
    font-style: italic;
    color: var(--color-gold);
}

.cta-content p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Le bouton .cta-button est déjà stylé, aucune action requise ! */


/* --- Footer --- */
footer {
    padding: 80px 5%;
    background-color: #e9e9e9; /* Gris clair */
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Grille responsive : crée autant de colonnes de 300px que possible */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

/* Colonne 1: About */
.footer-about .footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}
.footer-about p:last-of-type {
    margin-top: 1.5rem;
}

/* Colonne 2: Programmes */
.footer-programs ul {
    list-style: none;
    padding: 0;
}
.footer-programs li {
    margin-bottom: 0.8rem;
}
.footer-programs a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #555;
    transition: color 0.3s ease;
}
.footer-programs a:hover {
    color: var(--color-gold);
}

/* Colonne 3: Contact */
.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--color-gold);
}
.social-icons i {
    font-size: 1.1rem;
}

.footer-contact h4 {
    margin-top: 2.5rem;
}
.footer-contact h4:first-of-type {
    margin-top: 0;
}


/* --- RESPONSIVITÉ FINALE --- */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
}