:root {
    /* Legacy Variables - Overridden by theme.css for public pages */
    --primary-color: #0A2540;
    --primary-dark: #061526;
    --primary-light: #1E3A5F;
    --secondary-color: #F8FAFC;
    --accent-color: #D4AF37;
    --accent-dark: #B8962F;
    --text-dark: #0A2540;
    --text-light: #64748B;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --warning-color: #D4AF37;
    --danger-color: #EF4444;
    --shadow: 0 4px 6px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 10px 25px rgba(10, 37, 64, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Section Tag - Attractive Badge */
.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #2D4EFF 0%, #764BA2 100%);
    border: 2px solid #2D4EFF;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(45, 78, 255, 0.25);
    animation: slideInDown 0.6s ease-out;
}

.section-tag:hover {
    background: linear-gradient(135deg, #764BA2 0%, #2D4EFF 100%);
    border-color: #764BA2;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(45, 78, 255, 0.35);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

/* Program Cards */
.program-card {
    border-left: 4px solid var(--accent-color);
}

.program-date {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Premium Donate Button - Orange for Light Mode */
.btn-accent {
    background: linear-gradient(135deg, #FF6B35 0%, #E85A24 50%, #FF6B35 100%);
    background-size: 200% 200%;
    border: 2px solid transparent;
    color: #FFFFFF !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #FF8555 0%, #FF6B35 50%, #FF8555 100%);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Navigation - Professional */
.navbar-professional {
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f3f8 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(44, 90, 160, 0.08);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 2rem;
}

/* Brand */
.navbar-brand-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand-pro:hover {
    opacity: 0.85;
}

.navbar-logo-pro {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.navbar-menu-pro {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 0;
    margin: 0;
    flex: 1;
    align-items: center;
}

/* Hide mobile elements on desktop */
.navbar-toggle-pro {
    display: none;
}

.navbar-lang-mobile-pro {
    display: none;
}

.navbar-menu-pro li {
    position: relative;
    white-space: nowrap;
}

.navbar-menu-pro a {
    display: block;
    padding: 0.7rem 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.navbar-menu-pro a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-menu-pro a:hover {
    color: var(--primary-color);
}

.navbar-menu-pro a:hover::after {
    width: 60%;
}

/* Submenu Styles */
.navbar-menu-pro .submenu-wrapper {
    position: relative;
}

.navbar-menu-pro .submenu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    padding: 0.7rem 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.navbar-menu-pro .submenu-toggle::after {
    content: '▼';
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
}

.navbar-menu-pro .submenu-toggle:hover {
    color: var(--primary-color);
}

.navbar-menu-pro .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid rgba(44, 90, 160, 0.1);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    list-style: none;
}

.navbar-menu-pro .submenu-wrapper:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-menu-pro .submenu li {
    white-space: nowrap;
    border: none;
    list-style: none;
}

.navbar-menu-pro .submenu a {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-menu-pro .submenu a:hover {
    background: rgba(44, 90, 160, 0.08);
    color: var(--primary-color);
    padding-left: 1.4rem;
}

.navbar-menu-pro .submenu a::after {
    display: none;
}

/* Navbar Actions */
.navbar-actions-pro {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Theme Toggle Button */
.theme-toggle-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(45, 78, 255, 0.1);
    border: 1px solid rgba(45, 78, 255, 0.2);
    border-radius: 8px;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.theme-toggle-pro:hover {
    background: rgba(45, 78, 255, 0.2);
    border-color: rgba(45, 78, 255, 0.4);
    color: var(--premium-blue);
}

.theme-toggle-pro:active {
    transform: scale(0.95);
}

/* Language Switcher */
.language-switcher-pro {
    display: flex;
    align-items: center;
}

.lang-toggle-pro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-toggle-pro:hover {
    background: rgba(44, 90, 160, 0.08);
    color: var(--primary-color);
    border-color: rgba(44, 90, 160, 0.2);
}

.lang-toggle-pro i {
    font-size: 1rem;
}

/* Premium Header Donate Button - Orange */
.btn-donate-pro {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #FF6B35 0%, #E85A24 50%, #FF6B35 100%);
    background-size: 200% 200%;
    color: #FFFFFF !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-donate-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-donate-pro:hover {
    background: linear-gradient(135deg, #FF8555 0%, #FF6B35 50%, #FF8555 100%);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-donate-pro:hover::before {
    left: 100%;
}

.btn-donate-pro i {
    font-size: 1rem;
    color: #FFFFFF;
}

/* Old Navigation - Keep for compatibility */
.navbar {
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Language Switcher - Modern */
.language-switcher-modern {
    position: relative;
}

.btn-language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.btn-language-toggle:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 90, 160, 0.3);
}

.btn-language-toggle i {
    font-size: 1.1rem;
}

.language-switcher-modern .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 180px;
}

.language-switcher-modern .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.language-switcher-modern .dropdown-item:hover {
    background: #f0f4ff;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.language-switcher-modern .dropdown-item.active {
    background: #e8f0ff;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 700;
}

.language-switcher-modern .dropdown-item i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* Old Language Switcher - Keep for backward compatibility */
.language-switcher .btn {
    border: 1px solid var(--border-color);
    margin: 0 2px;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.language-switcher .btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #1a1f3a 100%);
    color: white;
    padding: 5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.footer h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer a:not(.btn):not(.btn-accent) {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:not(.btn):not(.btn-accent):hover {
    color: white;
}

/* Footer Donate Button - Orange Style (High Specificity) */
.footer .btn-accent,
.footer a.btn-accent,
.footer .btn.btn-accent,
footer .btn-accent,
footer a.btn-accent,
footer .btn.btn-accent {
    background: linear-gradient(135deg, #FF6B35 0%, #E85A24 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.footer .btn-accent:hover,
.footer a.btn-accent:hover,
.footer .btn.btn-accent:hover,
footer .btn-accent:hover,
footer a.btn-accent:hover,
footer .btn.btn-accent:hover {
    background: linear-gradient(135deg, #FF8555 0%, #FF6B35 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #999;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

.rounded-lg { border-radius: 12px; }
.shadow-sm { box-shadow: var(--shadow) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--warning-color);
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Membership Card */
.membership-card {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.membership-card h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Board Member Cards */
.board-member-card {
    text-align: center;
    padding: 1.5rem;
}

.board-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
}

.board-member-name {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.board-member-position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* News Section */
.news-section {
    background: #f8f9fa;
}

.section-header {
    flex-wrap: wrap;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-meta {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-read-more:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
}

.news-read-more i {
    font-size: 0.9rem;
}

/* Programs Section */
.programs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
    margin-top: 0;
}

.program-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.program-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.program-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.program-icon {
    font-size: 2.5rem;
    color: white;
}

.program-date-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.program-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.program-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.program-footer {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-color);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== CLEAN MINIMAL HERO SECTION ===== */

.hero-section-clean {
    position: relative;
    padding: 0.5rem 0 1.5rem 0;
    min-height: auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-section-clean::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section-clean::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(102,126,234,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)" /></svg>');
    pointer-events: none;
}

.hero-content-clean {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    padding-top: 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    color: #0A2540;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    animation: slideInLeft 0.6s ease-out;
}

.hero-tag i {
    font-size: 1rem;
}

.hero-title-clean {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    animation: slideInLeft 0.8s ease-out 0.1s both;
    margin: 1rem 0;
}

.hero-title-clean .highlight-text {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shimmer 8s ease-in-out infinite;
}

.hero-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 1rem 0 1.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-primary-clean,
.btn-secondary-clean {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary-clean {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary-clean {
    background: white;
    color: #0A2540;
    border: 2px solid #0A2540;
}

.btn-secondary-clean:hover {
    background: #f5f7fa;
    transform: translateY(-2px);
}

.hero-quick-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0A2540;
}

.stat-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

/* Hero Visual Cards */
.hero-visual-clean {
    position: relative;
    height: 500px;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    width: 160px;
}

.visual-card i {
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 0.8rem;
}

.visual-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.visual-card p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 150px;
    right: 0;
    animation: float 3s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-nav-modern {
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-actions {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-link-modern {
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .brand-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand-modern {
        gap: 0.5rem;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .brand-title {
        font-size: 1rem;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-donate-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section-clean {
        padding: 0.25rem 0 1rem 0;
    }

    .hero-title-clean {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin: 0.75rem 0 1rem 0;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary-clean,
    .btn-secondary-clean {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .hero-quick-stats {
        gap: 1.5rem;
    }
    
    .hero-visual-clean {
        display: none;
    }
    
    .news-card,
    .program-card-modern,
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .program-header {
        padding: 1.5rem;
    }
    
    /* Mobile Navbar Responsive */
    .navbar-content {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .navbar-brand-pro {
        order: 1;
        flex-basis: auto;
    }
    
    .navbar-logo-pro {
        height: 40px;
    }
    
    /* Mobile Language Switcher */
    .navbar-lang-mobile-pro {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        order: 2;
        padding: 0.5rem 0.75rem;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.85rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .navbar-lang-mobile-pro:hover {
        background: rgba(44, 90, 160, 0.08);
        color: var(--primary-color);
    }
    
    .navbar-lang-mobile-pro i {
        font-size: 1rem;
    }
    
    /* Hamburger Menu */
    .navbar-toggle-pro {
        display: flex;
        flex-direction: column;
        order: 3;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        gap: 0.4rem;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggle-pro span {
        width: 24px;
        height: 2.5px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }
    
    .navbar-toggle-pro.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .navbar-toggle-pro.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle-pro.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .navbar-menu-pro {
        order: 4;
        flex-basis: 100%;
        gap: 0;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(248, 249, 251, 0.95);
        border-top: 1px solid rgba(44, 90, 160, 0.1);
        margin-top: 0.5rem;
    }
    
    .navbar-menu-pro.active {
        max-height: 500px;
    }
    
    .navbar-menu-pro li {
        flex: none;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(44, 90, 160, 0.05);
    }
    
    .navbar-menu-pro a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        font-weight: 500;
        display: block;
    }
    
    /* Mobile Submenu Styles */
    .navbar-menu-pro .submenu-wrapper {
        position: static;
    }
    
    .navbar-menu-pro .submenu-toggle {
        padding: 0.75rem 1rem;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .navbar-menu-pro .submenu-toggle::after {
        content: '▼';
        font-size: 0.6rem;
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .navbar-menu-pro .submenu-toggle.active::after {
        transform: rotate(180deg);
    }
    
    .navbar-menu-pro .submenu {
        position: static;
        background: rgba(248, 249, 251, 0.6);
        border: none;
        border-left: 3px solid var(--primary-color);
        border-radius: 0;
        min-width: auto;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
        z-index: auto;
    }
    
    .navbar-menu-pro .submenu.active {
        max-height: 300px;
    }
    
    .navbar-menu-pro .submenu li {
        border: none;
    }
    
    .navbar-menu-pro .submenu a {
        padding: 0.6rem 1rem 0.6rem 1.5rem;
        font-size: 0.85rem;
        font-weight: 400;
    }
    
    .navbar-actions-pro {
        order: 5;
        display: none; /* Hidden by default on mobile */
        gap: 0.75rem;
        padding: 0.5rem 1rem;
        border-top: 1px solid rgba(44, 90, 160, 0.1);
        margin-top: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    
    /* Show actions only when menu is active */
    .navbar-actions-pro.active {
        display: flex;
    }
    
    .navbar-actions-pro .theme-toggle-pro {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .navbar-actions-pro .language-switcher-pro {
        display: none; /* Hide in mobile - already shown at top via navbar-lang-mobile-pro */
    }
    
    .navbar-actions-pro .btn-donate-pro {
        flex: 1;
        min-width: 120px;
        padding: 0.6rem 1rem;
        text-align: center;
        font-size: 0.9rem;
    }
    
    /* Hide desktop language switcher from mobile menu */
    .navbar-menu-pro .navbar-lang-link-pro {
        display: none;
    }
    
    .navbar-divider-pro {
        height: 1px;
        background: rgba(44, 90, 160, 0.1);
        margin: 0.5rem 0;
        border: none;
    }
    
    .navbar-lang-link-pro,
    .navbar-donate-link-pro {
        color: var(--text-dark);
        font-weight: 500;
    }
    
    .navbar-donate-link-pro {
        color: var(--accent-color);
        font-weight: 600;
    }
}

/* ═════════════════════════════════════════════════════════════════════════════
   PREMIUM CUSTOM HOMEPAGE STYLES - SENIOR CITIZENS NGO
   ═════════════════════════════════════════════════════════════════════════════ */

/* Color Palette - Updated to Deep Blue + Gold Theme */
:root {
    --premium-blue: #0A2540;
    --premium-purple: #1E3A5F;
    --premium-gold: #D4AF37;
    --premium-orange: #D4AF37;
    --premium-sky: #F8FAFC;
    --premium-beige: #FDF8F3;
    --text-dark: #0A2540;
    --text-light: #475569;
}

/* ═════════════════════════════════════════════════════════════════════════════
   HERO SECTION - PREMIUM, BOLD, EMOTIONAL
   ═════════════════════════════════════════════════════════════════════════════ */

.premium-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    padding: 20px 0 40px 0;
}

/* Hero Light Beam */
.premium-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 600px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    animation: light-beam-breathe 6s ease-in-out infinite;
    pointer-events: none;
}

/* Rich background with multiple layers - moved to hero-blob classes */

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1); }
    50% { border-radius: 70% 30% 40% 60% / 30% 60% 50% 40%; transform: scale(1.05); }
}

@keyframes morph-reverse {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1); }
    50% { border-radius: 30% 70% 60% 40% / 70% 40% 30% 60%; transform: scale(1.05); }
}

/* Light Beam Animation */
@keyframes light-beam-breathe {
    0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scaleY(1); }
    50% { opacity: 0.12; transform: translate(-50%, -50%) scaleY(1.1); }
}

/* Gradient Text Shimmer */
@keyframes light-beam-breathe {
    0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scaleY(1); }
    50% { opacity: 0.12; transform: translate(-50%, -50%) scaleY(1.1); }
}

@keyframes gradient-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 0.3; }
}

@keyframes emotional-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Micro Particles */
@keyframes particle-float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 0.3; }
}

/* Emotional Pulse */
@keyframes emotional-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Animated Background Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: blob-float 8s ease-in-out infinite;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(45, 78, 255, 0.15);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(118, 75, 162, 0.1);
    bottom: 50px;
    left: 10%;
    animation-delay: 2s;
}

.hero-blob-3 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 61, 0.08);
    bottom: 50px;
    right: 100px;
    animation: blob-float 10s ease-in-out infinite;
}

.hero-blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
    top: -80px;
    right: -100px;
    animation: blob-float-reverse 12s ease-in-out infinite;
    filter: blur(50px);
}

@keyframes blob-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes blob-float-reverse {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(30px) scale(1.05); }
}

.premium-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(45, 78, 255, 0.1);
    border: 1px solid rgba(45, 78, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--premium-blue);
}

.badge-icon {
    font-size: 1.2rem;
}

.premium-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-shadow: none;
    padding-bottom: 2px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--premium-blue) 0%, var(--premium-purple) 50%, #FF6B3D 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shimmer 8s ease-in-out infinite, gradient-shift 6s ease-in-out infinite;
    padding-bottom: 2px;
}

@keyframes gradient-shift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.premium-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.premium-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-premium-primary,
.btn-premium-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.btn-premium-primary {
    background: linear-gradient(135deg, var(--premium-blue) 0%, var(--premium-purple) 100%);
    color: white;
    box-shadow: 0 12px 40px rgba(45, 78, 255, 0.35), 0 0 20px rgba(45, 78, 255, 0.2);
}

.btn-premium-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-premium-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 50px rgba(45, 78, 255, 0.45), 0 0 40px rgba(45, 78, 255, 0.4);
}

.btn-premium-primary:hover::before {
    opacity: 1;
}

.btn-premium-primary:hover .btn-icon {
    animation: icon-rotate 0.6s ease-in-out;
}

@keyframes icon-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg); }
}

.btn-premium-secondary {
    background: white;
    color: var(--premium-blue);
    border: 2px solid var(--premium-blue);
    box-shadow: 0 8px 30px rgba(45, 78, 255, 0.15);
}

.btn-premium-secondary:hover {
    background: var(--premium-sky);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45, 78, 255, 0.25);
}

.btn-icon {
    font-size: 1.3rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.btn-premium-primary:hover .btn-icon {
    animation: pulse-icon-fast 0.6s ease-in-out;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse-icon-fast {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.btn-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-primary:hover .btn-arrow {
    transform: translateX(6px);
}

/* Stats Strip */
.premium-stats-strip {
    display: flex;
    gap: 40px;
    padding: 30px 35px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    justify-content: center;
}

/* Ground Shadow Under Stats */
.premium-stats-strip::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 50px;
    background: radial-gradient(ellipse at center, rgba(45, 78, 255, 0.12) 0%, transparent 75%);
    filter: blur(25px);
    z-index: -1;
}

.stat-strip-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    flex: 1;
    justify-content: center;
}

.stat-strip-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--premium-blue) 0%, var(--premium-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.stat-strip-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.stat-strip-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 78, 255, 0.2) 50%, transparent 100%);
    border-radius: 1px;
    opacity: 0.8;
}

