/* ===================================
   ONG Les Cherubins International
   Styles CSS - Version HTML Pure
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&family=Roboto:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
    /* Couleurs principales */
    --turquoise-500: #154C70;
    --turquoise-600: #0f3a57;
    --gold-400: #FCD34D;
    --gold-500: #FAB513;
    --gold-600: #D4AF37;
    --deep-slate-300: #154C70;

    /* Couleurs de base */
    --background: #f8fafc;
    --foreground: #154C70;
    --card: #ffffff;
    --card-foreground: #154C70;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;

    /* Autres couleurs */
    --green-500: #25D366;
    --red-500: #ef4444;
    --purple-500: #a855f7;
    --blue-500: #3b82f6;
    --orange-500: #f97316;

    /* Typographie */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-accent: 'Roboto', sans-serif;

    /* Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
    --shadow-glow-turquoise: 0 0 20px rgba(21, 76, 112, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--gold-500); }
.text-turquoise { color: var(--turquoise-500); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted-foreground); }

.bg-white { background-color: var(--white); }
.bg-muted { background-color: var(--muted); }
.bg-turquoise { background-color: var(--turquoise-500); }
.bg-gold { background-color: var(--gold-500); }
.bg-deep-slate { background-color: var(--deep-slate-300); }

.font-display { font-family: var(--font-display); }
.font-accent { font-family: var(--font-accent); letter-spacing: 0.05em; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.tracking-wider { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.navbar-logo-text {
    display: none;
}

@media (min-width: 640px) {
    .navbar-logo-text {
        display: flex;
        flex-direction: column;
    }

    .navbar-logo-text .ong-text {
        font-size: 0.75rem;
        color: var(--gold-500);
        font-family: var(--font-accent);
        letter-spacing: 0.1em;
        line-height: 1;
    }

    .navbar-logo-text .main-text {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .navbar-logo-text .sub-text {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--gold-500);
        letter-spacing: 0.1em;
        line-height: 1.1;
    }
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .navbar-nav { display: flex; }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    opacity: 0.8;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--turquoise-500);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--white);
    box-shadow: var(--shadow-glow-gold);
}

.btn-primary:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--turquoise-600);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--turquoise-500);
    color: var(--turquoise-500);
}

.btn-outline-dark:hover {
    background: var(--turquoise-500);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--turquoise-500);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: var(--muted);
}

/* Button shine effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

.hamburger {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-nav a {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4),
        var(--background)
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-400);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: var(--deep-slate-300);
    padding: 5rem 0;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-500);
    margin-right: 0.5rem;
}

.stat-value {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 30px rgba(0, 194, 203, 0.5);
}

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

/* ===================================
   CARDS
   =================================== */
.card {
    background: var(--card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: all 0.5s ease;
}

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

.card-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

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

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

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.card-image-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--turquoise-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-glow-turquoise);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.card-image-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.card-content {
    padding: 1.5rem;
}

.card-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--turquoise-500);
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--turquoise-600);
}

.card-link svg {
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* ===================================
   SECTION STYLES
   =================================== */
.section {
    padding: 6rem 0;
}

.section-muted {
    background: var(--muted);
}

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

.section-label {
    display: block;
    color: var(--gold-500);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   IMPACT SECTION
   =================================== */
.impact-section {
    position: relative;
    overflow: hidden;
}

.impact-section::before,
.impact-section::after {
    content: '';
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.impact-section::before {
    top: 0;
    right: 0;
    background: var(--turquoise-500);
}

.impact-section::after {
    bottom: 0;
    left: 0;
    background: var(--gold-500);
}

.impact-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.impact-content {
    position: relative;
    z-index: 10;
}

.impact-list {
    list-style: none;
    margin-bottom: 2rem;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.impact-list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--turquoise-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.impact-list-icon svg {
    width: 12px;
    height: 12px;
    color: var(--white);
}

.impact-image-container {
    position: relative;
}

.impact-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.impact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.impact-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: var(--turquoise-500);
    margin-left: 4px;
}

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-500);
}

.floating-card-value {
    font-family: var(--font-accent);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.floating-card-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--turquoise-500), var(--turquoise-600));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* CTA Gold */
.cta-section-gold {
    background: var(--gold-500);
}

.cta-section-gold h2,
.cta-section-gold p {
    color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--deep-slate-300);
    color: var(--white);
}

.footer-newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.footer-newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-newsletter-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
}

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

.newsletter-input:focus {
    outline: none;
    border-color: var(--turquoise-500);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .ong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.footer-logo-text .name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--turquoise-500);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-500);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--turquoise-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.page-hero {
    padding: 6rem 0;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: var(--turquoise-500);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(100px);
}

