/* ============ VARIABLES ============ */
:root {
    --navy: #0A1628;
    --navy-mid: #162038;
    --blue: #2563EB;
    --cyan: #06B6D4;
    --gold: #F59E0B;
    --gold-light: #FDE68A;
    --white: #FFFFFF;
    --off-white: #F1F5F9;
    --gray: #94A3B8;
    --gray-dark: #475569;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: #1E293B; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ============ CURSOR GLOW ============ */
.cursor-glow {
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 0;
    transform: translate(-50%, -50%); transition: opacity 0.3s;
}

/* ============ BUTTONS ============ */
.btn {
    padding: 16px 36px; border-radius: 60px; font-weight: 600;
    font-size: 0.95rem; text-decoration: none; display: inline-flex;
    align-items: center; gap: 10px; transition: all 0.4s;
    border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
}
.btn-glow {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    box-shadow: 0 0 30px rgba(37,99,235,0.3), 0 0 60px rgba(6,182,212,0.15);
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(37,99,235,0.4), 0 0 80px rgba(6,182,212,0.2); }
.btn-outline-light {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-white {
    background: var(--white); color: var(--navy);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(0,0,0,0.2); }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s;
}
.navbar.solid {
    background: linear-gradient(135deg, rgba(10,22,40,0.97), rgba(22,32,56,0.97));
    backdrop-filter: blur(20px);
    padding: 12px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-logo {
    font-family: 'Outfit', sans-serif; font-size: 1.5rem;
    font-weight: 800; color: var(--white); text-decoration: none;
    letter-spacing: 3px; display: flex; align-items: center; gap: 14px;
}
/* Logo glow ring */
.glow-ring {
    width: 78px; height: 78px; border-radius: 50%; padding: 3px;
    background: conic-gradient(#2563EB, #06B6D4, #F59E0B, #2563EB);
    box-shadow: 0 0 20px rgba(37,99,235,0.3), 0 0 40px rgba(6,182,212,0.15);
    flex-shrink: 0; transition: all 0.3s;
}
.glow-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background: #fff; display: flex; align-items: center;
    justify-content: center; padding: 5px;
}
.glow-inner img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: 2.5px; line-height: 1; }
.nav-brand-sub { font-size: 0.6rem; color: #F59E0B; text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
.navbar.solid .glow-ring { width: 55px; height: 55px; }
.navbar.solid .nav-brand-name { font-size: 1.1rem; }
.navbar.solid .nav-brand-sub { font-size: 0.55rem; }
.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.7); text-decoration: none; padding: 8px 16px;
    font-size: 0.95rem; font-weight: 500; border-radius: 8px;
    transition: all 0.3s;
}
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-btn {
    background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
    color: var(--white) !important; font-weight: 600 !important;
    padding: 10px 22px !important; border-radius: 50px !important;
}
.nav-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(37,99,235,0.4); }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }
.mobile-close-li { display: none !important; }