/* Hero Visual */
.premium-hero-visual {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 50px rgba(45, 78, 255, 0.15), 0 4px 15px rgba(45, 78, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: perspective(1000px) rotateX(0deg);
}

/* Soft Radial Gradient Under Cards */
.floating-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
    border-radius: 50%;
}

.floating-card:hover {
    transform: translateY(-15px) perspective(1000px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(45, 78, 255, 0.2), 0 8px 25px rgba(45, 78, 255, 0.1);
}

.floating-card-1 {
    width: 200px;
    top: 25%;
    left: 8%;
    animation: float-1 6.5s ease-in-out infinite;
}

.floating-card-2 {
    width: 200px;
    top: 50%;
    left: 12%;
    animation: float-2 7.5s ease-in-out infinite;
}

.floating-card-3 {
    width: 200px;
    top: 20%;
    right: 5%;
    animation: float-3 8.5s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotateZ(-2deg); }
    50% { transform: translateY(-25px) rotateZ(2deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotateZ(2deg); }
    50% { transform: translateY(25px) rotateZ(-2deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotateZ(-1deg); }
    50% { transform: translateY(-20px) rotateZ(1deg); }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.hero-illustration {
    position: absolute;
    font-size: 200px;
    color: rgba(45, 78, 255, 0.1);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

/* ═════════════════════════════════════════════════════════════════════════════
   VALUE HIGHLIGHTS SECTION - PREMIUM REFINED
   ═════════════════════════════════════════════════════════════════════════════ */

.value-highlights {
    padding: 100px 0;
    background: radial-gradient(ellipse 800px 600px at 50% 0%, rgba(248, 249, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.value-highlights::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 78, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title-premium {
    font-size: 3rem;
    font-weight: 900;
    color: #0F172A;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle-premium {
    font-size: 1.1rem;
    color: #6B7280;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.value-card {
    padding: 45px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.8) 100%);
    border-radius: 22px;
    border: 1px solid rgba(45, 78, 255, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 32px rgba(45, 78, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 78, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 78, 255, 0.25);
}

.value-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(45, 78, 255, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #0A2540;
    box-shadow: 0 12px 40px rgba(45, 78, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(45, 78, 255, 0.1);
}

.value-card:hover .value-icon-circle {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    color: white;
    box-shadow: 0 16px 56px rgba(45, 78, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.08) translateY(-4px);
    border-color: rgba(45, 78, 255, 0.3);
}

.value-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.value-card p {
    font-size: 0.98rem;
    color: #5A6B7F;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}

/* Responsive: Tablet (576px - 991px) */
@media (max-width: 991.98px) and (min-width: 576px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .value-card {
        padding: 35px 30px;
        min-height: 300px;
    }
    
    .value-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

/* Responsive: Mobile (< 576px) */
@media (max-width: 575.98px) {
    .value-highlights {
        padding: 60px 0;
    }
    
    .section-intro {
        margin-bottom: 40px;
    }
    
    .section-title-premium {
        font-size: 2.2rem;
    }
    
    .section-subtitle-premium {
        font-size: 1rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 24px;
        min-height: 280px;
    }
    
    .value-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

.program-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.program-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.program-card-tall .program-card-content {
    justify-content: space-between;
}

.program-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.program-icon-small {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.program-card h3, .program-card h4 {
    margin: 0 0 15px 0;
    color: white;
}

.program-card h3 {
    font-size: 1.8rem;
}

.program-card h4 {
    font-size: 1.3rem;
}

.program-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 12px;
}

.program-card-small {
    min-height: 280px;
}

.program-card-small .program-card-content {
    justify-content: flex-end;
}

.program-card-wide {
    min-height: 280px;
}

/* ═════════════════════════════════════════════════════════════════════════════
   IMPACT SECTION - PREMIUM ICON STATS
   ═════════════════════════════════════════════════════════════════════════════ */

.impact-premium {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(248, 249, 255, 0.8) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.impact-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 78, 255, 0.15) 50%, transparent 100%);
}

.impact-stats-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.impact-stat-card {
    text-align: center;
    position: relative;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.85) 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(45, 78, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1.5px solid rgba(45, 78, 255, 0.1);
}

.impact-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(45, 78, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 78, 255, 0.18);
}

.impact-stat-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(45, 78, 255, 0.18) 0%, rgba(118, 75, 162, 0.14) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: #0A2540;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 14px 40px rgba(45, 78, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 2.5px solid rgba(45, 78, 255, 0.15);
    line-height: 1;
}

.impact-stat-card:hover .impact-stat-icon {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    color: white;
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 78, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(45, 78, 255, 0.25);
}

.impact-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #0F172A;
    margin-bottom: 10px;
    letter-spacing: -0.6px;
    line-height: 1.1;
}

.impact-stat-label {
    font-size: 1.05rem;
    color: #5A6B7F;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.5;
}

/* Responsive: Tablet (576px - 991px) */
@media (max-width: 991.98px) and (min-width: 576px) {
    .impact-stats-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .impact-stat-card {
        padding: 35px 25px;
    }
    
    .impact-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .impact-stat-number {
        font-size: 2.4rem;
    }
}

/* Responsive: Mobile (< 576px) */
@media (max-width: 575.98px) {
    .impact-premium {
        padding: 60px 0;
    }
    
    .impact-stats-premium {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .impact-stat-card {
        padding: 30px 20px;
    }
    
    .impact-stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .impact-stat-number {
        font-size: 2.2rem;
    }
    
    .impact-stat-label {
        font-size: 0.95rem;
    }
}

/* ═════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═════════════════════════════════════════════════════════════════════════════ */

.testimonials-premium {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(253, 249, 255, 0.8) 0%, rgba(255, 248, 245, 0.6) 50%, #ffffff 100%);
    position: relative;
}

.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 40px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card-premium {
    flex: 0 0 calc(33.333% - 20px);
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 247, 250, 0.5) 100%);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(45, 78, 255, 0.08);
    border: 1px solid rgba(45, 78, 255, 0.12);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-premium::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3.5rem;
    color: rgba(45, 78, 255, 0.12);
    font-weight: bold;
    line-height: 1;
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(45, 78, 255, 0.15);
    border-color: rgba(45, 78, 255, 0.18);
}

.testimonial-quote-mark {
    font-size: 4rem;
    color: rgba(45, 78, 255, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.08rem;
    color: #1F2937;
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    font-size: 2.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.author-age {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ═════════════════════════════════════════════════════════════════════════════
   DONATION CTA BANNER
   ═════════════════════════════════════════════════════════════════════════════ */

.donation-cta-premium {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--premium-blue) 0%, var(--premium-purple) 100%);
    overflow: hidden;
    text-align: center;
    margin-top: 0;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: blob-float 8s ease-in-out infinite;
}

.cta-blob-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -100px;
    right: -50px;
}

.cta-blob-2 {
    width: 250px;
    height: 250px;
    background: white;
    bottom: -50px;
    left: 10%;
    animation-delay: 2s;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: white;
    color: var(--premium-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.btn-cta-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.3);
}

/* ═════════════════════════════════════════════════════════════════════════════
   ACTIVITIES SECTION - MAGAZINE GRID
   ═════════════════════════════════════════════════════════════════════════════ */

.activities-premium {
    padding: 50px 0;
    background: #ffffff;
    margin-bottom: 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 35px;
    grid-template-areas: 
        "landscape1 portrait landscape2";
    align-items: stretch;
}

.activity-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
}

.activity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.activity-card-landscape {
    grid-area: landscape1;
    min-height: 280px;
}

.activity-card-landscape:nth-child(3) {
    grid-area: landscape2;
    min-height: 280px;
}

.activity-card-portrait {
    grid-area: portrait;
    min-height: 280px;
}

.activity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--premium-blue) 0%, var(--premium-purple) 100%);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: white;
    z-index: 2;
    transition: all 0.4s ease;
}

