/* ===== VARIABLES ===== */
:root {
    /* Couleurs principales */
    --primary-dark: #0b3240;
    --primary: #00728d;
    --primary-light: #48a9c5;
    --accent: #00b4d8;
    --accent-light: #90e0ef;
    --light: #fcfdfc;
    --light-gray: #f8f9fa;
    --dark: #212529;
    --dark-gray: #6c757d;
    
    /* Couleurs fonctionnelles */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Effets */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
main {
    position: relative;
    z-index: 1;
}
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.navbar-tektaltech {
    background: rgba(11, 50, 64, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000; /* > tout le CAN */
}


.navbar-tektaltech.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition);
}

.navbar-tektaltech .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.navbar-tektaltech .nav-link:hover,
.navbar-tektaltech .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light) !important;
}

.navbar-tektaltech .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.navbar-tektaltech .nav-link:hover::after,
.navbar-tektaltech .nav-link.active::after {
    width: 70%;
}

.donate-btn {
    background: linear-gradient(135deg, var(--danger), #ff6b6b);
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}
/* ===== HOME HERO SECTION ===== */

.home-hero-section {
    position: relative;
    padding: 180px 0 120px;
    color: white;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.home-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.home-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(11, 50, 64, 0.92) 0%,
                rgba(0, 114, 141, 0.88) 50%,
                rgba(0, 180, 216, 0.85) 100%);
    z-index: -1;
}

/* Formes décoratives */
.home-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

.home-hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.home-hero-shape.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -150px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.home-hero-shape.shape-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -100px;
    background: radial-gradient(circle, #00b4d8 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Contenu Hero */
.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.home-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #0093E9);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.home-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.home-hero-title .text-highlight {
    background: linear-gradient(135deg, #ffd166, #ff9e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.home-hero-title .text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ffd166, #ff9e00);
    border-radius: 3px;
}

.home-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Boutons Hero */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), #0093E9);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.6);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 45px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    color: white;
}

/* Cartes de statistiques */
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    min-width: 180px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

/* Badges de confiance */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trust-badge i {
    font-size: 1.3rem;
}

.trust-badge span {
    font-size: 1rem;
    font-weight: 500;
}

/* Flèche de scroll */
.home-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.home-hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animation des éléments */
@keyframes fadeInUpHero {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation: fadeInUpHero 0.8s ease forwards;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

.animate__delay-3s {
    animation-delay: 0.9s;
}

.animate__delay-4s {
    animation-delay: 1.2s;
}

/* Particules de fond (optionnel) */
.home-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .home-hero-title {
        font-size: 3.2rem;
    }
    
    .home-hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .home-hero-section {
        padding: 160px 0 100px;
        min-height: auto;
    }
    
    .home-hero-title {
        font-size: 2.5rem;
    }
    
    .home-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .home-hero-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 16px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .home-hero-buttons .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-card i {
        font-size: 2.5rem;
    }
    
    .home-hero-stats .row {
        gap: 15px;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .home-hero-shape {
        display: none;
    }
    
    .scroll-arrow {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .home-hero-title {
        font-size: 2rem;
    }
    
    .home-hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .trust-badge {
        padding: 10px 15px;
    }
}

/* ===== BUTTONS ===== */
.btn-tektaltech {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-tektaltech:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

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

.btn-tektaltech-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-tektaltech-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-tektaltech-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--light-gray);
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

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

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 114, 141, 0.1);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    background: var(--light);
}

.about-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

@media (max-width: 992px) {
    .about-bg {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: var(--radius);
        margin-top: 40px;
    }
}

.about-content h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-list li {
    padding: 8px 0;
    color: var(--dark);
}

.about-list i {
    color: var(--accent);
    margin-right: 10px;
}
/* about page */

/* ===== ABOUT PAGE STYLES ===== */

