/* ============================================
   FOUNDATION OBIANG NGUEMA - MAIN STYLES
   Premium Institutional Platform
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Light Mode */
    --bg-primary: #f8f9fc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-dark: #0a1628;
    --bg-dark-light: #111d35;
    --text-primary: #1a1f36;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8941F;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --navy: #0a1628;
    --navy-light: #162544;
    --navy-dark: #050d1a;
    --accent: #D4AF37;
    --accent-light: #f0d78c;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-light: #475569;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --glass-bg: rgba(26, 31, 46, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.3s, color 0.3s;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-content { text-align: center; }
.loading-logo img { height: 60px; margin-bottom: 24px; animation: logoPulse 2s ease-in-out infinite; }
@keyframes logoPulse { 0%, 100% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
.loading-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.glass-card:hover { box-shadow: var(--shadow-lg); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo { height: 40px; width: auto; }

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

.brand-name {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
    padding: 8px 20px !important;
}

.nav-cta:hover { background: var(--gold-light); }

.nav-cta-alt {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
}

.nav-cta-alt:hover { background: rgba(212, 175, 55, 0.1); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.nav-dropdown-toggle:hover { color: var(--gold); background: rgba(212, 175, 55, 0.1); }

.nav-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }

.nav-badge {
    position: absolute;
    top: -2px; right: -2px;
    background: var(--danger);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 13px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-dropdown-menu a:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold); }

.nav-dropdown-menu .text-danger { color: var(--danger); }

.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* Language Button */
.lang-btn {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: inherit;
}

.lang-btn:hover { background: rgba(212, 175, 55, 0.15); border-color: var(--gold); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.hero-slide.active { opacity: 1; visibility: visible; }

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.hero-slide.active .hero-bg img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.7) 40%,
        rgba(10, 22, 40, 0.4) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-badge i { font-size: 14px; }

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 60px;
    right: 8%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.hero-dots { display: flex; gap: 8px; }

.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active { background: var(--gold); transform: scale(1.3); }

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

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

.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-white {
    background: #fff;
    color: var(--navy);
}

.btn-white:hover { background: var(--gold); color: var(--navy); }

.btn-sm { padding: 8px 16px; font-size: 12px; }

.btn-lg { padding: 16px 32px; font-size: 15px; }

.btn-block { width: 100%; }

.btn-icon {
    width: 36px; height: 36px;
    padding: 0;
    border-radius: var(--radius-sm);
}

/* Loading state */
.btn .btn-loader { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: inline; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-cta { text-align: center; margin-top: 48px; }

/* Stats Section */
.stats-section { background: var(--bg-secondary); padding: 60px 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

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

.stat-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--navy);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section { background: var(--bg-primary); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 28px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-img-badge i { font-size: 28px; color: var(--gold); }

.about-img-badge span { font-size: 12px; color: var(--text-primary); font-weight: 600; text-align: center; }

.about-text { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }

.about-features { margin-bottom: 32px; }

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.about-features li i { font-size: 18px; }

/* Campaigns */
.campaigns-section { background: var(--bg-secondary); }

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.campaign-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.campaign-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.campaign-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

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

.campaign-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.campaign-body { padding: 24px; }

.campaign-title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }

.campaign-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }

.campaign-progress { margin-top: 12px; }

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 1s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Realizations */
.realizations-section { background: var(--bg-primary); }

.realizations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.realization-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.realization-img { position: relative; height: 260px; overflow: hidden; }

.realization-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

.realization-card:hover .realization-img img { transform: scale(1.08); }

.realization-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.realization-link {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.realization-link:hover { transform: scale(1.1); }

.realization-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.realization-body { padding: 24px; }

.realization-body h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }

.realization-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }

.realization-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.realization-meta i { margin-right: 4px; }

/* Testimonials */
.testimonials-section { background: var(--bg-secondary); overflow: hidden; }

.testimonials-slider { position: relative; }

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 360px;
    padding: 32px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-quote { font-size: 36px; color: var(--gold); opacity: 0.5; margin-bottom: 16px; }

.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; font-style: italic; }

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

.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }

.testimonial-author h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); }