.activity-card:hover .activity-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.activity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 107, 61, 0.95) 0%, rgba(255, 140, 90, 0.95) 100%);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 107, 61, 0.3);
}

.activity-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.activity-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: gap 0.3s ease;
    width: fit-content;
}

.activity-read:hover {
    gap: 12px;
}

/* ═════════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .premium-hero-title {
        font-size: 3rem;
    }
    
    .section-title-premium {
        font-size: 2.5rem;
    }
    
    .programs-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "tall stack"
            "wide wide";
    }
    
    .activities-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "landscape1 portrait"
            "landscape2 landscape2";
    }
}

@media (max-width: 768px) {
    .premium-hero {
        padding: 40px 0 40px 0;
        min-height: auto;
    }
    
    .premium-badge {
        animation: slideInBadge 0.6s ease-out;
    }
    
    @keyframes slideInBadge {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .premium-hero-title {
        font-size: 2rem;
    }
    
    .premium-hero-subtitle {
        font-size: 1rem;
    }
    
    .premium-cta-group {
        flex-direction: column;
    }
    
    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .premium-stats-strip {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-strip-divider {
        display: none;
    }
    
    .premium-hero-visual {
        display: none;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .programs-mosaic {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "tall"
            "stack"
            "wide";
    }
    
    .program-card-stack {
        flex-direction: row;
    }
    
    .program-card-small {
        flex: 1;
    }
    
    .impact-stats-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .testimonial-card-premium {
        flex: 0 0 calc(50% - 15px);
    }
    
    .testimonials-scroll {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .btn-cta-premium {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .activity-overlay {
        padding: 20px;
    }
    
    .activity-overlay h3 {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 4rem 1.5rem 1rem;
    }
    
    .footer h5 {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   DARK MODE - GLOBAL THEME SUPPORT
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-bg-tertiary: #e9ecef;
    --color-text-primary: #0f172a;
    --color-text-secondary: #6B7280;
    --color-text-tertiary: #9CA3AF;
    --color-border: #e5e7eb;
    --color-card-bg: #ffffff;
    --color-card-shadow: rgba(0, 0, 0, 0.08);
    --color-input-bg: #ffffff;
    --color-input-border: #d1d5db;
    --color-input-text: #0f172a;
}

html[data-theme="dark"] {
    --color-bg-primary: #0f172a;
    --color-bg-secondary: #1a202c;
    --color-bg-tertiary: #2d3748;
    --color-text-primary: #f0f4f8;
    --color-text-secondary: #cbd5e0;
    --color-text-tertiary: #a0aec0;
    --color-border: #2d3748;
    --color-card-bg: #1a202c;
    --color-card-shadow: rgba(0, 0, 0, 0.3);
    --color-input-bg: #2d3748;
    --color-input-border: #4a5568;
    --color-input-text: #f0f4f8;
}

/* Global Dark Mode Styles */
html[data-theme="dark"] {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

html[data-theme="dark"] body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

/* Navbar Dark Mode */
html[data-theme="dark"] .navbar-professional {
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-border);
}

