/* Variables CSS */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004085;
    --secondary-color: #17a2b8;
    --accent-color: #e83e8c;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gray-light: #e9ecef;
    --gray: #6c757d;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset et styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 80px; /* Pour la navbar fixe */
}

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

ul {
    list-style: none;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 64, 133, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

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

.brand-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .btn-donate {
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-left: 0.5rem;
}

.navbar-nav .btn-donate:hover {
    background-color: #d63384;
    transform: translateY(-2px);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 80vh;
    min-height: 600px;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 10;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.stats-section {
    background-color: var(--light-color);
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Programmes */
.programs-section {
    background-color: white;
}

.program-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

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

.program-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(23, 162, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.program-highlight {
    background-color: rgba(0, 86, 179, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.program-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.program-link:hover {
    color: var(--primary-dark);
}

.program-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.program-link:hover i {
    transform: translateX(5px);
}


.navbar-brand img {
    height: 70px;
    width: auto;
}

/* Styles pour les animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Boutons de montant actifs */
.btn-amount.active {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3);
}

/* Bouton retour en haut 
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}*/

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animation des stats */
.stat-number {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Effet spécial pour le pourcentage */
.stat-item.percentage-item .stat-number {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.stat-item.percentage-item .stat-number::after {
    content: '';
    font-size: 0.6em;
    position: absolute;
    top: -0.3em;
    right: -0.7em;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Animation de pulse pour le pourcentage */
@keyframes pulse-percent {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-item.percentage-item .stat-number.animating {
    animation: pulse-percent 0.5s ease-in-out;
}

/* ============================================
   STYLES POUR LA SECTION À PROPOS
   ============================================ */

/* Section À propos */
.about-section {
    background-color: white;
}

/* Navigation interne */
.about-nav-internal {
    position: sticky;
    top: 80px;
    z-index: 10;
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 2rem;
}

.about-nav-btn {
    padding: 10px 25px;
    margin: 0 10px;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.about-nav-btn:hover,
.about-nav-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Cartes Mission & Vision */
.about-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    overflow: hidden;
    transition: var(--transition);
    border-top: 5px solid var(--secondary-color);
}

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

.mission-card {
    border-top-color: #4CAF50;
}

.vision-card {
    border-top-color: #FF9800;
}

.about-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

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

.about-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.about-card-body {
    padding: 1.5rem;
}

.mission-statement {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 86, 179, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.mission-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mission-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.mission-item h5 {
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.mission-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.vision-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    padding: 1rem;
    border-left: 4px solid #FF9800;
    background: rgba(255, 152, 0, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.goal-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.goal-number {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.goal-text h6 {
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.goal-text p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Cartes Valeurs */
.value-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-illustration {
    margin: 1.5rem 0;
}

.value-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
}

.value-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
}

.value-circle.transparency {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.value-circle.transparency::after {
    background: conic-gradient(#2196F3 0% 100%, transparent 100%);
}

.value-circle.credibility {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.value-circle.credibility::after {
    background: conic-gradient(#4CAF50 0% 100%, transparent 100%);
}

.value-circle.respect {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.value-circle.respect::after {
    background: conic-gradient(#FF9800 0% 100%, transparent 100%);
}

.value-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.value-description p:first-child {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.value-description p:last-child {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.value-points {
    text-align: left;
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.value-points li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.value-points i {
    color: var(--success-color);
    margin-right: 8px;
}

/* Équipe */
.team-category {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: 100%;
}

.team-category h4 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.team-member {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.team-member:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.member-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.member-info h5 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

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

.member-info em {
    color: var(--primary-color);
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .about-nav-internal {
        position: static;
    }
    
    .about-nav-btn {
        display: block;
        margin: 5px auto;
        width: 90%;
        max-width: 300px;
    }
    
    .value-circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .mission-item,
    .goal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-item i,
    .goal-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-avatar {
        margin: 0 auto 15px;
    }
}


/* ============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Couleur WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E; /* Couleur WhatsApp hover */
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Animation de pulsation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Sur mobile, réduire légèrement */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 1.6rem;
    }
}



/* ============================================
   FOOTER AMÉLIORÉ
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #001a33 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-tagline {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-achievement {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-achievement i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

/* Liens de navigation */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.footer-links a i {
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Programmes dans le footer */
.footer-programs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-programs li {
    margin-bottom: 1rem;
}

.footer-programs a {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.footer-programs a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.program-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.program-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer-programs h6 {
    color: white;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.footer-programs p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Section contact */
.footer-contact {
    margin-bottom: 1.5rem;
}

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

.contact-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item h6 {
    color: white;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.contact-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-whatsapp-small {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.btn-whatsapp-small:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* Réseaux sociaux améliorés */
.social-links-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-link i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.social-link span {
    font-size: 0.9rem;
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.twitter:hover {
    background: #1DA1F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.youtube:hover {
    background: #FF0000;
}

/* Newsletter */
.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.newsletter-box h6 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-form .input-group {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.newsletter-form .btn {
    background: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
}

.newsletter-form .btn:hover {
    background: #138496;
}

/* Partenaires */
.partners-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.partners-title {
    color: white;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.partner {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.partner:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .social-links-enhanced {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer-brand .d-flex {
        justify-content: center;
    }
    
    .footer-achievement {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links-enhanced {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 1rem;
    }
    
    .legal-link {
        margin: 5px 0;
    }
}
/* Section