/* ================================================================
   FAT UNITED — Modern Design System v2.0 (Bootstrap 5.3 RTL)
   Color: Black #060606 + Gold #F5A623
   Fonts: Cairo (body), Oswald (labels/nav), Bebas Neue (display)
   ================================================================ */

/* ── CSS Variables + Bootstrap Dark Override ── */
:root,
[data-bs-theme="dark"] {
    --bs-body-bg: #060606;
    --bs-body-color: #FAFAFA;
    --bs-border-color: rgba(245,166,35,0.1);

    /* Brand */
    --fu-gold: #F5A623;
    --fu-gold-light: #FFD700;
    --fu-gold-dark: #C8860A;
    --fu-orange: #FF6B00;

    /* Surfaces */
    --fu-black: #060606;
    --fu-black-2: #0a0a0a;
    --fu-black-3: #111111;
    --fu-black-card: rgba(255,255,255,0.025);
    --fu-white: #FAFAFA;
    --fu-gray: #888888;
    --fu-gray-light: rgba(255,255,255,0.06);

    /* Borders */
    --fu-border: rgba(255,255,255,0.06);
    --fu-border-hover: rgba(245,166,35,0.35);
    --fu-border-gold: rgba(245,166,35,0.12);

    /* Effects */
    --fu-radius: 12px;
    --fu-radius-lg: 16px;
    --fu-radius-xl: 24px;
    --fu-shadow: 0 8px 32px rgba(0,0,0,0.5);
    --fu-shadow-gold: 0 8px 40px rgba(245,166,35,0.12);
    --fu-shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --fu-transition: cubic-bezier(0.25,0.46,0.45,0.94);
    --fu-glass: rgba(255,255,255,0.03);
    --fu-glass-border: rgba(255,255,255,0.08);

    /* Spacing scale (8px grid) */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 24px;
    --sp-6: 32px;
    --sp-7: 48px;
    --sp-8: 64px;
    --sp-9: 80px;
    --sp-10: 120px;
}

/* ── Base ── */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--fu-black);
    color: var(--fu-white);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--fu-gold);
    color: var(--fu-black);
}

img { max-width: 100%; height: auto; }
a { transition: color 0.3s var(--fu-transition), opacity 0.3s var(--fu-transition); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--fu-black); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--fu-gold), var(--fu-gold-dark));
    border-radius: 3px;
}

/* ================================================================
   NAVBAR — Glassmorphism
   ================================================================ */
.fu-navbar {
    padding: 14px 0;
    background: rgba(6,6,6,0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: transform 0.4s ease, padding 0.3s ease, background 0.3s ease;
    z-index: 1050;
}
.fu-navbar.nav-hidden {
    transform: translateY(-100%);
}
.fu-navbar.nav-compact {
    padding: 8px 0;
    background: rgba(6,6,6,0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}
.fu-navbar.nav-compact .nav-logo {
    height: 36px;
}

.fu-navbar .nav-link {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.5) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.2px;
}
.fu-navbar .nav-link:hover,
.fu-navbar .nav-link.active {
    color: var(--fu-white) !important;
}
.fu-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 16px;
    left: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--fu-gold), var(--fu-orange));
    border-radius: 1px;
}

.nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-social-link:hover {
    border-color: var(--fu-gold);
    color: var(--fu-gold);
    background: rgba(245,166,35,0.08);
    transform: translateY(-1px);
}

/* ── Buttons ── */
.btn-gold {
    background: linear-gradient(135deg, var(--fu-gold), var(--fu-orange));
    color: var(--fu-black) !important;
    font-weight: 800;
    border: none;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--fu-gold-light), var(--fu-gold));
    opacity: 0;
    transition: opacity 0.35s;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,166,35,0.4);
    color: var(--fu-black) !important;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold > * { position: relative; z-index: 1; }

.btn-outline-gold {
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--fu-gold) !important;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s;
}
.btn-outline-gold:hover {
    border-color: var(--fu-gold);
    background: rgba(245,166,35,0.08);
    color: var(--fu-gold) !important;
    transform: translateY(-1px);
}