.testimonial-rating { font-size: 12px; margin-top: 4px; }

.text-gold { color: var(--gold); }

.text-muted { color: var(--text-light); }

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Partners */
.partners-section { background: var(--bg-primary); padding: 60px 0; }

.partners-marquee { overflow: hidden; }

.partners-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

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

.partner-logo img { height: 100%; width: auto; object-fit: contain; max-width: 140px; }

/* CTA Section */
.cta-section { position: relative; padding: 120px 0; overflow: hidden; }

.cta-bg { position: absolute; inset: 0; }

.cta-bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(10, 22, 40, 0.8));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-desc { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.7; }

.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   AUTHENTICATION
   ============================================ */
.auth-section {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e1a 0%, #0a1628 50%, #111827 100%);
}

.auth-bg { display: none; }

.auth-bg img { display: none; }

.auth-overlay { display: none; }

.auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
}

.auth-card {
    padding: 48px;
    border-radius: var(--radius-lg);
}

.auth-header { text-align: center; margin-bottom: 32px; }

.auth-logo { height: 56px; margin: 0 auto 16px; }

.auth-header h1 { font-family: 'Inter', sans-serif; font-size: 28px; color: #fff; margin-bottom: 8px; }

.auth-header p { font-size: 14px; color: rgba(255,255,255,0.6); }

.auth-form .form-group { margin-bottom: 20px; }

.auth-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.auth-form label i { color: var(--gold); font-size: 12px; }

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input-group { display: flex; position: relative; }

.input-group .form-input { padding-right: 44px; }

.input-group-append {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.input-group-append:hover { color: var(--gold); }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}

.checkbox-label input { display: none; }

.checkmark {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.checkbox-label input:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\2713';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
}

.forgot-link { font-size: 13px; color: var(--gold); }

.forgot-link:hover { color: var(--gold-light); }

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.auth-footer a { color: var(--gold); font-weight: 600; }

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.auth-back:hover { color: var(--gold); }

/* File Input */
.file-input { display: none; }

.file-input-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.file-input-label:hover { border-color: var(--gold); color: var(--gold); }

.file-name { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }

.password-strength { margin-top: 6px; font-size: 12px; }

.strength-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 4px; overflow: hidden; }