html[data-theme="dark"] .navbar-brand-pro,
html[data-theme="dark"] .navbar-menu-pro a,
html[data-theme="dark"] .navbar-menu-pro li,
html[data-theme="dark"] .lang-toggle-pro,
html[data-theme="dark"] .lang-toggle-pro span,
html[data-theme="dark"] .navbar-lang-mobile-pro,
html[data-theme="dark"] .navbar-lang-mobile-pro span,
html[data-theme="dark"] .btn-donate-pro,
html[data-theme="dark"] .btn-donate-pro span {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .navbar-menu-pro a:hover,
html[data-theme="dark"] .lang-toggle-pro:hover,
html[data-theme="dark"] .navbar-menu-pro a:hover {
    color: var(--premium-blue);
}

/* Submenu Dark Mode */
html[data-theme="dark"] .navbar-menu-pro .submenu-toggle {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .navbar-menu-pro .submenu-toggle:hover {
    color: var(--premium-blue);
}

html[data-theme="dark"] .navbar-menu-pro .submenu {
    background: var(--color-bg-secondary);
    border-color: var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .navbar-menu-pro .submenu a {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .navbar-menu-pro .submenu a:hover {
    background: rgba(45, 78, 255, 0.15);
    color: var(--premium-blue);
}

html[data-theme="dark"] .navbar-toggle-pro span {
    background-color: var(--color-text-primary);
}

html[data-theme="dark"] .theme-toggle-pro {
    color: var(--color-text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

html[data-theme="dark"] .theme-toggle-pro:hover {
    color: var(--premium-blue);
}

/* Mobile Navbar Actions Dark Mode */
@media (max-width: 991.98px) {
    html[data-theme="dark"] .navbar-actions-pro {
        background: rgba(26, 32, 44, 0.6);
        border-top-color: var(--color-border);
    }
    
    html[data-theme="dark"] .navbar-menu-pro {
        background: rgba(26, 32, 44, 0.8);
        border-top-color: var(--color-border);
    }
    
    html[data-theme="dark"] .navbar-menu-pro li {
        border-bottom-color: var(--color-border);
    }
    
    html[data-theme="dark"] .btn-donate-pro {
        background: linear-gradient(135deg, var(--premium-blue) 0%, var(--premium-purple) 100%);
        color: white;
        border: none;
        border-radius: 6px;
    }
    
    html[data-theme="dark"] .btn-donate-pro:hover {
        color: white;
        opacity: 0.9;
    }
}

/* Sections Dark Mode */
html[data-theme="dark"] .value-highlights,
html[data-theme="dark"] .programs-premium,
html[data-theme="dark"] .impact-premium,
html[data-theme="dark"] .testimonials-premium,
html[data-theme="dark"] .activities-premium {
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
}

/* Cards Dark Mode */
html[data-theme="dark"] .value-card,
html[data-theme="dark"] .program-card-clean,
html[data-theme="dark"] .impact-stat-card,
html[data-theme="dark"] .testimonial-card-premium,
html[data-theme="dark"] .activity-card-clean {
    background: linear-gradient(135deg, var(--color-card-bg) 0%, rgba(26, 32, 44, 0.8) 100%);
    border-color: var(--color-border);
    color: var(--color-text-primary);
    box-shadow: 0 8px 28px var(--color-card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .value-card h3,
html[data-theme="dark"] .program-card-clean h3,
html[data-theme="dark"] .activity-card-title,
html[data-theme="dark"] .impact-stat-number {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .value-card p,
html[data-theme="dark"] .program-card-clean p,
html[data-theme="dark"] .activity-card-summary,
html[data-theme="dark"] .impact-stat-label,
html[data-theme="dark"] .testimonial-text {
    color: var(--color-text-secondary);
}

/* Section Titles Dark Mode */
html[data-theme="dark"] .section-title-premium {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .section-subtitle-premium {
    color: var(--color-text-secondary);
}

/* Hero Section Dark Mode */
html[data-theme="dark"] .premium-hero-title {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .premium-hero-subtitle {
    color: var(--color-text-secondary);
}

/* Buttons Dark Mode */
html[data-theme="dark"] .btn-premium-secondary {
    background-color: transparent;
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

html[data-theme="dark"] .btn-premium-secondary:hover {
    background-color: var(--color-bg-tertiary);
    border-color: var(--premium-blue);
    color: var(--premium-blue);
}

html[data-theme="dark"] .btn-view-all {
    color: var(--color-text-primary);
    border-color: var(--color-border);
}

html[data-theme="dark"] .btn-view-all:hover {
    background-color: var(--premium-blue);
    color: white;
    border-color: var(--premium-blue);
}

/* Input Fields Dark Mode */
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
    background-color: var(--color-input-bg);
    border-color: var(--color-input-border);
    color: var(--color-input-text);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
    color: var(--color-text-tertiary);
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] select:focus {
    background-color: var(--color-input-bg);
    border-color: var(--premium-blue);
    color: var(--color-input-text);
}

/* Footer Dark Mode */
html[data-theme="dark"] .footer {
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    border-top-color: var(--color-border);
    color: var(--color-text-primary);
}

html[data-theme="dark"] .footer h5 {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .footer a {
    color: var(--color-text-secondary);
}

html[data-theme="dark"] .footer a:hover {
    color: var(--premium-blue);
}

/* Links Dark Mode */
html[data-theme="dark"] a {
    color: var(--premium-blue);
}

html[data-theme="dark"] a:hover {
    color: var(--premium-purple);
}

/* Badge Dark Mode */
html[data-theme="dark"] .activity-card-badge {
    background-color: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

html[data-theme="dark"] .activity-card-badge.news {
    background-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

html[data-theme="dark"] .activity-card-badge.update {
    background-color: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

html[data-theme="dark"] .activity-card-badge.story {
    background-color: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
}

html[data-theme="dark"] .activity-card-badge.event {
    background-color: rgba(249, 115, 22, 0.2);
    color: #fdba74;
}

html[data-theme="dark"] .activity-card-badge.announcement {
    background-color: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

/* Stats Strip Dark Mode */
html[data-theme="dark"] .stat-strip-label {
    color: var(--color-text-secondary);
}

html[data-theme="dark"] .stat-strip-number {
    color: var(--color-text-primary);
}

/* Smooth Transition for Theme Change */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

html[data-theme="dark"] * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PREMIUM ABOUT US PAGE - STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* HERO SECTION */
.about-hero {
    position: relative;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #3d5eff 0%, #6b4fa2 100%);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.about-hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 1;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* MISSION, VISION & VALUES SECTION */
.py-100 {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    font-weight: 400;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mvv-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 78, 255, 0.3);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0A2540;
}

.mvv-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.mvv-card-text {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mvv-values-list li {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.mvv-values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0A2540;
    font-weight: bold;
    font-size: 1.1rem;
}

/* OUR STORY SECTION */
.about-story {
    background: #f8f9fa;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.story-text-column {
    padding-right: 20px;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #0f172a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-timeline-column {
    padding-left: 20px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0A2540;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #0A2540;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #0A2540;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    width: 20px;
    height: 20px;
    left: -34px;
    box-shadow: 0 0 0 4px #0A2540;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 5px;
}

.timeline-label {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

/* WHAT WE DO SECTION */
.about-what-we-do {
    background: white;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.what-we-do-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.what-we-do-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #0A2540;
}

.what-we-do-card .card-icon {
    width: 60px;
    height: 60px;
    background: #f0f4f8;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0A2540;
}

.what-we-do-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.what-we-do-card .card-description {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0A2540;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.card-description {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* IMPACT SECTION */
.about-impact {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    color: white;
}

.about-impact .section-title {
    color: white;
}

.about-impact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.impact-stat {
    text-align: center;
    padding: 40px;
    border-bottom: 3px solid white;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

/* CTA SECTION */
.about-cta {
    background: linear-gradient(135deg, #1E3A5F 0%, #0A2540 100%);
    color: white;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #0A2540;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #0A2540;
}

/* RESPONSIVE - TABLET (768px - 1199px) */
@media (max-width: 1199px) {
    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .story-grid {
        gap: 40px;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .py-100 {
        padding: 80px 0;
    }
}

/* RESPONSIVE - MOBILE (< 768px) */
@media (max-width: 767px) {
    .about-hero {
        height: 30vh;
    }

    .about-hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-hero-content {
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvv-card {
        padding: 30px;
    }

    .mvv-card-title {
        font-size: 1.3rem;
    }

    .mvv-card-text {
        font-size: 0.95rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text-column {
        padding-right: 0;
    }

    .story-timeline-column {
        padding-left: 0;
    }

    .story-paragraph {
        font-size: 1rem;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline:before {
        left: 5px;
    }

    .timeline-dot {
        left: -26px;
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 2px #0A2540;
    }

    .timeline-item:hover .timeline-dot {
        width: 12px;
        height: 12px;
        left: -26px;
        box-shadow: 0 0 0 2px #0A2540;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    .timeline-label {
        font-size: 0.9rem;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .what-we-do-card {
        padding: 25px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-stat {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .py-100 {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }
}

/* DARK MODE - ABOUT PAGE */
html[data-theme="dark"] .about-hero {
    background: linear-gradient(135deg, #2a3a7e 0%, #5a4a7b 100%);
}

html[data-theme="dark"] .about-hero-title {
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .about-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .section-title {
    color: #f0f4f8;
}

html[data-theme="dark"] .section-subtitle {
    color: #cbd5e0;
}

html[data-theme="dark"] .mvv-card {
    background: rgba(26, 42, 94, 0.2);
    border-color: rgba(45, 78, 255, 0.2);
}

html[data-theme="dark"] .mvv-card-title {
    color: #f0f4f8;
}

html[data-theme="dark"] .mvv-card-text {
    color: #cbd5e0;
}

html[data-theme="dark"] .mvv-values-list li {
    color: #cbd5e0;
}

html[data-theme="dark"] .about-story {
    background: #0f172a;
}

html[data-theme="dark"] .story-paragraph {
    color: #f0f4f8;
}

html[data-theme="dark"] .timeline-title {
    color: #f0f4f8;
}

html[data-theme="dark"] .timeline-label {
    color: #cbd5e0;
}

html[data-theme="dark"] .about-what-we-do {
    background: #0f172a;
}

html[data-theme="dark"] .what-we-do-card {
    background: #1a202c;
    border-color: #2d3748;
}

html[data-theme="dark"] .what-we-do-card:hover {
    border-color: #0A2540;
}

html[data-theme="dark"] .card-title {
    color: #f0f4f8;
}

html[data-theme="dark"] .card-description {
    color: #cbd5e0;
}

html[data-theme="dark"] .btn-cta {
    background: #0A2540;
    color: white;
}

html[data-theme="dark"] .btn-cta:hover {
    background: #1a2a5e;
    color: white;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mvv-card,
.what-we-do-card,
.impact-stat {
    animation: fadeInUp 0.6s ease-out;
}

.mvv-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mvv-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mvv-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 50px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PREMIUM MEMBERSHIP APPLICATION PAGE - STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.membership-page {
    padding: 100px 0;
    background: var(--color-bg-primary);
    min-height: 100vh;
}

.membership-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.membership-header {
    text-align: center;
    margin-bottom: 50px;
}

.membership-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.membership-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.membership-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    animation: slideInDown 0.3s ease;
}

.membership-alert.alert-success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.membership-alert.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.membership-alert.alert-success .alert-icon {
    color: #22c55e;
}

.membership-alert.alert-danger .alert-icon {
    color: #ef4444;
}

.alert-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--color-text-primary);
}

.alert-content p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-text-secondary);
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.alert-close:hover {
    color: var(--color-text-primary);
}

.membership-form-container {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 40px 45px;
    box-shadow: var(--color-card-shadow);
    backdrop-filter: blur(10px);
}

.form-section {
    margin-bottom: 40px;
}

.form-section:last-of-type {
    margin-bottom: 30px;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading i {
    color: #6366f1;
    font-size: 1.3rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 0 0 calc(50% - 10px);
}

.form-row .form-group[style*="flex: 0 0 25%"] {
    flex: 0 0 calc(25% - 15px) !important;
}

.form-row .form-group[style*="flex: 0 0 33.333%"] {
    flex: 0 0 calc(33.333% - 14px) !important;
}

.form-row .form-group:only-child {
    flex: 0 0 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-input {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #f8f9fc;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.5;
}

.form-input:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.04);
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

/* Invalid field styling */
.form-input.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-input.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

/* File upload error styling */
.file-upload-wrapper.has-error .file-upload-label,
.file-upload-label.error-label {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.file-upload-wrapper.has-error .file-upload-label:hover,
.file-upload-label.error-label:hover {
    border-color: #dc3545;
    background-color: #ffebee;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236366f1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-select:hover {
    border-color: #6366f1;
    background-color: rgba(99, 102, 241, 0.04);
}

.form-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-helper {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.4;
}

.file-upload-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    border: 2px dashed var(--color-border);
    border-radius: 12px;
    background: #f8f9fc;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
}

.file-upload-label:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.04);
}

.file-upload-label i {
    font-size: 2rem;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.file-upload-label:hover i {
    transform: scale(1.1);
}

.file-upload-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

#agree_terms {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #6366f1;
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.btn-submit {
    flex: 1;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #4f46e5, #9333ea);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(79, 70, 229, 0.35);
}

.btn-submit:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .membership-page {
        padding: 60px 0;
    }

    .membership-title {
        font-size: 2rem;
    }

    .membership-subtitle {
        font-size: 1rem;
    }

    .membership-form-container {
        padding: 30px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-row .form-group,
    .form-row .form-group[style*="flex: 0 0 25%"],
    .form-row .form-group[style*="flex: 0 0 33.333%"] {
        flex: 0 0 100% !important;
    }

    .section-heading {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .file-upload-label {
        padding: 24px 16px;
    }

    .form-section {
        margin-bottom: 30px;
    }
}

html[data-theme="dark"] .membership-page {
    background: var(--color-bg-primary);
}

html[data-theme="dark"] .membership-title {
    color: #ffffff;
}

html[data-theme="dark"] .membership-subtitle {
    color: #cbd5e0;
}

html[data-theme="dark"] .membership-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .section-heading {
    color: #ffffff;
}

html[data-theme="dark"] .form-label {
    color: #ffffff;
}

html[data-theme="dark"] .form-input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

html[data-theme="dark"] .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .form-input:hover {
    border-color: #818cf8;
    background: rgba(99, 102, 241, 0.18);
}

html[data-theme="dark"] .form-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.35);
}

html[data-theme="dark"] .form-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0f4f8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

html[data-theme="dark"] .form-select:hover {
    border-color: #818cf8;
    background-color: rgba(99, 102, 241, 0.18);
}

html[data-theme="dark"] .form-select:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.35);
}

html[data-theme="dark"] .form-helper {
    color: #cbd5e0;
}

html[data-theme="dark"] .file-upload-label {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}

html[data-theme="dark"] .file-upload-label:hover {
    border-color: #818cf8;
    background: rgba(99, 102, 241, 0.18);
}

html[data-theme="dark"] .file-upload-text {
    color: #cbd5e0;
}

html[data-theme="dark"] .form-checkbox {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.25);
}

html[data-theme="dark"] .checkbox-label {
    color: #ffffff;
}

html[data-theme="dark"] .btn-submit {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

html[data-theme="dark"] .btn-submit:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
}

html[data-theme="dark"] .membership-alert.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

html[data-theme="dark"] .membership-alert.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
}

html[data-theme="dark"] .alert-content h4 {
    color: #ffffff;
}

html[data-theme="dark"] .alert-content p {
    color: #cbd5e0;
}

html[data-theme="dark"] .alert-close {
    color: #cbd5e0;
}

html[data-theme="dark"] .alert-close:hover {
    color: #ffffff;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Options Dark Mode Fix */
html[data-theme="dark"] select option {
    background-color: var(--color-input-bg);
    color: var(--color-input-text);
}

html[data-theme="dark"] select option:checked {
    background: linear-gradient(#0A2540, #0A2540);
    background-color: #0A2540;
    color: white;
}

/* Story Section Styling */
.story-text-full {
    max-width: 950px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.9;
    padding: 0 20px;
}

.story-paragraph {
    margin-bottom: 2rem;
    text-align: justify;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.9;
    letter-spacing: 0.3px;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(45, 78, 255, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    border-left: 4px solid #0A2540;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.story-paragraph:hover {
    background: linear-gradient(135deg, rgba(45, 78, 255, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(45, 78, 255, 0.1);
    transform: translateX(4px);
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

/* Committee List Styling */
.committee-title {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #0A2540;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.committee-list {
    list-style-type: disc;
    margin-left: 2.5rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    background: rgba(45, 78, 255, 0.03);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #0A2540;
}

.committee-member {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.committee-member:hover {
    color: #0A2540;
    padding-left: 8px;
}

.committee-member:last-child {
    margin-bottom: 0;
}

/* Dark Mode Story Section */
html[data-theme="dark"] .story-text-full {
    color: #cbd5e0;
}

html[data-theme="dark"] .story-paragraph {
    color: #cbd5e0;
    background: linear-gradient(135deg, rgba(45, 78, 255, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

html[data-theme="dark"] .story-paragraph:hover {
    background: linear-gradient(135deg, rgba(45, 78, 255, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    box-shadow: 0 4px 12px rgba(45, 78, 255, 0.2);
}

html[data-theme="dark"] .committee-title {
    color: #60a5fa;
}

html[data-theme="dark"] .committee-member {
    color: #cbd5e0;
}

html[data-theme="dark"] .committee-member:hover {
    color: #60a5fa;
}

html[data-theme="dark"] .committee-list {
    background: rgba(45, 78, 255, 0.08);
    border-left-color: #60a5fa;
}

/* ===== ABOUT US PAGE - PROFESSIONAL REDESIGN ===== */

/* STICKY TABLE OF CONTENTS SIDEBAR */
.toc-sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 280px;
    background: #ffffff;
    border-right: 2px solid #e5e7eb;
    padding: 30px 0;
    overflow-y: visible;
    overflow-x: hidden;
    z-index: 100;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    transition: position 0.3s ease, top 0.3s ease;
}

/* TOC Fixed State (Normal Sticky) */
.toc-sidebar.toc-fixed {
    position: fixed;
    top: 80px;
}

/* TOC Bottom State (Locked Above Footer) */
.toc-sidebar.toc-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
}

.toc-wrapper {
    padding: 0 20px;
}

.toc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
}

.toc-nav {
    margin: 0;
    padding: 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.toc-list li {
    margin: 0;
    padding: 0;
}

.toc-link {
    display: block;
    padding: 12px 15px;
    color: #6B7280;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.toc-link:hover {
    background: #f8f9fa;
    color: #0A2540;
    border-left-color: #0A2540;
    padding-left: 20px;
}

.toc-link.active {
    background: #e8eeff;
    color: #0A2540;
    border-left-color: #0A2540;
    font-weight: 700;
    padding-left: 20px;
}

/* Adjust main content for sidebar */
.about-who-we-are,
.about-mvv,
.about-story,
.about-what-we-do,
.about-objectives,
.about-why-we-exist,
.about-daily-programs,
.about-infrastructure,
.about-annual-programs,
.about-sustainability,
.about-long-term-plans {
    margin-left: 280px;
}

/* MOBILE/TABLET TOC DRAWER STYLES */

/* Floating Button (Mobile/Tablet Only) */
.toc-mobile-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A1A2F 0%, #1a3a52 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(10, 26, 47, 0.5);
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 600;
}

.toc-mobile-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 26, 47, 0.7);
}

.toc-mobile-btn:active {
    transform: scale(0.95);
}

.toc-btn-icon {
    font-size: 24px;
    line-height: 1;
}

.toc-btn-text {
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* Overlay (Backdrop) */
.toc-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 98;
    transition: background 0.3s ease;
}

.toc-overlay.active {
    background: rgba(0, 0, 0, 0.5);
}

/* Drawer Container */
.toc-drawer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.toc-drawer.active {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

/* Drawer Header */
.toc-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.toc-drawer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Close Button */
.toc-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toc-drawer-close:hover {
    background: #f8f9fa;
    color: #0f172a;
}

/* Drawer Navigation */
.toc-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.toc-drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.toc-drawer-list li {
    margin: 0;
    padding: 0;
}

/* Drawer Links */
.toc-drawer-link {
    display: block;
    padding: 16px 20px;
    color: #6B7280;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.toc-drawer-link:hover {
    background: #f8f9fa;
    color: #0A2540;
    border-left-color: #0A2540;
    padding-left: 24px;
}

.toc-drawer-link.active {
    background: #e8eeff;
    color: #0A2540;
    border-left-color: #0A2540;
    font-weight: 700;
    padding-left: 24px;
}

/* Desktop Only: TOC Scroll-Lock Behavior (>1024px) */
@media (min-width: 1025px) {
    /* When TOC is locked to bottom, it positions relative to the about page container */
    .toc-sidebar.toc-bottom {
        position: absolute;
        top: auto;
        bottom: 0;
    }
}

/* Responsive: Hide sidebar on mobile/tablet */
@media (max-width: 1024px) {
    /* Show mobile button and drawer */
    .toc-mobile-btn {
        display: flex;
    }
    
    /* Hide desktop sidebar */
    .toc-sidebar {
        display: none;
    }
    
    /* Adjust content margin */
    .about-who-we-are,
    .about-mvv,
    .about-story,
    .about-what-we-do,
    .about-objectives,
    .about-why-we-exist,
    .about-daily-programs,
    .about-infrastructure,
    .about-annual-programs,
    .about-sustainability,
    .about-long-term-plans {
        margin-left: 0;
    }
}

/* Desktop: Hide mobile elements */
@media (min-width: 1025px) {
    .toc-mobile-btn,
    .toc-overlay,
    .toc-drawer {
        display: none !important;
    }
}

/* WHO WE ARE SECTION */
.about-who-we-are {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 !important;
}

.about-who-we-are .story-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #0f172a;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* MISSION, VISION & VALUES SECTION */
.about-mvv {
    background: #ffffff;
    padding: 80px 0 !important;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mvv-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(45, 78, 255, 0.1);
    background: #ffffff;
}

.mvv-icon {
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 20px;
}

.mvv-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.mvv-card-text {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mvv-values-list li {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.mvv-values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0A2540;
    font-weight: bold;
}

/* OUR STORY SECTION */
.about-story {
    background: #ffffff;
    padding: 80px 0 !important;
}

.story-text-full {
    max-width: 900px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: justify;
}

.committee-title {
    font-weight: 600;
    color: #0A2540;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
}

.committee-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.committee-member {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.committee-member:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0A2540;
    font-weight: bold;
}

/* WHAT WE DO SECTION */
.about-what-we-do {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 !important;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.what-we-do-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.what-we-do-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(45, 78, 255, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* CORE OBJECTIVES SECTION */
.about-objectives {
    background: #ffffff;
    padding: 80px 0 !important;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.objective-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #0A2540;
    transition: all 0.3s ease;
}

.objective-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(45, 78, 255, 0.1);
}

.objective-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.objective-description {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* WHY WE EXIST SECTION */
.about-why-we-exist {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    padding: 80px 0 !important;
}

.about-why-we-exist .story-paragraph {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.95;
}

/* DAILY PROGRAMS SECTION */
.about-daily-programs {
    background: #ffffff;
    padding: 80px 0 !important;
}

.daily-programs-table-wrapper {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
}

.daily-programs-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.daily-programs-table thead {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
}

.daily-programs-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.day-column {
    width: 25%;
}

.activity-column {
    width: 75%;
}

.program-row {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.program-row:hover {
    background: #f8f9fa;
}

.program-row:last-child {
    border-bottom: none;
}

.program-day {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #0A2540;
    text-transform: capitalize;
    vertical-align: top;
}

.program-activity {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    vertical-align: top;
}

/* INFRASTRUCTURE SECTION */
.about-infrastructure {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 !important;
}

.infrastructure-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 20px;
    margin-top: 30px;
}

.infrastructure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.infrastructure-list li {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.infrastructure-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0A2540;
    font-weight: bold;
}

/* ANNUAL PROGRAMS SECTION */
.about-annual-programs {
    background: #ffffff;
    padding: 80px 0 !important;
}

.annual-programs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.program-item:hover {
    background: #e8eeff;
    transform: translateX(5px);
}

.program-item i {
    color: #0A2540;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.program-item span {
    font-size: 0.95rem;
    color: #0f172a;
    line-height: 1.6;
}

/* SUSTAINABILITY SECTION */
.about-sustainability {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 !important;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sustainability-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid #0A2540;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sustainability-card:hover {
    box-shadow: 0 8px 24px rgba(45, 78, 255, 0.1);
    transform: translateY(-5px);
}

.sustainability-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 20px;
}

.sustainability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sustainability-list li {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.sustainability-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0A2540;
    font-weight: bold;
}

/* LONG-TERM PLANS SECTION */
.about-long-term-plans {
    background: #ffffff;
    padding: 80px 0 !important;
}

.long-term-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    padding: 50px;
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(45, 78, 255, 0.2);
}

.plan-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.plan-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1199px) {
    .mvv-grid,
    .what-we-do-grid,
    .objectives-grid,
    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .long-term-plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-who-we-are,
    .about-mvv,
    .about-story,
    .about-what-we-do,
    .about-objectives,
    .about-why-we-exist,
    .about-daily-programs,
    .about-infrastructure,
    .about-annual-programs,
    .about-sustainability,
    .about-long-term-plans {
        padding: 60px 0 !important;
    }
    
    .mvv-grid,
    .what-we-do-grid,
    .objectives-grid,
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .annual-programs-list {
        grid-template-columns: 1fr;
    }
    
    .what-we-do-card,
    .objective-card,
    .sustainability-card {
        padding: 25px;
    }
    
    .plan-card {
        padding: 30px;
    }
}

/* DARK MODE */
html[data-theme="dark"] .about-who-we-are,
html[data-theme="dark"] .about-mvv,
html[data-theme="dark"] .about-story,
html[data-theme="dark"] .about-what-we-do,
html[data-theme="dark"] .about-objectives,
html[data-theme="dark"] .about-daily-programs,
html[data-theme="dark"] .about-infrastructure,
html[data-theme="dark"] .about-annual-programs,
html[data-theme="dark"] .about-sustainability,
html[data-theme="dark"] .about-long-term-plans {
    background: #0f172a;
}

html[data-theme="dark"] .mvv-card,
html[data-theme="dark"] .what-we-do-card,
html[data-theme="dark"] .objective-card,
html[data-theme="dark"] .sustainability-card {
    background: #1a202c;
    border-color: #2d3748;
}

html[data-theme="dark"] .mvv-card:hover,
html[data-theme="dark"] .what-we-do-card:hover,
html[data-theme="dark"] .objective-card:hover,
html[data-theme="dark"] .sustainability-card:hover {
    background: #2d3748;
}

html[data-theme="dark"] .story-paragraph,
html[data-theme="dark"] .mvv-card-text,
html[data-theme="dark"] .card-description,
html[data-theme="dark"] .objective-description,
html[data-theme="dark"] .program-activity,
html[data-theme="dark"] .infrastructure-list li,
html[data-theme="dark"] .program-item span,
html[data-theme="dark"] .sustainability-list li {
    color: #cbd5e0;
}

/* Dark Mode - Table of Contents Sidebar */
html[data-theme="dark"] .toc-sidebar {
    background: #1a202c;
    border-right-color: #2d3748;
}

html[data-theme="dark"] .toc-title {
    color: #f0f4f8;
}

html[data-theme="dark"] .toc-link {
    color: #cbd5e0;
}

html[data-theme="dark"] .toc-link:hover {
    background: #2d3748;
    color: #60a5fa;
    border-left-color: #60a5fa;
}

html[data-theme="dark"] .toc-link.active {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border-left-color: #60a5fa;
}

/* Dark Mode - Mobile TOC Floating Button */
html[data-theme="dark"] .toc-mobile-btn {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    box-shadow: 0 4px 16px rgba(45, 78, 255, 0.4);
}

html[data-theme="dark"] .toc-mobile-btn:hover {
    box-shadow: 0 6px 20px rgba(45, 78, 255, 0.6);
}

/* Dark Mode - Mobile TOC Drawer */
html[data-theme="dark"] .toc-drawer {
    background: #1a202c;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .toc-drawer-header {
    border-bottom-color: #2d3748;
}

html[data-theme="dark"] .toc-drawer-title {
    color: #f0f4f8;
}

html[data-theme="dark"] .toc-drawer-close {
    color: #cbd5e0;
}

html[data-theme="dark"] .toc-drawer-close:hover {
    background: #2d3748;
    color: #f0f4f8;
}

html[data-theme="dark"] .toc-drawer-link {
    color: #cbd5e0;
}

html[data-theme="dark"] .toc-drawer-link:hover {
    background: #2d3748;
    color: #60a5fa;
    border-left-color: #60a5fa;
}

html[data-theme="dark"] .toc-drawer-link.active {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border-left-color: #60a5fa;
}

/* Dark Mode - Annual Programs */
html[data-theme="dark"] .about-annual-programs {
    background: #0f172a;
}

html[data-theme="dark"] .program-item {
    background: #1a202c;
    border: 1px solid #2d3748;
}

html[data-theme="dark"] .program-item:hover {
    background: #2d3748;
}

html[data-theme="dark"] .program-item i {
    color: #60a5fa;
}

html[data-theme="dark"] .program-item span {
    color: #cbd5e0;
}

html[data-theme="dark"] .about-why-we-exist {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
}

/* Dark Mode - Daily Programs Table */
html[data-theme="dark"] .daily-programs-table {
    background: #1a202c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .program-row {
    border-bottom-color: #2d3748;
}

html[data-theme="dark"] .program-row:hover {
    background: #2d3748;
}

html[data-theme="dark"] .program-day {
    color: #60a5fa;
}

html[data-theme="dark"] .program-activity {
    color: #cbd5e0;
}

/* Dark Mode - Board Members Page */
html[data-theme="dark"] .board-year-selector select {
    background-color: #2d3748;
    color: #f0f4f8;
    border-color: #4299e1;
}

html[data-theme="dark"] .board-year-selector select:hover {
    border-color: #1E3A5F;
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.2);
}

html[data-theme="dark"] .board-year-selector select:focus {
    border-color: #1E3A5F;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

html[data-theme="dark"] .board-year-selector label {
    color: #cbd5e0;
}

html[data-theme="dark"] .board-featured-member {
    background: #1a202c;
    border-top-color: #4299e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .board-featured-name {
    color: #f0f4f8;
}

html[data-theme="dark"] .board-featured-position {
    color: #60a5fa;
}

html[data-theme="dark"] .board-featured-contact div {
    color: #cbd5e0;
}

html[data-theme="dark"] .board-featured-bio {
    color: #cbd5e0;
}

html[data-theme="dark"] .board-member-card {
    background: #1a202c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .board-member-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .board-member-name-small {
    color: #f0f4f8;
}

html[data-theme="dark"] .board-member-position-small {
    color: #60a5fa;
}

html[data-theme="dark"] .board-member-contact-small {
    color: #cbd5e0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HOME PAGE - ABOUT SECTION (Mission & Vision)
   ═══════════════════════════════════════════════════════════════════════════════ */

.about-section {
    padding: 50px 0;
    margin-top: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.about-card {
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-card:hover {
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.12);
    transform: translateY(-4px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2D4EFF 0%, #764BA2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
    flex-shrink: 0;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B7280;
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
    display: flex;
    align-items: stretch;
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.15);
    text-align: center;
    z-index: 10;
}

.visual-badge .num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2D4EFF 0%, #764BA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.visual-badge span:last-child {
    display: block;
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-item:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
    transform: translateY(-6px);
}

.value-item i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2D4EFF 0%, #764BA2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.15) rotate(-10deg);
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about-grid {
        gap: 30px;
    }

    .about-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-card {
        padding: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .value-item {
        padding: 15px;
    }

    .value-item i {
        font-size: 24px;
    }

    .value-item h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }

    .about-card {
        padding: 20px;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
        padding-top: 20px;
    }

    .visual-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 15px;
    }

    .visual-badge .num {
        font-size: 1.5rem;
    }
}

/* DARK MODE SUPPORT */
html[data-theme="dark"] .about-card {
    background: #1a202c;
    border-color: #2d3748;
}

html[data-theme="dark"] .about-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .about-card h3 {
    color: #f0f4f8;
}

html[data-theme="dark"] .about-card p {
    color: #cbd5e0;
}

html[data-theme="dark"] .values-grid {
    border-top-color: #2d3748;
}

html[data-theme="dark"] .value-item h4 {
    color: #f0f4f8;
}

html[data-theme="dark"] .visual-badge {
    background: #1a202c;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HOMEPAGE SPACING SCALE - PREMIUM VERTICAL RHYTHM
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Gallery Section - Tight spacing */
.gallery-section {
    padding: 50px 0;
    margin-top: 0;
}

.gallery-section .section-cta {
    margin-top: 40px;
}

/* Impact Section - Tight spacing */
.impact-section {
    padding: 50px 0;
    margin-top: 0;
}

/* Donation Section - Tight spacing */
.donate-section {
    padding: 50px 0;
    margin-top: 0;
}

.donate-section .donate-tiers {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Section CTA buttons - Reduced spacing */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Internal section spacing */
.section-header {
    margin-bottom: 40px;
}

.section-header + .programs-list,
.section-header + .gallery-grid,
.section-header + .impact-grid {
    margin-top: 0;
}

/* DARK MODE - SECTION TAG */
html[data-theme="dark"] .section-tag {
    background: linear-gradient(135deg, #4a6fff 0%, #9d6ec7 100%);
    border-color: #4a6fff;
    box-shadow: 0 4px 15px rgba(74, 111, 255, 0.35);
}

html[data-theme="dark"] .section-tag:hover {
    background: linear-gradient(135deg, #9d6ec7 0%, #4a6fff 100%);
    border-color: #9d6ec7;
    box-shadow: 0 8px 25px rgba(74, 111, 255, 0.45);
}