.btn-ghost {
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--fu-white) !important;
    font-weight: 700;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: var(--fu-white) !important;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.fu-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated background grid */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,166,35,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,166,35,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 25s linear infinite;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
@keyframes gridShift {
    0%   { transform: perspective(500px) rotateX(55deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(55deg) translateY(60px); }
}

/* Radial glow */
.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.fu-hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fu-gold);
    background: rgba(245,166,35,0.04);
    backdrop-filter: blur(10px);
    animation: fadeUp 0.8s ease-out;
}
.hero-badge .pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--fu-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.25;
    animation: fadeUp 0.8s ease-out 0.15s both;
    letter-spacing: -0.5px;
}
.hero-title .text-gold {
    color: var(--fu-gold);
    text-shadow: 0 0 60px rgba(245,166,35,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 17px;
    font-weight: 600;
    max-width: 560px;
    line-height: 1.9;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    animation: fadeUp 0.8s ease-out 0.45s both;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, var(--fu-gold), transparent);
    margin: 0 auto;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   HERO LOGO
   ================================================================ */
.hero-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: heroLogoIn 1.3s cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

.hero-logo::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.13) 0%, transparent 68%);
    animation: hloOrb 3.5s ease-in-out infinite 1.3s;
    z-index: 0;
}

.hero-logo-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: heroFloat 4.5s ease-in-out infinite 1.3s;
    transform-origin: center center;
}
@media (max-width: 576px) {
    .hero-logo-img  { width: 120px; height: 120px; }
    .hero-logo::before { width: 160px; height: 160px; }
}

/* Spinning rings */
.hlo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}
.hlo-ring-1 {
    inset: -24px;
    border-color: rgba(245,166,35,0.28);
    animation: ringCW 8s linear infinite 1.3s;
}
.hlo-ring-2 {
    inset: -44px;
    border-color: rgba(245,166,35,0.11);
    border-style: dashed;
    animation: ringCCW 14s linear infinite 1.3s;
}
.hlo-ring-3 {
    inset: -12px;
    border-width: 2px;
    border-top-color:    rgba(245,166,35,0.9);
    border-right-color:  rgba(245,166,35,0.3);
    border-bottom-color: transparent;
    border-left-color:   transparent;
    animation: ringCW 1.8s linear infinite 1.3s;
    filter: drop-shadow(0 0 4px rgba(245,166,35,0.6));
}

@keyframes heroLogoIn {
    0%   { opacity: 0; transform: scale(0.35) rotate(-15deg); filter: blur(18px); }
    55%  { filter: blur(0); }
    100% { opacity: 1; transform: scale(1)    rotate(0deg);   filter: blur(0); }
}
@keyframes heroFloat {
    0%   { transform: translateY(0) rotate(0deg) scale(1);
           filter: drop-shadow(0 0 22px rgba(245,166,35,0.5)); }
    20%  { transform: translateY(-7px) rotate(2.5deg) scale(1.03);
           filter: drop-shadow(0 0 28px rgba(245,166,35,0.65)); }
    40%  { transform: translateY(-15px) rotate(0deg) scale(1.06);
           filter: drop-shadow(0 0 38px rgba(245,166,35,0.85)); }
    60%  { transform: translateY(-9px) rotate(-2.5deg) scale(1.03);
           filter: drop-shadow(0 0 28px rgba(245,166,35,0.65)); }
    80%  { transform: translateY(-3px) rotate(-1deg) scale(1.01);
           filter: drop-shadow(0 0 24px rgba(245,166,35,0.55)); }
    100% { transform: translateY(0) rotate(0deg) scale(1);
           filter: drop-shadow(0 0 22px rgba(245,166,35,0.5)); }
}
@keyframes hloOrb {
    0%, 100% { transform: scale(1);    opacity: 0.7; }
    50%      { transform: scale(1.35); opacity: 1;   }
}
@keyframes ringCW  { to { transform: rotate(360deg);  } }
@keyframes ringCCW { to { transform: rotate(-360deg); } }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   IMPACT COUNTERS
   ================================================================ */
.fu-impact {
    padding: 56px 0;
    border-top: 1px solid var(--fu-border);
    border-bottom: 1px solid var(--fu-border);
    background: var(--fu-black-2);
}