.strength-bar div { height: 100%; border-radius: 2px; transition: width 0.3s; }

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Error text */
.error-text {
    display: block;
    color: var(--danger);
    font-size: 12px;
    margin-top: 4px;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-section { padding-top: 70px; }

.dashboard-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 40px 0;
    margin-bottom: 32px;
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.welcome-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.dashboard-welcome h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.dashboard-welcome p { font-size: 14px; color: rgba(255,255,255,0.6); }

.member-badge {
    margin-left: auto;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-standard { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #fff; }

.badge-premium { background: linear-gradient(135deg, #D4AF37, #B8941F); color: #fff; }

.badge-vip { background: linear-gradient(135deg, #1a1a1a, #000); color: #FFD700; border: 1px solid #FFD700; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card-mini {
    padding: 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-mini-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    flex-shrink: 0;
}

.stat-mini-info h3 { font-size: 20px; font-weight: 800; color: var(--text-primary); }

.stat-mini-info p { font-size: 12px; color: var(--text-muted); }

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.dashboard-card { margin-bottom: 24px; }

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h3 i { color: var(--gold); font-size: 14px; }

.card-body { padding: 20px 24px; }

/* Tables */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.table { width: 100%; border-collapse: collapse; }

.table th {
    text-align: left;
    padding: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.table td {
    padding: 12px;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.table tbody tr:hover { background: rgba(212, 175, 55, 0.03); }

.table-project, .table-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-project img, .table-user img {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.table-project-icon, .table-user-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    text-align: center;
}

.quick-action i {
    font-size: 24px;
    width: 50px; height: 50px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action span { font-size: 13px; font-weight: 500; }

.quick-action:hover { transform: translateY(-4px); color: var(--gold); }

/* Card Preview */
.card-preview { text-align: center; }

.mini-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius);
    padding: 20px;
    color: #fff;
    max-width: 320px;
    margin: 0 auto 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mini-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
}

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

.mini-card-header img { height: 20px; }

.mini-card-level {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.mini-card-chip { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }

.mini-card-chip .chip {
    width: 36px; height: 28px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 6px;
    position: relative;
}

.mini-card-chip .chip::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
}

.mini-card-chip i { font-size: 14px; color: rgba(255,255,255,0.4); transform: rotate(90deg); }

.mini-card-number { font-size: 16px; letter-spacing: 2px; font-family: 'Courier New', monospace; margin-bottom: 12px; }

.mini-card-footer { display: flex; justify-content: space-between; font-size: 11px; }

.mini-card-footer .label { display: block; color: rgba(255,255,255,0.5); font-size: 8px; text-transform: uppercase; }

.card-actions { display: flex; gap: 8px; justify-content: center; }

/* Notifications */
.notification-list { display: flex; flex-direction: column; gap: 12px; }

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.notification-item:hover { background: rgba(212, 175, 55, 0.03); }

.notification-item.unread { background: rgba(212, 175, 55, 0.05); }

.notification-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

.notification-item.read .notification-dot { background: var(--border); }

.notification-content h4 { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }

.notification-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

.notification-time { font-size: 11px; color: var(--text-light); }

/* Activity */
.activity-list { display: flex; flex-direction: column; gap: 12px; }

.activity-item { display: flex; gap: 12px; align-items: flex-start; }

.activity-icon {
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
}

.activity-content p { font-size: 13px; color: var(--text-primary); }

.activity-content span { font-size: 11px; color: var(--text-light); }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.empty-state i { font-size: 48px; margin-bottom: 16px; display: block; color: var(--border); }

.empty-state p { margin-bottom: 16px; }

.empty-state.small { padding: 24px; }

.empty-state.small i { font-size: 32px; }

/* ============================================
   ADMIN
   ============================================ */
.admin-section { padding-top: 70px; padding-bottom: 40px; }

.admin-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 32px 0;
    margin-bottom: 32px;
}

.admin-header h1 { font-size: 24px; font-weight: 700; color: #fff; }

.admin-header h1 i { color: var(--gold); margin-right: 10px; }

.admin-header p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Admin Stats */
.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.admin-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.admin-stat-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.admin-stat-icon.members { background: rgba(59, 130, 246, 0.1); color: var(--info); }

.admin-stat-icon.projects { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

.admin-stat-icon.donations { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.admin-stat-icon.funding { background: rgba(212, 175, 55, 0.1); color: var(--gold); }

.admin-stat-icon.campaigns { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

.admin-stat-info h3 { font-size: 22px; font-weight: 800; color: var(--text-primary); }

.admin-stat-info p { font-size: 12px; color: var(--text-muted); }

.stat-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 4px;
    display: inline-block;
}

.stat-badge.pending { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

/* Admin Row/Col */
.admin-row { display: grid; gap: 24px; margin-bottom: 24px; }

.admin-col-8 { grid-column: span 2; }

.admin-col-6 { grid-column: span 1; }

.admin-col-4 { grid-column: span 1; }

.admin-row:has(.admin-col-8) { grid-template-columns: 2fr 1fr; }

.admin-row:has(.admin-col-6:first-child) { grid-template-columns: 1fr 1fr; }

/* Admin Card */
.admin-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.admin-card .card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }

.admin-card .card-body { padding: 24px; }

/* Timeline */
.activity-timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-left: 2px solid var(--border);
    margin-left: 19px;
    padding-left: 24px;
    position: relative;
}

.timeline-icon {
    position: absolute;
    left: -11px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: var(--gold);
}

.timeline-content p { font-size: 13px; color: var(--text-primary); }

.timeline-meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active, .badge-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.status-pending, .badge-warning { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

.status-inactive, .badge-secondary { background: rgba(113, 128, 150, 0.1); color: var(--text-muted); }

.status-rejected, .badge-danger { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

.status-accepted { background: rgba(59, 130, 246, 0.1); color: var(--info); }

.status-funded { background: rgba(212, 175, 55, 0.1); color: var(--gold); }

.status-completed { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.status-default { background: var(--border); color: var(--text-muted); }

.badge-info { background: rgba(59, 130, 246, 0.1); color: var(--info); }

.badge-standard { background: rgba(192, 192, 192, 0.15); color: #888; }

.badge-premium { background: rgba(212, 175, 55, 0.15); color: var(--gold); }

.badge-vip { background: rgba(26, 26, 26, 0.15); color: #FFD700; }

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 24px;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-sm { max-width: 400px; }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); }

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--danger); }

.modal-body { padding: 24px; }

/* Language Modal */
.lang-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    margin-bottom: 8px;
}

.lang-option:hover, .lang-option.active { background: rgba(212, 175, 55, 0.1); }

.lang-flag { font-size: 24px; }

.lang-name { font-size: 15px; font-weight: 500; flex: 1; }

/* ============================================
   TOASTS
   ============================================ */
.toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.3s ease;
    font-size: 14px;
}

@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.success { border-left: 4px solid var(--success); }

.toast.error { border-left: 4px solid var(--danger); }

.toast.warning { border-left: 4px solid var(--warning); }

.toast.info { border-left: 4px solid var(--info); }

.toast i { font-size: 18px; flex-shrink: 0; }

.toast.success i { color: var(--success); }

.toast.error i { color: var(--danger); }

/* ============================================
   SCROLL TO TOP & THEME TOGGLE
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-top:hover { background: var(--gold-light); transform: translateY(-4px); }

.theme-toggle {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
}

.theme-toggle:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }

.footer-top { padding: 80px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo { height: 48px; margin-bottom: 16px; }

.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.5); }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-links h4, .footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a, .footer-contact li {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

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

.footer-contact i { color: var(--gold); width: 18px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.footer-legal { display: flex; align-items: center; gap: 16px; }

.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); }

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

.footer-legal .separator { color: rgba(255,255,255,0.2); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

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

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

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

[data-animate] { opacity: 0; }

[data-animate="fade-up"].animated { animation: fadeUp 0.6s ease forwards; }

[data-animate="fade-right"].animated { animation: fadeRight 0.6s ease forwards; }

[data-animate="fade-left"].animated { animation: fadeLeft 0.6s ease forwards; }

[data-animate="scale-in"].animated { animation: scaleIn 0.6s ease forwards; }

/* Stagger delays */
[data-delay="100"] { animation-delay: 0.1s !important; }

[data-delay="200"] { animation-delay: 0.2s !important; }

[data-delay="300"] { animation-delay: 0.3s !important; }

[data-delay="400"] { animation-delay: 0.4s !important; }

[data-delay="500"] { animation-delay: 0.5s !important; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold); }

.text-primary { color: var(--text-primary); }

.text-secondary { color: var(--text-secondary); }

.text-muted { color: var(--text-muted); }

.text-success { color: var(--success); }

.text-danger { color: var(--danger); }

.text-warning { color: var(--warning); }

.font-weight-600 { font-weight: 600; }

.font-weight-700 { font-weight: 700; }

.font-weight-800 { font-weight: 800; }

.d-flex { display: flex; }

.justify-between { justify-content: space-between; }

.align-center { align-items: center; }

.gap-2 { gap: 8px; }

.gap-3 { gap: 12px; }

.gap-4 { gap: 16px; }

.mb-2 { margin-bottom: 8px; }

.mb-3 { margin-bottom: 12px; }

.mb-4 { margin-bottom: 16px; }

.mt-2 { margin-top: 8px; }

.mt-3 { margin-top: 12px; }

.mt-4 { margin-top: 16px; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar, .footer, .scroll-top, .theme-toggle, .hero-controls, .hero-progress { display: none !important; }
    .hero { height: auto; min-height: auto; }
    .hero-content { position: relative; padding: 40px 24px; }
    .hero-title { color: #000 !important; }
    body { background: #fff !important; color: #000 !important; }
}

/* =========================
   MOBILE HERO FIX
========================= */
@media (max-width: 768px) {

    .hero {
        height: 100vh;
        height: 100svh; /* corrige mobile moderne */
    }

    .hero-content {
        padding: 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 10px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-controls {
        bottom: 10px;
        gap: 10px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}