/* ============================================
   Awami Baitulmaal Buldhana - Premium Stylesheet
   Islamic Light Theme with Glassmorphism
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Brand Colors */
    --primary-green: #69B016;
    --primary-green-rgb: 105, 176, 22;
    --primary-blue: #4360B0;
    --primary-blue-rgb: 67, 96, 176;
    --dark-bg: #0B0F14;
    --dark-bg-rgb: 11, 15, 20;
    --light-bg: #F8FAFC;
    --accent-gold: #D4AF37;
    --accent-gold-rgb: 212, 175, 55;
    --white: #FFFFFF;

    /* Extended Palette */
    --green-light: #8ED43A;
    --green-dark: #4E8A0E;
    --blue-light: #6B84CC;
    --blue-dark: #2D4280;
    --gold-light: #E8CC6E;
    --gold-dark: #B8941E;

    /* Neutral Colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-arabic: 'Amiri', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow-green: 0 0 30px rgba(var(--primary-green-rgb), 0.3);
    --shadow-glow-blue: 0 0 30px rgba(var(--primary-blue-rgb), 0.3);
    --shadow-glow-gold: 0 0 30px rgba(var(--accent-gold-rgb), 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(11, 15, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-green);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   3. ISLAMIC GEOMETRIC PATTERNS (CSS-Only)
   ============================================ */
.islamic-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: 
        linear-gradient(30deg, var(--primary-blue) 12%, transparent 12.5%, transparent 87%, var(--primary-blue) 87.5%, var(--primary-blue)),
        linear-gradient(150deg, var(--primary-blue) 12%, transparent 12.5%, transparent 87%, var(--primary-blue) 87.5%, var(--primary-blue)),
        linear-gradient(30deg, var(--primary-blue) 12%, transparent 12.5%, transparent 87%, var(--primary-blue) 87.5%, var(--primary-blue)),
        linear-gradient(150deg, var(--primary-blue) 12%, transparent 12.5%, transparent 87%, var(--primary-blue) 87.5%, var(--primary-blue)),
        linear-gradient(60deg, var(--primary-green) 25%, transparent 25.5%, transparent 75%, var(--primary-green) 75%, var(--primary-green)),
        linear-gradient(60deg, var(--primary-green) 25%, transparent 25.5%, transparent 75%, var(--primary-green) 75%, var(--primary-green));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

.islamic-pattern-dark {
    opacity: 0.05;
    background-image: 
        linear-gradient(30deg, var(--accent-gold) 12%, transparent 12.5%, transparent 87%, var(--accent-gold) 87.5%),
        linear-gradient(150deg, var(--accent-gold) 12%, transparent 12.5%, transparent 87%, var(--accent-gold) 87.5%),
        linear-gradient(30deg, var(--accent-gold) 12%, transparent 12.5%, transparent 87%, var(--accent-gold) 87.5%),
        linear-gradient(150deg, var(--accent-gold) 12%, transparent 12.5%, transparent 87%, var(--accent-gold) 87.5%),
        linear-gradient(60deg, rgba(255,255,255,0.1) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(60deg, rgba(255,255,255,0.1) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

/* ============================================
   4. SECTION STYLING
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #131B26 50%, #0D1520 100%);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-green);
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.section-header .section-subtitle::before,
.section-header .section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.section-header .section-subtitle::before {
    left: -20px;
}

.section-header .section-subtitle::after {
    right: -20px;
}

.section-header .section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-header .section-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-header .section-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   5. NAVBAR
   ============================================ */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(var(--primary-blue-rgb), 0.08);
    padding: 12px 0;
    transition: all 0.4s ease;
    z-index: 1050;
}

.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-spacer {
    height: 76px;
}

.nav-logo-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: 12px;
    border: 2px solid rgba(var(--primary-green-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-green-rgb), 0.1), rgba(var(--primary-blue-rgb), 0.1));
    flex-shrink: 0;
}

.nav-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-blue);
}

.brand-sub {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 12px;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link .nav-icon {
    display: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
    background: rgba(var(--primary-green-rgb), 0.08);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    border-radius: 2px;
}

/* Donate Button in Nav */
.btn-donate-nav {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-dark) 100%);
    color: var(--white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(var(--primary-green-rgb), 0.35);
    transition: all 0.3s ease;
}