.impact-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 4.5rem);
    color: var(--fu-gold);
    line-height: 1;
    letter-spacing: 2px;
}

.impact-label {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    margin-top: 4px;
}

.impact-divider {
    width: 1px;
    height: 50px;
    background: rgba(245,166,35,0.12);
    align-self: center;
}

/* ================================================================
   SECTION UTILITIES
   ================================================================ */
.fu-section {
    padding: 90px 0;
    position: relative;
}
.fu-section-lg {
    padding: 110px 0;
    position: relative;
}

.section-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--fu-gold);
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.85;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.3px;
}
.section-title .text-gold { color: var(--fu-gold); }

.section-desc {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.9;
}

/* ── Gold accent line ── */
.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, rgba(245,166,35,0.15) 20%, var(--fu-gold) 50%, rgba(245,166,35,0.15) 80%, transparent 95%);
}

/* ================================================================
   MISSION SECTION
   ================================================================ */
.fu-mission {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.03) 0%, transparent 60%),
        var(--fu-black-2);
}
.mission-text {
    font-size: 18px;
    line-height: 2.1;
    color: rgba(255,255,255,0.5);
    border-right: 3px solid var(--fu-gold);
    padding-right: 24px;
}

/* ================================================================
   CARD SYSTEM — Modern Glass
   ================================================================ */
.fu-card {
    background: var(--fu-black-card);
    border: 1px solid var(--fu-glass-border);
    border-radius: var(--fu-radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--fu-transition);
    height: 100%;
    backdrop-filter: blur(6px);
}
.fu-card:hover {
    border-color: var(--fu-border-hover);
    transform: translateY(-6px);
    box-shadow: var(--fu-shadow-card), var(--fu-shadow-gold);
}

/* Event Card */
.event-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.7s var(--fu-transition);
}
.fu-card:hover .event-card-img {
    transform: scale(1.06);
}
.event-card-img-wrap {
    overflow: hidden;
    position: relative;
}
.event-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    pointer-events: none;
}
.event-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.event-card-body {
    padding: 22px;
}
.event-card-date {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--fu-gold);
    font-weight: 500;
}
.event-card-title {
    font-size: 18px;
    font-weight: 800;
    margin: 8px 0 10px;
    color: var(--fu-white);
    line-height: 1.4;
}
.event-card-location {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.event-card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--fu-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.015);
}
.event-card-stat {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.event-card-stat strong {
    color: var(--fu-gold);
    font-weight: 800;
}

/* Hero Card */
.hero-card-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
}
.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--fu-transition), filter 0.7s ease;
}
.fu-card:hover .hero-card-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}
.hero-card-body {
    padding: 18px;
}
.hero-card-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
}
.hero-card-role {
    font-size: 12px;
    color: var(--fu-gold);
    font-weight: 700;
}
.hero-card-quote {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    line-height: 1.6;
    font-style: italic;
}

/* ================================================================
   FEATURED EVENT (Homepage)
   ================================================================ */
.fu-featured {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.03) 0%, transparent 50%),
        var(--fu-black-2);
}
.featured-img {
    border-radius: var(--fu-radius-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
    border: 1px solid var(--fu-glass-border);
    transition: transform 0.5s var(--fu-transition), box-shadow 0.5s;
}
.featured-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.featured-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
}
.featured-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}
.featured-meta i {
    color: var(--fu-gold);
    margin-left: 4px;
    font-size: 16px;
}
.featured-desc {
    color: rgba(255,255,255,0.45);
    line-height: 1.9;
}
.featured-stat-box {
    padding: 18px;
    border: 1px solid var(--fu-glass-border);
    border-radius: var(--fu-radius);
    background: var(--fu-glass);
    text-align: center;
    transition: all 0.3s;
}
.featured-stat-box:hover {
    border-color: var(--fu-border-hover);
    background: rgba(245,166,35,0.04);
}
.featured-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--fu-gold);
    line-height: 1;
}
.featured-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}

/* ================================================================
   HEROES PAGE
   ================================================================ */
.fu-page-hero {
    padding: 140px 0 60px;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(245,166,35,0.04) 0%, transparent 60%),
        var(--fu-black-2);
    border-bottom: 1px solid var(--fu-border);
}