.about-hero-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold-500);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.experience-badge-value {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.experience-badge-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Vision & Mission Cards */
.vision-mission-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vision-card,
.mission-card {
    height: 100%;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
}

.vision-card {
    background: rgba(21, 76, 112, 0.05);
    border-color: rgba(21, 76, 112, 0.2);
}

.mission-card {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-icon-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon-lg.turquoise {
    background: var(--turquoise-500);
}

.card-icon-lg.gold {
    background: var(--gold-500);
}

.card-icon-lg svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* Values */
.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--card);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(21, 76, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--turquoise-500);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }
}

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

@media (max-width: 767px) {
    .timeline-item {
        flex-direction: row;
        padding-left: 3rem;
    }
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 767px) {
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
}

.timeline-content {
    flex: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

@media (max-width: 767px) {
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
}

.timeline-year {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-500);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.timeline-description {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.timeline-dot {
    position: relative;
    z-index: 10;
}

.timeline-dot-inner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--turquoise-500);
    border: 4px solid var(--background);
    box-shadow: var(--shadow-glow-turquoise);
}

.timeline-spacer {
    flex: 1;
}

@media (max-width: 767px) {
    .timeline-dot {
        position: absolute;
        left: 8px;
    }

    .timeline-spacer {
        display: none;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--card);
    perspective: 1000px;
    border: 3px solid var(--border);
}

.team-card:hover .team-card-inner {
    transform: rotateY(5deg) rotateX(3deg);
}

.team-card-inner {
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.team-image {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: var(--muted);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border: 3px solid var(--border);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s ease;
}

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

.team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.team-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: var(--white);
}

.team-info h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.team-info span {
    color: var(--gold-400);
    font-size: 0.875rem;
}

.team-bio {
    padding: 1.5rem;
    color: var(--muted-foreground);
}

/* Location Section */
.location-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.location-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(21, 76, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    color: var(--turquoise-500);
}