/* Mobile Menu */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none !important; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--navy);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 6px; z-index: 9999; padding: 20px;
        overflow-y: auto; -webkit-overflow-scrolling: touch;
    }
    .navbar .nav-links.mobile-open {
        display: flex !important;
    }
    body.menu-open { overflow: hidden !important; height: 100vh !important; position: fixed !important; width: 100% !important; }
    .mobile-toggle { position: relative; z-index: 10000; }
    .mobile-close-li { display: block !important; position: absolute !important; top: 20px; right: 20px; width: auto !important; }
    .mobile-close {
        width: 44px; height: 44px; border-radius: 50%;
        background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
        color: white; font-size: 1.2rem; cursor: pointer;
        display: flex; align-items: center; justify-content: center; 
        transition: all 0.3s;
    }
    .mobile-close:hover { background: rgba(255,255,255,0.15); }
    .nav-links::before {
        content: 'BANASKATHA'; position: absolute; top: 40px; left: 0; right: 0;
        text-align: center; font-family: 'Outfit', sans-serif;
        font-size: 1.8rem; font-weight: 800; color: var(--white);
        letter-spacing: 4px; opacity: 0.1;
    }
    .nav-links::after {
        content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        background:
            radial-gradient(ellipse 60% 50% at 20% 80%, rgba(6,182,212,0.08) 0%, transparent 60%),
            radial-gradient(ellipse 50% 40% at 80% 20%, rgba(37,99,235,0.06) 0%, transparent 50%);
        pointer-events: none;
    }
    .nav-links li { list-style: none; width: 100%; max-width: 300px; position: relative; z-index: 1; }
    .nav-links a {
        font-size: 1.1rem; padding: 16px 24px; display: flex; align-items: center;
        width: 100%; border-radius: 14px; color: rgba(255,255,255,0.7);
        transition: all 0.3s; border: 1px solid transparent;
    }
    .nav-links a:hover, .nav-links a.active {
        background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08);
        color: var(--white);
    }
    .nav-links .nav-btn {
        margin-top: 10px; justify-content: center;
        background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
        border: none !important;
        box-shadow: 0 0 25px rgba(37,99,235,0.25);
    }
    .mobile-toggle { display: block; z-index: 300; }
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; 
    background: var(--navy); padding-top: 140px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(6,182,212,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37,99,235,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(245,158,11,0.05) 0%, transparent 50%);
}
.hero-shape {
    position: absolute; border-radius: 50%; opacity: 0.06;
    animation: float 20s infinite ease-in-out;
}
.hero-shape:nth-child(1) {
    width: 600px; height: 600px; top: -200px; right: -150px;
    background: var(--blue); animation-delay: 0s;
}
.hero-shape:nth-child(2) {
    width: 400px; height: 400px; bottom: -100px; left: -100px;
    background: var(--cyan); animation-delay: -7s;
}
.hero-shape:nth-child(3) {
    width: 250px; height: 250px; top: 30%; left: 15%;
    background: var(--gold); animation-delay: -14s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 900px; padding: 0 20px;
}
.hero-overline {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--gold); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; margin-bottom: 30px;
}
.hero-overline::before, .hero-overline::after {
    content: ''; width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-overline::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-content h1 {
    font-size: 5.5rem; font-weight: 800; color: var(--white);
    line-height: 1.05; margin-bottom: 25px; letter-spacing: -2px;
}
.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-content p {
    font-size: 1.2rem; color: var(--gray);
    max-width: 600px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--gray); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-indicator .mouse {
    width: 24px; height: 38px; border: 2px solid var(--gray);
    border-radius: 14px; position: relative;
}
.scroll-indicator .mouse::after {
    content: ''; width: 3px; height: 8px; background: var(--gold);
    border-radius: 2px; position: absolute; top: 6px; left: 50%;
    transform: translateX(-50%); animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* ============ STATS TICKER ============ */
.stats-ticker {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; padding: 30px 0; position: relative;
}
.ticker-track {
    display: flex; gap: 80px; animation: ticker 30s linear infinite;
    width: max-content;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.ticker-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 800; color: var(--white);
}
.ticker-item .txt {
    font-size: 0.8rem; color: var(--gray);
    text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.4;
}
.ticker-divider { color: rgba(255,255,255,0.1); font-size: 1.5rem; flex-shrink: 0; }

/* ============ ABOUT ============ */
.about { padding: 120px 40px; background: var(--white); }
.about-wrapper { max-width: 1200px; margin: 0 auto; }
.about-top {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: end; margin-bottom: 60px;
}
.about-top h2 {
    font-size: 3.5rem; font-weight: 800; color: var(--navy);
    line-height: 1.1; letter-spacing: -1px;
}
.about-top h2 span { color: var(--blue); }
.about-top p { font-size: 1.1rem; color: var(--gray-dark); line-height: 1.9; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.about-card {
    padding: 40px 30px; border-radius: 20px;
    position: relative; overflow: hidden; transition: transform 0.4s;
}
.about-card:hover { transform: translateY(-8px); }
.about-card:nth-child(1) { background: linear-gradient(135deg, #0A1628, #162038); color: var(--white); }
.about-card:nth-child(2) { background: linear-gradient(135deg, var(--blue), #1D4ED8); color: var(--white); }
.about-card:nth-child(3) { background: linear-gradient(135deg, var(--gold), #D97706); color: var(--navy); }
.about-card .card-icon { font-size: 2rem; margin-bottom: 20px; opacity: 0.8; }
.about-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.about-card p { font-size: 0.92rem; line-height: 1.7; opacity: 0.85; }
.about-card .bg-number {
    position: absolute; bottom: -20px; right: 10px;
    font-family: 'Playfair Display', serif; font-size: 8rem;
    font-weight: 900; opacity: 0.06;
}

/* ============ SERVICES — BENTO GRID ============ */
.services { padding: 120px 40px; background: var(--off-white); }
.services-wrapper { max-width: 1200px; margin: 0 auto; }
.services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 50px;
}
.services-header h2 { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.services-header p { max-width: 350px; color: var(--gray-dark); font-size: 0.95rem; text-align: right; }
.bento-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto; gap: 20px;
}
.bento-item {
    background: var(--white); border-radius: 20px; padding: 35px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s; position: relative; overflow: hidden;
}
.bento-item:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,22,40,0.08); }
.bento-item.wide { grid-column: span 2; }
.bento-item .icon-ring {
    width: 56px; height: 56px; border-radius: 50%;
    border: 2px solid var(--blue); color: var(--blue);
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.2rem; margin-bottom: 20px; transition: all 0.3s;
}
.bento-item:hover .icon-ring { background: var(--blue); color: var(--white); }
.bento-item.accent-card { background: var(--navy); color: var(--white); }
.bento-item.accent-card .icon-ring { border-color: var(--cyan); color: var(--cyan); }
.bento-item.accent-card:hover .icon-ring { background: var(--cyan); color: var(--navy); }
.bento-item h3 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.bento-item p { font-size: 0.88rem; color: var(--gray-dark); line-height: 1.7; }
.bento-item.accent-card p { color: var(--gray); }

/* ============ MEMBERS ============ */
.members { padding: 120px 0; background: var(--white); }
.members-header {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 50px;
}
.members-header h2 { font-size: 3rem; font-weight: 800; color: var(--navy); }
.members-scroll {
    display: flex; gap: 25px; overflow-x: auto;
    padding: 10px 40px 30px; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
}
.members-scroll::-webkit-scrollbar { display: none; }
.member-card {
    min-width: 300px; flex-shrink: 0; scroll-snap-align: start;
    background: var(--white); border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px; overflow: hidden; transition: all 0.4s;
}
.member-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(10,22,40,0.1); }
.member-card .card-header {
    height: 140px; position: relative;
    display: flex; align-items: center; justify-content: center; 
}
.member-card:nth-child(6n+1) .card-header { background: linear-gradient(135deg, #0A1628, var(--blue)); }
.member-card:nth-child(6n+2) .card-header { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.member-card:nth-child(6n+3) .card-header { background: linear-gradient(135deg, var(--cyan), #059669); }
.member-card:nth-child(6n+4) .card-header { background: linear-gradient(135deg, #7C3AED, var(--blue)); }
.member-card:nth-child(6n+5) .card-header { background: linear-gradient(135deg, var(--gold), #DC2626); }
.member-card:nth-child(6n+6) .card-header { background: linear-gradient(135deg, #0A1628, var(--cyan)); }
.member-card .initials {
    font-family: 'Playfair Display', serif; font-size: 3rem;
    font-weight: 800; color: rgba(255,255,255,0.15); position: absolute;
}
.member-card .avatar-badge {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--white); color: var(--navy);
    display: flex; align-items: center; justify-content: center; 
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
    position: absolute; bottom: -32px;
    border: 4px solid var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.member-card .card-body { padding: 45px 25px 25px; text-align: center; }
.member-card .card-body h4 {
    font-family: 'Outfit', sans-serif; font-size: 1.05rem;
    font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.member-card .card-body .location { font-size: 0.82rem; color: var(--gray); margin-bottom: 12px; }
.member-card .card-body .capacity-tag {
    display: inline-block; padding: 5px 14px;
    background: var(--off-white); border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; color: var(--blue);
}
.scroll-hint { text-align: center; margin-top: 20px; color: var(--gray); font-size: 0.85rem; }
.scroll-hint i { animation: bounceRight 1.5s infinite; }
@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ============ COMMITTEE ============ */
.committee {
    padding: 120px 40px; background: var(--navy);
    position: relative; overflow: hidden;
}
.committee::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(37,99,235,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(6,182,212,0.06) 0%, transparent 40%);
}
.committee-wrapper { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.committee-header { text-align: center; margin-bottom: 60px; }
.committee-header h2 { font-size: 3rem; font-weight: 800; color: var(--white); }
.committee-header p { color: var(--gray); margin-top: 10px; font-size: 1rem; }
.committee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.committee-person h4 { font-size: 0.92rem; word-break: break-word; }
.committee-person {
    text-align: center; padding: 40px 20px; border-radius: 20px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s;
}
.committee-person:hover {
    background: rgba(255,255,255,0.06); transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.committee-person .photo-ring {
    width: 100px; height: 100px; border-radius: 50%;
    background: conic-gradient(var(--blue), var(--cyan), var(--gold), var(--blue));
    display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; padding: 3px;
}
.committee-person .photo-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background: var(--navy-mid);
    display: flex; align-items: center; justify-content: center; 
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 800; color: var(--white);
    overflow: hidden;
}
.committee-person .photo-inner img {
    width: 100%; height: 100%; object-fit: cover;
}
.committee-person h4 {
    font-family: 'Outfit', sans-serif; font-size: 1.05rem;
    font-weight: 700; color: var(--white); margin-bottom: 5px;
}
.committee-person .role {
    font-size: 0.78rem; color: var(--gold);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}

/* ============ NEWS ============ */
.news { padding: 120px 40px; background: var(--white); }
.news-wrapper { max-width: 1200px; margin: 0 auto; }
.news-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 50px;
}
.news-header h2 { font-size: 3rem; font-weight: 800; color: var(--navy); }
.news-header a {
    color: var(--blue); text-decoration: none; font-weight: 600;
    font-size: 0.95rem; display: flex; align-items: center; gap: 8px;
}
.news-layout { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 30px; }
.news-hero-card {
    border-radius: 24px; overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative; min-height: 450px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 40px; transition: transform 0.4s;
}
.news-hero-card:hover { transform: translateY(-5px); }
.news-hero-card .bg-icon {
    position: absolute; top: 40px; right: 40px;
    font-size: 6rem; color: rgba(255,255,255,0.04);
}
.news-hero-card .tag {
    display: inline-block; background: var(--blue);
    color: var(--white); padding: 5px 14px; border-radius: 6px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    margin-bottom: 15px; width: fit-content;
}
.news-hero-card .date { color: var(--gray); font-size: 0.85rem; margin-bottom: 10px; }
.news-hero-card h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.news-hero-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
.news-hero-card .read-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--cyan); font-weight: 600; text-decoration: none;
    margin-top: 20px; font-size: 0.95rem;
}
.news-stack { display: flex; flex-direction: column; gap: 20px; }
.news-mini {
    padding: 25px; border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s;
    flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.news-mini:hover { border-color: var(--blue); transform: translateX(5px); }
.news-mini .date { font-size: 0.78rem; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.news-mini h4 {
    font-family: 'Outfit', sans-serif; font-size: 1rem;
    font-weight: 700; color: var(--navy); line-height: 1.4;
}
.news-mini h4 a { color: var(--navy); text-decoration: none; }
.news-mini h4 a:hover { color: var(--blue); }
.news-mini p { font-size: 0.82rem; color: var(--gray-dark); margin-top: 6px; }

/* ============ CTA ============ */
.cta-section {
    padding: 120px 40px; text-align: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.1) 0%, transparent 40%);
}
.cta-content { position: relative; z-index: 2; }
.cta-section h2 {
    font-size: 3.5rem; font-weight: 800; color: var(--white);
    margin-bottom: 20px; letter-spacing: -1px;
}
.cta-section p {
    font-size: 1.15rem; color: rgba(255,255,255,0.8);
    margin-bottom: 35px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); padding: 80px 40px 30px; color: var(--gray); }
.footer-wrapper { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px;
    padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-footer h3 {
    font-family: 'Outfit', sans-serif; color: var(--white);
    font-size: 1rem; font-weight: 700; margin-bottom: 20px;
}
.site-footer .brand-block .logo-text {
    font-family: 'Outfit', sans-serif; font-size: 1.5rem;
    font-weight: 800; color: var(--white); letter-spacing: 3px;
    margin-bottom: 15px;
}
.site-footer p { font-size: 0.88rem; line-height: 1.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--gray); text-decoration: none; font-size: 0.88rem;
    transition: color 0.3s; display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--cyan); }
.footer-links a::before { content: ''; width: 0; height: 1px; background: var(--cyan); transition: width 0.3s; }
.footer-links a:hover::before { width: 15px; }
.footer-contact-row {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 12px; font-size: 0.88rem;
}
.footer-contact-row i { color: var(--cyan); margin-top: 3px; width: 16px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 25px; font-size: 0.82rem;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray); display: flex; align-items: center;
    justify-content: center; text-decoration: none; transition: all 0.3s;
}
.social-row a:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(6,182,212,0.08); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .about-top { grid-template-columns: 1fr; gap: 30px; }
    .about-top h2 { font-size: 2.5rem; }
    .about-cards { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-item.wide { grid-column: span 1; }
    .committee-grid { grid-template-columns: repeat(2, 1fr); }
    .news-layout { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .services-header p { text-align: left; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .navbar { padding: 8px 15px; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .glow-ring { width: 42px; height: 42px; padding: 2px; }
    .glow-inner { padding: 3px; }
    .nav-brand-name { font-size: 1rem; letter-spacing: 1.5px; }
    .nav-brand-sub { font-size: 0.5rem; letter-spacing: 1px; margin-top: 2px; }
    .nav-logo { gap: 10px; }
    .navbar.solid .glow-ring { width: 38px; height: 38px; }
    .navbar.solid .nav-brand-name { font-size: 0.9rem; }
    .hero-content h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero { padding: 120px 20px 100px; }
    .scroll-indicator { display: none; }
    .about, .services, .committee, .news, .cta-section { padding: 80px 20px; }
    .about-top h2 { font-size: 2rem; }
    .services-header h2, .members-header h2, .news-header h2, .committee-header h2 { font-size: 2rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .committee-grid { grid-template-columns: 1fr; }
    .news-hero-card { min-height: 350px; padding: 25px; }
    .news-hero-card h3 { font-size: 1.3rem; }
    .cta-section h2 { font-size: 2.2rem; }
    .footer-top { grid-template-columns: repeat(2, 1fr); } .footer-top > .brand-block, .footer-top > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .members-scroll { padding: 10px 20px 30px; }
    .members-header { padding: 0 20px; }
}

/* ============ ANIMATIONS ============ */
.anim {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }

/* ============ WP OVERRIDES ============ */
.wp-admin-bar-fix { margin-top: 32px; }
body.admin-bar .navbar { top: 32px; }