/* Hero Section About */
.about-hero-section {
    position: relative;
    padding: 180px 0 120px;
    color: white;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(11, 50, 64, 0.9) 0%,
                rgba(0, 114, 141, 0.85) 50%,
                rgba(0, 180, 216, 0.8) 100%);
    z-index: -1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-badge {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
    transition: var(--transition);
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

/* Badge de section */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Mission Section */
.mission-content {
    padding-right: 30px;
}

@media (max-width: 992px) {
    .mission-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.mission-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.highlight-item h5 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.mission-image {
    position: relative;
}

.mission-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.mission-image img:hover {
    transform: scale(1.02);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 114, 141, 0.1);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 35px;
    color: white;
}

/* Value Cards */
.value-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: flex-start;
}

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

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

.value-icon i {
    font-size: 24px;
    color: var(--primary);
}

.value-content {
    flex: 1;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 50, 64, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-top: 4px solid var(--primary);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h6 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info small {
    color: var(--dark-gray);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-badge {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-card {
        flex-direction: column;
        text-align: center;
    }
    
    .team-image {
        height: 250px;
    }
}

/* Animation pour les cartes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card,
.service-card,
.testimonial-card,
.value-card {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><path d="M0 0L20 20M20 0L0 20" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(rgba(11, 50, 64, 0.9), rgba(11, 50, 64, 0.95)), 
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: var(--light-gray);
}

.partner-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


/* ===== DONATION PAGE STYLES ===== */

/* Hero Section Don */
.don-hero-section {
    position: relative;
    padding: 160px 0 100px;
    color: white;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.don-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.don-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.don-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(139, 0, 0, 0.85) 0%,
                rgba(220, 53, 69, 0.85) 50%,
                rgba(248, 100, 115, 0.8) 100%);
    z-index: -1;
}

.don-hero-content {
    position: relative;
    z-index: 2;
}

.don-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.don-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.don-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.impact-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.impact-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.impact-badge i {
    font-size: 1.2rem;
    color: #ffcc00;
}

.impact-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Impact Cards */
.impact-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(220, 53, 69, 0.1);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--danger);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--danger), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.impact-icon i {
    font-size: 35px;
    color: white;
}

/* Payment Cards */
.payment-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
}

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

.payment-card.orange-money {
    border-top-color: #ff6600;
}

.payment-card.wave-money {
    border-top-color: #28a745;
}

.payment-card.free-money {
    border-top-color: #007bff;
}

.payment-header {
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.payment-icon i {
    font-size: 40px;
}

.orange-money .payment-icon i {
    color: #ff6600;
}

.wave-money .payment-icon i {
    color: #28a745;
}

.free-money .payment-icon i {
    color: #007bff;
}

.payment-body {
    padding: 0 30px 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--radius);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.phone-number i {
    color: var(--primary);
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #f8f9fa;
    border-radius: var(--radius);
    border: 2px dashed #dee2e6;
    color: #6c757d;
    transition: var(--transition);
}

.qr-placeholder:hover {
    background: #e9ecef;
    border-color: var(--primary);
}

.qr-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius);
}

.instructions h6 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.instructions ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.payment-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.btn-copy {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-copy:hover {
    transform: scale(1.05);
}

/* Suggested Amounts */
.suggested-amounts {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.btn-amount {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-amount:hover,
.btn-amount.active {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.custom-amount .form-control {
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.custom-amount .input-group-text {
    background: var(--primary);
    color: white;
    border-radius: 0 10px 10px 0;
}

/* Recognition Card */
.recognition-card {
    background: white;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.recognition-icon {
    font-size: 4rem;
    color: var(--danger);
    margin-bottom: 30px;
}

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

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-item h5 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* FAQ */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: var(--radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 20px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 114, 141, 0.1);
    color: var(--primary);
}

.accordion-body {
    padding: 20px;
    background: #f8f9fa;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .don-hero-section {
        padding: 140px 0 80px;
    }
    
    .don-hero-title {
        font-size: 2.5rem;
    }
    
    .don-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .impact-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .payment-card {
        margin-bottom: 30px;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .qr-placeholder {
        height: 150px;
    }
    
    .suggested-amounts .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-amount {
        width: 100%;
    }
    
    .custom-amount {
        width: 100%;
        max-width: 100% !important;
    }
    
    .recognition-card {
        padding: 40px 20px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: var(--accent);
    border: none;
    color: white;
    padding: 0 25px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
}