.location-map {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, rgba(21, 76, 112, 0.2), rgba(212, 175, 55, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.location-map-content {
    text-align: center;
}

.location-map-content svg {
    width: 64px;
    height: 64px;
    color: var(--turquoise-500);
    margin-bottom: 1rem;
}

/* ===================================
   ACTIONS PAGE
   =================================== */
.actions-hero {
    background: var(--deep-slate-300);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.actions-hero::before,
.actions-hero::after {
    content: '';
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.actions-hero::before {
    top: 0;
    left: 0;
    background: var(--turquoise-500);
}

.actions-hero::after {
    bottom: 0;
    right: 0;
    background: var(--gold-500);
}

.actions-hero h1,
.actions-hero p {
    color: var(--white);
    position: relative;
    z-index: 10;
}

.actions-hero .section-label {
    color: var(--gold-400);
}

/* Actions Navigation */
.actions-nav {
    padding: 1rem 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 40;
}

.actions-nav-list {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.actions-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--muted);
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.actions-nav-link:hover,
.actions-nav-link.active {
    background: var(--turquoise-500);
    color: var(--white);
}

.actions-nav-link svg {
    width: 16px;
    height: 16px;
}

/* Action Section */
.action-section {
    padding: 6rem 0;
}

.action-section:nth-child(even) {
    background: var(--muted);
}

.action-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.action-section:nth-child(even) .action-grid {
    direction: rtl;
}

.action-section:nth-child(even) .action-grid > * {
    direction: ltr;
}

.action-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--turquoise-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.action-subtitle {
    color: var(--gold-500);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.action-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.action-stat-value {
    font-family: var(--font-accent);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--turquoise-500);
}

.action-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.action-achievements {
    list-style: none;
}

.action-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.achievement-icon {
    width: 20px;
    height: 20px;
    color: var(--turquoise-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.action-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.action-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.action-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.action-projects {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.action-projects h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-card-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.project-card-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.project-card-mini-name {
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
}

.project-card-mini-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.project-card-mini-location svg {
    width: 12px;
    height: 12px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--turquoise-500);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.project-card-mini-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.project-card-mini-footer span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.project-card-mini-footer svg {
    width: 12px;
    height: 12px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--turquoise-500), var(--turquoise-600), #3b82f6);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
}

.contact-hero::before {
    top: -25%;
    left: -25%;
    animation: floatBg 20s ease-in-out infinite;
}

.contact-hero::after {
    bottom: -25%;
    right: -25%;
    animation: floatBg 15s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(90deg); }
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}

.contact-badge svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.contact-badge span {
    color: var(--white);
    font-weight: 600;
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-stat {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    min-width: 140px;
}

.contact-stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.contact-stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.contact-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
}

.contact-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Wave separator */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.wave-separator svg {
    display: block;
    width: 100%;
}

/* Contact Cards */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-cards {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--turquoise-500);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon.blue { background: #eff6ff; }
.contact-card-icon.green { background: #f0fdf4; }
.contact-card-icon.red { background: #fef2f2; }
.contact-card-icon.purple { background: #faf5ff; }

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card-icon.blue svg { color: #3b82f6; }
.contact-card-icon.green svg { color: #22c55e; }
.contact-card-icon.red svg { color: #ef4444; }
.contact-card-icon.purple svg { color: #a855f7; }

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-card-content p,
.contact-card-content a {
    color: var(--muted-foreground);
    white-space: pre-line;
    margin-bottom: 0;
}

.contact-card-content a:hover {
    color: var(--turquoise-500);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--muted);
}

.copy-btn svg {
    width: 14px;
    height: 14px;
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(32, 189, 90, 0.1));
    border: 2px solid #25D366;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.whatsapp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

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

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.whatsapp-info h3 {
    margin-bottom: 0.25rem;
}

.whatsapp-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.btn-whatsapp {
    width: 100%;
    background: #25D366;
    color: var(--white);
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp:hover {
    background: #20BD5A;
}

/* Social Links */
.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    transform: scale(1.1) translateY(-3px);
}

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

.contact-social-link.instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.contact-social-link svg {
    width: 24px;
    height: 24px;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, var(--white));
}

.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.map-placeholder {
    height: 500px;
    background: linear-gradient(135deg, rgba(21, 76, 112, 0.2), rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.map-placeholder-content svg {
    width: 80px;
    height: 80px;
    color: var(--turquoise-500);
    margin-bottom: 1.5rem;
    animation: bounce 3s infinite;
}

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

.map-placeholder-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.map-placeholder-content p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* ===================================
   DONATE PAGE
   =================================== */
.donate-hero {
    background: linear-gradient(135deg, var(--turquoise-500), var(--turquoise-600), #3b82f6);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.donate-hero::before,
.donate-hero::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
}

.donate-hero::before {
    top: -25%;
    left: -25%;
    animation: floatBg 20s ease-in-out infinite;
}

.donate-hero::after {
    bottom: -25%;
    right: -25%;
    animation: floatBg 15s ease-in-out infinite reverse;
}

.donate-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.donate-heart-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.donate-heart-icon .icon-bg {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    animation: float 3s ease-in-out infinite;
}

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

.donate-heart-icon svg {
    width: 48px;
    height: 48px;
    color: var(--white);
    fill: var(--white);
}

.donate-heart-icon .pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.donate-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.donate-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.donate-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.donate-info svg {
    width: 20px;
    height: 20px;
}

/* Payment Methods Section */
.payment-section {
    padding: 4rem 0 0;
    background: var(--white);
}

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(21, 76, 112, 0.1);
    color: var(--turquoise-500);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.payment-badge svg {
    width: 20px;
    height: 20px;
}

.payment-section h2 {
    background: linear-gradient(135deg, var(--turquoise-500), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Mobile Money */
.mobile-money-section {
    margin-bottom: 5rem;
}

.section-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon.turquoise {
    background: linear-gradient(135deg, var(--turquoise-500), #3b82f6);
}

.section-icon.gold {
    background: linear-gradient(135deg, var(--gold-500), #f97316);
}

.section-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.mobile-money-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-money-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mobile-money-card {
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-money-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.mobile-money-card.wave { border-color: #e3f2fd; }
.mobile-money-card.wave:hover { border-color: #3b82f6; }

.mobile-money-card.orange { border-color: #ffedd5; }
.mobile-money-card.orange:hover { border-color: #f97316; }

.mobile-money-card.mtn { border-color: #fef9c3; }
.mobile-money-card.mtn:hover { border-color: #eab308; }

.mobile-money-card.moov { border-color: #e0f2fe; }
.mobile-money-card.moov:hover { border-color: #0ea5e9; }

.mobile-money-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.mobile-money-badge svg {
    width: 12px;
    height: 12px;
}

.mobile-money-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.mobile-money-logo {
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-money-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.mobile-money-security svg {
    width: 32px;
    height: 32px;
    color: #22c55e;
    transition: transform 0.6s ease;
}

.mobile-money-card:hover .mobile-money-security svg {
    transform: rotate(360deg);
}

.mobile-money-content {
    width: 100%;
    text-align: center;
}

.mobile-money-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-money-number {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.mobile-money-card:hover .mobile-money-number {
    border-color: #d1d5db;
}

.mobile-money-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.mobile-money-number-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 0;
    white-space: nowrap;
}

.mobile-money-number-label svg {
    width: 16px;
    height: 16px;
}

.mobile-money-number-value {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
}

.btn-copy {
    width: 100%;
    background: linear-gradient(135deg, var(--turquoise-500), #3b82f6);
    color: var(--white);
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Bank Transfer */
.bank-section {
    margin-bottom: 5rem;
}

.bank-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.bank-card:hover {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-5px);
}

.bank-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bank-item {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.bank-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(249, 115, 22, 0.05));
}

.bank-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.bank-item-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

.bank-item-value {
    font-weight: 700;
    font-size: 1.125rem;
    word-break: break-all;
}

/* After Donation */
.after-donation-card {
    background: linear-gradient(135deg, rgba(21, 76, 112, 0.05), rgba(59, 130, 246, 0.05), rgba(168, 85, 247, 0.05));
    border: 2px solid rgba(21, 76, 112, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.after-donation-card::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 128px;
    height: 128px;
    opacity: 0.2;
    animation: rotateHeart 20s linear infinite;
}

@keyframes rotateHeart {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.after-donation-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.after-donation-header svg {
    width: 32px;
    height: 32px;
    color: var(--turquoise-500);
    animation: pulse 2s infinite;
}

.after-donation-header h4 {
    font-size: 1.5rem;
}

.after-donation-list {
    list-style: none;
}

.after-donation-list > li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.after-donation-list > li > svg {
    width: 24px;
    height: 24px;
    color: var(--turquoise-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.after-donation-items {
    list-style: none;
    margin-top: 1rem;
    margin-left: 2.25rem;
}

.after-donation-items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.after-donation-items li:hover {
    transform: translateX(5px);
}

.after-donation-items svg {
    width: 20px;
    height: 20px;
    color: var(--turquoise-500);
}

/* Impact Section */
.impact-stats-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, var(--white));
}

.impact-stats-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .impact-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-stat-card {
    background: linear-gradient(135deg, var(--turquoise-500), #3b82f6);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.3s ease;
}

.impact-stat-card:hover {
    transform: scale(1.05);
}

.impact-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    opacity: 0.1;
    animation: rotateIcon 20s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.impact-stat-card svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    opacity: 0.9;
}

.impact-stat-card .stat-value {
    font-size: 3rem;
    text-shadow: none;
}

.impact-stat-card .stat-label {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ===================================
   PROJECTS PAGE
   =================================== */
.projects-hero {
    padding: 6rem 0;
    background: var(--muted);
}

.projects-filter {
    padding: 1rem 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--muted);
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--turquoise-500);
    color: var(--white);
}

.filter-tab svg {
    width: 16px;
    height: 16px;
}

/* Project Cards */
.projects-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--card);
    transition: all 0.3s ease;
}

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

.project-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

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

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

.project-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.project-badge.education {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.project-badge.prevention {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.project-badge svg {
    width: 12px;
    height: 12px;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #22c55e;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-meta svg {
    width: 16px;
    height: 16px;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--muted);
}

.testimonial-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--card);
}

.testimonial-grid {
    display: grid;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.testimonial-image {
    height: 200px;
}

@media (min-width: 768px) {
    .testimonial-image {
        height: auto;
    }
}

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

.testimonial-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===================================
   BLOG PAGE
   =================================== */
.blog-hero {
    padding: 4rem 0;
    background: var(--muted);
}

.blog-search-filter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .blog-search-filter {
        flex-direction: row;
        justify-content: space-between;
    }
}

.search-input {
    position: relative;
    width: 100%;
    max-width: 384px;
}

.search-input svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
}

.search-input input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    background: var(--white);
}

.search-input input:focus {
    outline: none;
    border-color: var(--turquoise-500);
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-filter {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
    background: var(--turquoise-500);
    color: var(--white);
    border-color: var(--turquoise-500);
}

/* Blog Articles */
.blog-section {
    padding: 4rem 0;
}

/* Featured Article */
.featured-article {
    margin-bottom: 3rem;
}

.featured-article .card {
    overflow: hidden;
}

.featured-article-grid {
    display: grid;
}

@media (min-width: 768px) {
    .featured-article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.featured-article-image {
    height: 256px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .featured-article-image {
        height: auto;
    }
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.featured-article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Article Cards */
.articles-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--card);
    transition: all 0.3s ease;
}

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

.article-image {
    height: 192px;
    overflow: hidden;
    position: relative;
}

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

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

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.article-category.projets {
    background: rgba(21, 76, 112, 0.1);
    color: var(--turquoise-500);
}

.article-category.temoignages {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-500);
}

.article-category.prevention {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.article-category.evenements {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-meta svg {
    width: 16px;
    height: 16px;
}

.article-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card:hover .article-content h3 {
    color: var(--turquoise-500);
}

.article-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    animation: whatsappPulse 2s infinite;
    transition: transform 0.3s ease;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappPulse {
    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); }
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

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

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

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

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

/* Delay classes */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */
.hidden { display: none; }

@media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:hidden { display: none; }
}

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
}

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
    .lg\:flex { display: flex; }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .whatsapp-float {
        display: none;
    }
}