.btn-donate-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-green-rgb), 0.5);
    color: var(--white) !important;
}

.donate-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-green);
    animation: donatePulse 2s ease-out infinite;
}

.donate-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: donateShine 3s ease-in-out infinite;
}

@keyframes donatePulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes donateShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Mobile Hamburger */
.navbar-toggler {
    border: none;
    padding: 8px;
    outline: none !important;
    box-shadow: none !important;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Floating Donate Button (Mobile) */
.floating-donate-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--white) !important;
    padding: 14px 22px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(var(--primary-green-rgb), 0.4);
    animation: floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(var(--dark-bg-rgb), 0.3) 0%,
        rgba(var(--dark-bg-rgb), 0.5) 50%,
        rgba(var(--dark-bg-rgb), 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-family: var(--font-primary);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Hero CTA Button */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-dark) 100%);
    border: none;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(var(--primary-green-rgb), 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: heroFloat 3s ease-in-out infinite;
    z-index: 5;
}

.btn-hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(var(--primary-green-rgb), 0.55);
    color: var(--white);
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.btn-hero-cta::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(var(--primary-green-rgb), 0.5);
    animation: ctaPulse 2s ease-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes btnShine {
    0% { left: -100%; }
    60% { left: 100%; }
    100% { left: 100%; }
}

@keyframes ctaPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* Hero Swiper Navigation */
.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--transition-normal);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-green);
    width: 36px;
    border-radius: 6px;
}

/* Particles Canvas */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   7. PAGE HEADERS (Sub-pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 45px 0 40px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2332 100%);
    overflow: hidden;
    text-align: left;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(var(--primary-blue-rgb), 0.15), transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(var(--primary-green-rgb), 0.1), transparent 60%);
}

.page-header h1 {
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.page-header .btn-hero-cta {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.page-breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 8px;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.page-breadcrumb a:hover {
    color: var(--primary-green);
}

.page-breadcrumb span {
    color: var(--primary-green);
    font-size: 14px;
}

/* ============================================
   8. GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card-dark {
    background: var(--glass-bg-dark);
    border-color: rgba(255,255,255,0.08);
}

/* ============================================
   9. ANIMATED GRADIENT BORDER
   ============================================ */
.gradient-border {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue), var(--accent-gold), var(--primary-green));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientBorder 4s ease infinite;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-border-inner {
    background: var(--white);
    border-radius: calc(var(--radius-lg) - 2px);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* ============================================
   10. CURRENT ACTIVITIES GALLERY
   ============================================ */
.activity-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.activity-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-image-card:hover {
    box-shadow: var(--shadow-glow-green);
    transform: translateY(-4px);
}

.activity-image-card:hover img {
    transform: scale(1.1);
}

.activity-image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.activity-image-card:hover::after {
    left: 130%;
}

.activity-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.activity-image-card:hover .activity-image-overlay {
    transform: translateY(0);
}

/* ============================================
   11. MONTHLY REPORT CARDS
   ============================================ */
.report-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.report-card:hover::before {
    transform: scaleX(1);
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.report-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(var(--primary-green-rgb), 0.1), rgba(var(--primary-blue-rgb), 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.report-card:hover .report-card-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    transform: scale(1.1);
}

.report-card .counter-value {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.report-card .counter-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Report month badge */
.report-month-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
    color: var(--white);
    padding: 10px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.3);
}

/* ============================================
   12. ABOUT PAGE
   ============================================ */
.about-tabs .nav-tabs {
    border: none;
    gap: 12px;
    margin-bottom: 32px;
}

.about-tabs .nav-link {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-600);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(var(--primary-green-rgb), 0.08), rgba(var(--primary-blue-rgb), 0.08));
    transition: height 0.3s ease;
    z-index: -1;
}

.about-tabs .nav-link:hover::before {
    height: 100%;
}

.about-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(var(--primary-green-rgb), 0.3);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ============================================
   13. ACTIVITIES PAGE
   ============================================ */
.activity-sidebar {
    position: sticky;
    top: 100px;
}