.filter-btn {
    padding: 8px 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    background: transparent;
    color: rgba(255,255,255,0.45);
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover {
    border-color: var(--fu-border-hover);
    color: var(--fu-white);
    background: rgba(245,166,35,0.04);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--fu-gold), var(--fu-orange));
    border-color: transparent;
    color: var(--fu-black);
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(245,166,35,0.25);
}

/* ================================================================
   HERO MODAL
   ================================================================ */
.modal-content.fu-modal {
    background: var(--fu-black-3);
    border: 1px solid var(--fu-glass-border);
    border-radius: var(--fu-radius-lg);
    color: var(--fu-white);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.fu-modal .btn-close {
    filter: invert(1);
    opacity: 0.5;
}
.fu-modal .modal-body {
    padding: 0;
}
.modal-hero-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.modal-hero-info {
    padding: 28px;
}
.modal-hero-name {
    font-size: 24px;
    font-weight: 900;
}
.modal-hero-role {
    font-size: 14px;
    color: var(--fu-gold);
    font-weight: 700;
}
.modal-hero-quote {
    font-style: italic;
    color: rgba(255,255,255,0.4);
    border-right: 2px solid var(--fu-gold);
    padding-right: 14px;
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.8;
}
.modal-hero-bio {
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
}

/* ================================================================
   EVENT DETAIL PAGE
   ================================================================ */
.event-hero-img {
    width: 100%;
    height: clamp(250px, 40vw, 420px);
    object-fit: cover;
    border-radius: var(--fu-radius-lg);
    border: 1px solid var(--fu-glass-border);
}

.event-stat-card {
    padding: 22px;
    border: 1px solid var(--fu-glass-border);
    border-radius: var(--fu-radius);
    background: var(--fu-glass);
    text-align: center;
    transition: all 0.35s;
}
.event-stat-card:hover {
    border-color: var(--fu-border-hover);
    background: rgba(245,166,35,0.04);
    transform: translateY(-2px);
}
.event-stat-icon {
    font-size: 28px;
    color: var(--fu-gold);
    margin-bottom: 8px;
}
.event-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--fu-white);
    letter-spacing: 1px;
}
.event-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* Gallery */
.gallery-item {
    border-radius: var(--fu-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s var(--fu-transition);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item::after {
    content: '\F52E';
    font-family: 'bootstrap-icons';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,6,6,0.5);
    color: var(--fu-gold);
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: var(--fu-radius);
}
.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.fu-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6,6,6,0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fu-lightbox.active { display: flex; }
.fu-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--fu-radius);
    object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    color: var(--fu-gold);
    border-color: var(--fu-border-hover);
    background: rgba(245,166,35,0.08);
}
.lb-close { top: 20px; left: 20px; }
.lb-prev  { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { left: 20px;  top: 50%; transform: translateY(-50%); }

/* ================================================================
   FOOTER — Modern
   ================================================================ */
.fu-footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--fu-border);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.02) 0%, transparent 50%),
        var(--fu-black-2);
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid var(--fu-gold);
    border-radius: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: var(--fu-gold);
}

.footer-brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--fu-gold);
    font-weight: 600;
}
.footer-brand-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

.footer-social-wrapper {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--fu-border);
    border-radius: 50px;
    background: var(--fu-glass);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.35s;
    overflow: hidden;
}
.footer-social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s;
}
.footer-social-link:hover {
    border-color: var(--fu-gold);
    color: var(--fu-gold);
    background: rgba(245,166,35,0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(245,166,35,0.15);
}
.footer-social-link:hover img {
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}
@media (min-width: 992px) {
    .footer-links { justify-content: flex-end; }
}
.footer-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
}
.footer-links a:hover {
    color: var(--fu-gold);
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--fu-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: right;
}
.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-divider {
    border-color: rgba(255,255,255,0.04);
    margin: 32px 0 18px;
}
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.3px;
}

