/* ============================================
   GLOBAL STYLES
============================================ */
* {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   HEADER STYLES
============================================ */
.top-header {
    background: linear-gradient(135deg, #3580AA 0%, #2a5f7f 100%);
    color: white;
    height: 80px;
    padding: 0 20px;
    box-shadow: 0 4px 15px rgba(53, 128, 170, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header .container {
    height: 100%;
}

.logo-container {
    flex: 1;
}

.logo {
    max-height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar {
    flex: 2;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #ef4444) !important;
    border: none;
    padding: 10px 25px !important;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.navbar-toggler {
    border: 2px solid white;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: linear-gradient(135deg, #2a5f7f 0%, #3580AA 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
}

/* ============================================
   MAIN CONTENT
============================================ */
.main-section {
    min-height: calc(100vh - 400px);
}

.layout-container {
    width: 95%;
    max-width: 1400px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px auto;
}

.section {
    padding: 30px 0;
}

.section-title {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px !important;
    letter-spacing: 0.06em;
    font-weight: 800;
    border-left: 5px solid #0ead69;
    padding-left: 20px;
    color: #1e293b;
}

/* ============================================
   MODERN HERO BANNER
============================================ */
.hero-banner-modern {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e9f5f2 100%);
    padding: 60px 20px;
    margin-bottom: 60px;
}

.bg-element {
    position: absolute;
    z-index: 0;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 173, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: float-circle 8s ease-in-out infinite;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(53, 128, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    animation: float-circle 10s ease-in-out infinite reverse;
}

.bg-blob {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.08) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: 50px;
    right: 100px;
    animation: blob-rotate 15s ease-in-out infinite;
}

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

@keyframes blob-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(20deg) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* LEFT SIDE - CONTENT */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-box {
    animation: slideInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0ead69, #17a2b8);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
    animation: slideInLeft 0.8s ease-out 0.1s both;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0ead69;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
    letter-spacing: -0.02em;
}

.hero-subtitle-text {
    font-size: 1.3rem;
    color: #3580AA;
    font-weight: 600;
    margin-bottom: 15px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.hero-description-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(14, 173, 105, 0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0ead69;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #0ead69, #0a8551);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(14, 173, 105, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 173, 105, 0.4);
    background: linear-gradient(135deg, #0a8551, #08693e);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: #0ead69;
    border: 2px solid #0ead69;
}

.btn-cta-secondary:hover {
    background: #0ead69;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 173, 105, 0.3);
}

/* RIGHT SIDE - IMAGE */
.hero-right {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
}

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 173, 105, 0.15) 0%, rgba(23, 162, 184, 0.1) 100%);
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #0ead69;
    z-index: 2;
    animation: floating 3s ease-in-out infinite;
}

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

.floating-card span {
    font-size: 0.9rem;
}

.card-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    left: 20px;
    animation-delay: 0.5s;
}

.card-3 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   CARD STYLES
============================================ */
.card {
    border: 1px solid #e2e8f0;
    background-color: #fff;
    transition: 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 15px;
}

.card-img-sm {
    height: 85px;
    width: 100px;
    border-radius: 0.25rem;
    object-fit: cover;
}

.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    color: #777;
    margin-bottom: 0;
}

.card-meta li {
    margin-bottom: 10px;
}

.card-meta li:not(:last-child) {
    border-right: 1px solid #EBEBEB;
    padding-right: 8px;
}

.card-meta i {
    color: #dddddd;
    margin-right: 5px;
}

.main-article {
    border: none;
    background: white;
}

.card-event {
    transition: transform 0.3s ease;
}

.card-event:hover {
    transform: translateY(-10px);
}

.post-title {
    color: #333;
    font-weight: 700;
}

/* ============================================
   HEADING STYLES
============================================ */
h1, .h1 {
    font-size: 52px;
}

h2, .h2 {
    font-size: 36px !important;
}

h3, .h3 {
    font-size: 24px !important;
}

h4, .h4 {
    font-size: 18px !important;
}

h5, .h5 {
    font-size: 15px !important;
}

h6, .h6 {
    font-size: 13px !important;
}

/* ============================================
   BUTTON STYLES
============================================ */
.btn-outline-dark {
    border: 1px solid #343a40;
    color: #343a40;
}

.btn-outline-dark:hover {
    background-color: #343a40;
    color: #fff;
}

.lire-suite-btn {
    background-color: white;
    border: 1px solid #252525;
    color: black;
    padding: 8px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lire-suite-btn:hover {
    background-color: #252525;
    color: white;
}

/* ============================================
   MISSION & VISION STYLES
============================================ */
.mission-vision-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e9f5f2 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 173, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(53, 128, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.mission-card,
.vision-card {
    position: relative;
    z-index: 2;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #0ead69;
}

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

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ead69, #0a8551);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.vision-card .icon-container {
    background: linear-gradient(135deg, #3580AA, #2a5f7f);
}

.mission-card:hover .icon-container,
.vision-card:hover .icon-container {
    transform: scale(1.1) rotate(10deg);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

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

/* ============================================
   EVENTS STYLES
============================================ */
.event-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
    z-index: 2;
}

.event-img {
    object-fit: cover;
    height: 200px;
}

.event-title {
    font-size: 1.5rem !important;
}

.event-date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0ead69;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-align: center;
    z-index: 3;
    font-weight: bold;
}

.event-date-badge .day {
    display: block;
    font-size: 1.2rem;
}

.event-date-badge .month {
    display: block;
    font-size: 0.8rem;
}

/* ============================================
   GALLERY STYLES - NOUVELLE STRUCTURE
============================================ */
#gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9f7 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

#gallery-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 173, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

#gallery-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(53, 128, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

#gallery-section .section-title {
    position: relative;
    z-index: 2;
    text-align: left;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    background: linear-gradient(135deg, #e9f5f2, #f0f9f7);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(14, 173, 105, 0.25);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 173, 105, 0.8), rgba(53, 128, 170, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

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

.gallery-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0ead69;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ============================================
   STATISTICS STYLES
============================================ */
.statistique {
    background-image: url("../img/statistique1.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 250px;
    color: white;
    margin-bottom: 20px;
    padding: 40px;
}

.statistique::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 0;
}

.st-comp {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.st-num {
    font-size: 50px;
    font-weight: bold;
    color: #f8f9fa;
}

.st-corps {
    font-size: 20px;
}

/* ============================================
   DONATION SECTION STYLES - REFONTE
============================================ */
.don-section {
    background: linear-gradient(135deg, #3580AA 0%, #2a5f7f 100%);
    padding: 120px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-top: 100px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: white;
    top: 10%;
    left: 5%;
    animation: float-shape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: 5%;
    right: 10%;
    animation: float-shape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 50%;
    right: 5%;
    animation: float-shape 7s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: white;
    bottom: 20%;
    left: 8%;
    animation: float-shape 9s ease-in-out infinite reverse;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-40px) translateX(20px); }
}

.don-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.don-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.don-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.don-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
}

.don-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.don-btn-primary,
.don-btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.don-btn-primary {
    background: white;
    color: #0ead69;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.don-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #0ead69;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.don-btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.don-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.don-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.don-btn-secondary:hover {
    background: white;
    color: #0ead69;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Impact Stats */
.impact-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.impact-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SOCIAL SECTION
============================================ */
.social-section {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.youtube {
    background-color: #FF0000;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CONTACT LIST
============================================ */
.contact-list a {
    color: #0ead69;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #0a8551;
    text-decoration: underline;
}

/* ============================================
   FOOTER STYLES
============================================ */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3580AA, #5fa3c9, #3580AA);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(53, 128, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.footer-logo {
    max-width: 140px;
    margin-bottom: 20px;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3580AA, #5fa3c9);
    border-radius: 2px;
}

.footer-links {
    font-size: 15px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3580AA;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.footer-link:hover {
    color: #3580AA;
    transform: translateX(5px);
    padding-left: 25px;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    font-size: 15px;
}

.footer-contact li {
    margin-bottom: 18px;
    color: #cbd5e1;
    display: flex;
    align-items: start;
    gap: 12px;
}

.footer-contact i {
    color: #3580AA;
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
============================================ */
@media screen and (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-subtitle-text {
        font-size: 1.1rem;
    }

    .hero-description-text {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-image-wrapper {
        height: 350px;
    }

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

    .st-num {
        font-size: 40px;
    }

    .st-corps {
        font-size: 16px;
    }

    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }

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

    .card-text {
        font-size: 0.95rem;
    }

    .don-section h2 {
        font-size: 2rem;
    }

    .don-section p {
        font-size: 1rem;
    }

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

@media screen and (max-width: 768px) {
    .logo {
        max-height: 50px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-description,
    .footer-links,
    .footer-contact {
        font-size: 14px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .hero-banner-modern {
        min-height: 500px;
        padding: 30px 15px;
        margin-bottom: 40px;
    }

    .hero-container {
        gap: 20px;
    }

    .hero-main-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

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

    .hero-description-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }

    .stat-item {
        padding: 12px;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .floating-card {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .event-img {
        height: 150px;
    }

    .st-num {
        font-size: 36px;
    }

    .st-corps {
        font-size: 14px;
    }

    .statistique {
        height: 200px;
        padding: 30px 20px;
    }

    .mission-vision-section {
        padding: 60px 20px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .icon-container {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .card-text {
        font-size: 0.95rem;
    }

    .don-section {
        padding: 80px 20px;
        margin-top: 60px;
    }

    .don-section h2 {
        font-size: 2rem;
    }

    .don-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .don-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

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

    .don-btn-primary,
    .don-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

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

    #gallery-section {
        padding: 60px 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    h2, .h2 {
        font-size: 28px !important;
    }

    h3, .h3 {
        font-size: 20px !important;
    }

    h4, .h4 {
        font-size: 16px !important;
    }

    h5, .h5 {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 576px) {
    .nav-link {
        font-size: 15px;
        padding: 12px 15px;
    }

    .logo {
        max-height: 45px;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-logo {
        max-width: 100px;
    }

    .footer .col-lg-4 {
        margin-bottom: 30px;
    }

    .hero-banner-modern {
        min-height: 450px;
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .hero-main-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-subtitle-text {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .hero-description-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px;
    }

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

    .stat-label {
        text-align: left;
        margin-top: 0;
        margin-left: 10px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 20px;
        font-size: 12px;
        width: 100%;
    }

    .hero-image-wrapper {
        height: 250px;
    }

    .floating-card {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .floating-card i {
        font-size: 1.2rem;
    }

    .card-1 {
        top: 10px;
        left: -15px;
    }

    .card-2 {
        bottom: 40px;
        left: 10px;
    }

    .card-3 {
        top: 50%;
        right: -25px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .st-num {
        font-size: 32px;
    }

    .st-corps {
        font-size: 12px;
    }

    .statistique {
        height: auto;
        padding: 25px 15px;
    }

    .st-comp {
        flex-direction: column;
        gap: 20px;
    }

    .mission-vision-section {
        padding: 40px 15px;
    }

    .mission-card,
    .vision-card {
        padding: 25px 15px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .don-section {
        padding: 60px 15px;
        margin-top: 40px;
    }

    .don-section h2 {
        font-size: 1.6rem;
    }

    .don-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .don-features {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .don-btn-primary,
    .don-btn-secondary {
        width: 100%;
        padding: 12px 30px;
        font-size: 13px;
    }

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

    .impact-item {
        padding: 15px;
    }

    #gallery-section {
        padding: 40px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    h1, .h1 {
        font-size: 36px;
    }

    h2, .h2 {
        font-size: 24px !important;
    }

    h3, .h3 {
        font-size: 18px !important;
    }

    h4, .h4 {
        font-size: 15px !important;
    }

    h5, .h5 {
        font-size: 13px !important;
    }

    h6, .h6 {
        font-size: 12px !important;
    }

    .bg-circle-1,
    .bg-circle-2,
    .bg-blob {
        display: none;
    }

    .shape {
        display: none;
    }

    #gallery-section::before,
    #gallery-section::after {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    .hero-banner-modern {
        min-height: 400px;
        padding: 20px 10px;
    }

    .hero-main-title {
        font-size: 1.3rem;
    }

    .hero-subtitle-text {
        font-size: 0.85rem;
    }

    .hero-description-text {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .hero-stats {
        gap: 8px;
        margin-bottom: 15px;
    }

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

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-cta-buttons {
        gap: 8px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 15px;
        font-size: 11px;
    }

    .hero-image-wrapper {
        height: 200px;
    }

    .st-num {
        font-size: 28px;
    }

    .btn-outline-dark,
    .don-btn-primary,
    .don-btn-secondary {
        font-size: 14px;
        padding: 8px 16px;
    }

    .don-section h2 {
        font-size: 1.4rem;
    }

    .mission-card,
    .vision-card {
        padding: 20px 12px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-banner-modern {
        gap: 40px;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        height: 400px;
    }

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

    .mission-vision-section {
        padding: 70px 20px;
    }

    .don-section {
        padding: 90px 20px;
    }
}

@media screen and (max-width: 991px) {
    .top-header {
        height: auto;
        padding: 15px 20px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: start;
        padding: 15px;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        margin: 5px 0;
    }

    .nav-link {
        width: 100%;
        text-align: left;
    }

    .btn-danger {
        margin-top: 10px;
        width: 100%;
    }

    .hero-banner-modern {
        min-height: 600px;
        padding: 40px 20px;
    }

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

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .mission-vision-section {
        padding: 60px 20px;
    }

    .don-section {
        padding: 80px 20px;
    }

    #gallery-section {
        padding: 60px 20px;
    }
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-white {
    color: #ffffff !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.rounded {
    border-radius: 0.375rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}