.activity-sidebar-nav {
    display: flex;
    flex-direction: column;
}

.activity-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-700);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.activity-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-blue));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.activity-btn:hover,
.activity-btn.active {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(var(--primary-green-rgb), 0.05);
    transform: translateX(4px);
}

.activity-btn:hover::before,
.activity-btn.active::before {
    transform: scaleY(1);
}

.activity-btn.active {
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(var(--primary-green-rgb), 0.3);
}

.activity-btn i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-green-rgb), 0.1);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.activity-btn.active i {
    background: rgba(255,255,255,0.2);
}

/* Activity Gallery Grid */
.activity-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.activity-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.activity-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-gallery-item:hover img {
    transform: scale(1.1);
}

.activity-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue), var(--accent-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.activity-gallery-item:hover::before {
    opacity: 1;
}

/* Light sweep animation */
.activity-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.activity-gallery-item:hover::after {
    left: 140%;
}

/* ============================================
   14. FUTURE PROJECTS
   ============================================ */
.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-blue);
    border-color: transparent;
}

.project-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-body {
    padding: 24px;
}

.project-card-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.project-card-body p {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-xl);
    color: var(--primary-blue);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn-view-details:hover {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.3);
}

/* Project Details Glassmorphism */
.project-details-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-blue-rgb), 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 24px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   15. MEDIA COVERAGE
   ============================================ */
.media-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.media-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-card:hover .media-card-image img {
    transform: scale(1.08);
}

.media-card-image .media-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    z-index: 1;
}

.media-card-body {
    padding: 20px;
}

.media-card-body h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;
}

/* Video Card */
.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: var(--dark-bg);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.video-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(var(--primary-green-rgb), 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 1;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(var(--primary-green-rgb), 0.5);
}

.video-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   16. GALLERY PAGE (Masonry)
   ============================================ */
.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue), var(--accent-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--dark-bg-rgb), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-md);
    z-index: 1;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 32px;
    color: var(--white);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* ============================================
   17. CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-green-rgb), 0.2);
}

.contact-info-card .info-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(var(--primary-green-rgb), 0.1), rgba(var(--primary-blue-rgb), 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 16px;
}

/* Social Media Large Buttons */
.social-large-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-large-btn i {
    font-size: 40px;
    transition: transform 0.3s ease;
}

.social-large-btn:hover {
    transform: translateY(-8px);
    color: var(--white);
}

.social-large-btn:hover i {
    transform: scale(1.2);
}

.social-large-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: socialPulse 2s ease-out infinite;
}

.social-large-btn:hover::before {
    opacity: 1;
}

@keyframes socialPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.08); opacity: 0; }
}