/* ================================================================
   REVEAL ON SCROLL ANIMATION
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s var(--fu-transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.stagger-children > .reveal:nth-child(1)  { transition-delay: 0s; }
.stagger-children > .reveal:nth-child(2)  { transition-delay: 0.06s; }
.stagger-children > .reveal:nth-child(3)  { transition-delay: 0.12s; }
.stagger-children > .reveal:nth-child(4)  { transition-delay: 0.18s; }
.stagger-children > .reveal:nth-child(5)  { transition-delay: 0.24s; }
.stagger-children > .reveal:nth-child(6)  { transition-delay: 0.30s; }
.stagger-children > .reveal:nth-child(7)  { transition-delay: 0.36s; }
.stagger-children > .reveal:nth-child(8)  { transition-delay: 0.42s; }
.stagger-children > .reveal:nth-child(9)  { transition-delay: 0.48s; }
.stagger-children > .reveal:nth-child(10) { transition-delay: 0.54s; }
.stagger-children > .reveal:nth-child(11) { transition-delay: 0.60s; }
.stagger-children > .reveal:nth-child(12) { transition-delay: 0.66s; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-gold  { color: var(--fu-gold) !important; }
.bg-dark-2  { background: var(--fu-black-2) !important; }
.bg-dark-3  { background: var(--fu-black-3) !important; }
.border-gold { border-color: var(--fu-border) !important; }
.fs-bebas   { font-family: 'Bebas Neue', sans-serif; }
.fs-oswald  { font-family: 'Oswald', sans-serif; }

/* ================================================================
   RESPONSIVE FINE-TUNING
   ================================================================ */
@media (max-width: 991.98px) {
    .fu-navbar .navbar-collapse {
        background: rgba(6,6,6,0.97);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 0 0 var(--fu-radius-lg) var(--fu-radius-lg);
        margin-top: 8px;
        border: 1px solid var(--fu-glass-border);
        box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }
    .fu-navbar .nav-link.active::after { display: none; }
    .featured-img { height: 280px; }
    .nav-logo { height: 38px; }
    .fu-navbar.nav-compact .nav-logo { height: 32px; }
}

@media (max-width: 575.98px) {
    .fu-section    { padding: 60px 0; }
    .fu-section-lg { padding: 72px 0; }
    .fu-page-hero  { padding: 120px 0 40px; }
    .impact-number { font-size: 2.6rem; }
    .impact-divider { display: none; }
    .featured-img  { height: 220px; }
    .event-hero-img { height: 220px; }
    .event-card-img { height: 180px; }

    .footer-social-wrapper {
        padding: 6px 12px;
    }
    .footer-social-link {
        width: 34px;
        height: 34px;
    }
}

/* ================================================================
   PARTNERS / شركاء النجاح
   ================================================================ */
.fu-partners {
    background: var(--fu-black-2);
}

/* Single-row flex strip — never wraps */
.partners-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--fu-gold-dark) transparent;
}

.partners-row::-webkit-scrollbar       { height: 4px; }
.partners-row::-webkit-scrollbar-track { background: transparent; }
.partners-row::-webkit-scrollbar-thumb { background: var(--fu-gold-dark); border-radius: 2px; }

/* Each logo card — never shrinks */
.partner-item {
    flex: 0 0 auto;
}

.partner-logo-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    padding: 12px;
    box-sizing: border-box;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--fu-transition), box-shadow var(--fu-transition);
}

.partner-logo-wrap:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.3);
}

.partner-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================================================================
   LANGUAGE SWITCH BUTTON
   ================================================================ */
.btn-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: 50px;
    color: var(--fu-gold);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    background: rgba(245,166,35,0.04);
}
.btn-lang-switch:hover {
    background: rgba(245,166,35,0.1);
    border-color: var(--fu-gold);
    color: var(--fu-gold);
    transform: translateY(-1px);
}

/* ================================================================
   LTR OVERRIDES (English mode — body.lang-en)
   ================================================================ */
body.lang-en .mission-text {
    border-right: none;
    border-left: 3px solid var(--fu-gold);
    padding-right: 0;
    padding-left: 24px;
}
body.lang-en .modal-hero-quote {
    border-right: none;
    border-left: 2px solid var(--fu-gold);
    padding-right: 0;
    padding-left: 14px;
}
body.lang-en .footer-links a::after {
    transform-origin: left;
}
body.lang-en .footer-links a:hover::after {
    transform-origin: right;
}