.social-youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
.social-youtube::before { border: 2px solid #FF0000; }
.social-youtube:hover { box-shadow: 0 8px 30px rgba(255,0,0,0.4); }

.social-facebook { background: linear-gradient(135deg, #1877F2, #1256A0); }
.social-facebook::before { border: 2px solid #1877F2; }
.social-facebook:hover { box-shadow: 0 8px 30px rgba(24,119,242,0.4); }

.social-instagram { background: linear-gradient(135deg, #E4405F, #833AB4, #FD1D1D); }
.social-instagram::before { border: 2px solid #E4405F; }
.social-instagram:hover { box-shadow: 0 8px 30px rgba(228,64,95,0.4); }

.social-twitter { background: linear-gradient(135deg, #1DA1F2, #0D8ECF); }
.social-twitter::before { border: 2px solid #1DA1F2; }
.social-twitter:hover { box-shadow: 0 8px 30px rgba(29,161,242,0.4); }

.social-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.social-whatsapp::before { border: 2px solid #25D366; }
.social-whatsapp:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

/* Google Map Embed */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gray-200);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   18. DONATE PAGE
   ============================================ */
.donate-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2332 50%, #0D1520 100%);
    padding: 50px 0 45px;
    text-align: left;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.donate-tagline {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quran-verse-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 700px;
    margin: 0 auto 24px;
}

.quran-verse-card .verse-text {
    font-family: var(--font-arabic);
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    line-height: 1.8;
}

.quran-verse-card .verse-ref {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
}

.hadith-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(var(--primary-green-rgb), 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.hadith-card .hadith-text {
    font-family: var(--font-arabic);
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.hadith-card .hadith-ref {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
}

.donation-info-section {
    padding: var(--section-padding);
}

.donation-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.donation-detail-card .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.donation-detail-card .detail-row:last-child {
    border-bottom: none;
}

.donation-detail-card .detail-label {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 15px;
}

.donation-detail-card .detail-value {
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-primary);
    font-size: 16px;
}

.qr-code-wrapper {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.qr-code-wrapper img {
    max-width: 300px;
    border-radius: var(--radius-md);
    border: 4px solid var(--gray-200);
}

/* ============================================
   19. FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #080C10 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(var(--accent-gold-rgb), 0.3) 20px, rgba(var(--accent-gold-rgb), 0.3) 21px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(var(--accent-gold-rgb), 0.3) 20px, rgba(var(--accent-gold-rgb), 0.3) 21px);
}

.footer-glow-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-gold), var(--primary-blue), transparent);
}

.footer-logo-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid rgba(var(--accent-gold-rgb), 0.3);
    margin-bottom: 12px;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.footer-title span {
    color: var(--primary-green);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-info-item i {
    color: var(--primary-green);
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-info-item a {
    color: rgba(255,255,255,0.6);
}

.footer-info-item a:hover {
    color: var(--primary-green);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Social */
.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-youtube:hover { background: #FF0000; }
.social-facebook:hover { background: #1877F2; }
.social-instagram:hover { background: #E4405F; }
.social-twitter:hover { background: #1DA1F2; }
.social-whatsapp:hover { background: #25D366; }

/* Footer Donate CTA */
.footer-donate-cta {
    background: rgba(var(--primary-green-rgb), 0.08);
    border: 1px solid rgba(var(--primary-green-rgb), 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.footer-donate-cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.btn-donate-footer {
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-donate-footer:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-green-rgb), 0.4);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copyright {
    font-size: 14px;
    margin: 0;
}

.admin-login-link {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease;
}

.admin-login-link:hover {
    color: var(--primary-green);
}

/* ============================================
   20. BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1040;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
    color: var(--white);
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-blue-rgb), 0.5);
}

/* ============================================
   21. LIGHTBOX
   ============================================ */
.lightbox-image {
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================
   22. CTA BANNER SECTION
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 50%, #1a2850 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   23. UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-green { box-shadow: var(--shadow-glow-green); }
.glow-blue { box-shadow: var(--shadow-glow-blue); }
.glow-gold { box-shadow: var(--shadow-glow-gold); }

/* Bullet list styling */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-600);
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

/* Tab content animation */
.tab-pane {
    animation: fadeInTab 0.4s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   24. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199.98px) {
    .section-header .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: var(--section-padding-sm);
    }

    .navbar-nav {
        padding: 16px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 16px;
    }

    .navbar-nav .nav-link .nav-icon {
        display: inline;
        margin-right: 8px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .activity-sidebar {
        position: static;
        margin-bottom: 24px;
        background: var(--white);
        padding: 16px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-200);
    }

    .activity-sidebar h4 {
        font-size: 18px;
        margin-bottom: 12px !important;
    }

    .activity-sidebar-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .activity-btn {
        display: inline-flex;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn-hero-cta {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-header .section-title {
        font-size: 26px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .page-header {
        padding: 30px 0 30px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .donate-hero {
        padding: 35px 0 30px;
    }

    .gallery-masonry {
        column-count: 1;
    }

    .activity-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .glass-card {
        padding: 20px;
    }

    .donate-tagline {
        font-size: 22px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .gallery-masonry {
        column-count: 1;
    }

    .report-card .counter-value {
        font-size: 28px;
    }
    
    .social-large-btn {
        padding: 24px 16px;
    }

    .social-large-btn i {
        font-size: 32px;
    }
}

/* ============================================
   25. ANIMATIONS (Custom Keyframes)
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    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 float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--primary-green-rgb), 0.2); }
    50% { box-shadow: 0 0 40px rgba(var(--primary-green-rgb), 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* No content placeholder */
.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.no-content i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.no-content p {
    font-size: 16px;
    font-weight: 500;
}
