/* =========================================================
   ORIVANA GLOBAL AWARDS — MAIN STYLESHEET
   ========================================================= */

:root {
    --navy: #002147;
    --navy-light: #0a3566;
    --gold: #D4AF37;
    --gold-light: #f0d572;
    --white: #FFFFFF;
    --black: #000000;
    --off-white: #FAF9F6;
    --gray: #6b7280;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 10px 30px rgba(0, 33, 71, 0.12);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.35);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); }

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

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-title.light { color: var(--white); }

.section-desc {
    color: var(--gray);
    max-width: 620px;
    margin-bottom: 40px;
    font-size: 16px;
}

.section-desc.light-desc { color: rgba(255,255,255,0.75); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

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

section { padding: 90px 0; }

/* -------------------- BUTTONS -------------------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-small { padding: 10px 22px; font-size: 13px; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(212,175,55,0.5); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-3px); }

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

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

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* Gold sparkle hover */
.btn-gold::after {
    content: "";
    position: absolute;
    top: -50%; left: -60%;
    width: 40px; height: 200%;
    background: rgba(255,255,255,0.5);
    transform: rotate(25deg);
    transition: left 0.5s ease;
}
.btn-gold:hover::after { left: 130%; }

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; color: var(--white); }

.preloader-logo {
    width: 90px; height: 90px; object-fit: contain;
    margin: 0 auto 18px; border-radius: 50%;
    background: var(--white); padding: 10px;
    animation: sparkleFloat 2s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(212,175,55,0.6);
}
@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 30px rgba(212,175,55,0.5); }
    50% { transform: translateY(-8px); box-shadow: 0 0 55px rgba(212,175,55,0.9); }
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 34px; letter-spacing: 6px; color: var(--gold);
}
.preloader-sub {
    font-size: 14px; letter-spacing: 8px; color: var(--white); margin-top: 4px;
}
.preloader-tagline {
    font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 10px; letter-spacing: 1px;
}
.preloader-bar {
    width: 220px; height: 3px; background: rgba(255,255,255,0.15);
    border-radius: 3px; margin: 26px auto 10px; overflow: hidden;
}
.preloader-bar span {
    display: block; height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: loadBar 3s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }
.preloader-loading { font-size: 12px; color: rgba(255,255,255,0.5); }

/* =========================================================
   WELCOME POPUP
   ========================================================= */
.popup-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,33,71,0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
    padding: 20px;
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-box {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    max-width: 460px; width: 100%;
    padding: 44px 36px; text-align: center;
    position: relative;
    transform: scale(0.85); transition: transform 0.35s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.popup-overlay.active .popup-box { transform: scale(1); }

.popup-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none; font-size: 26px;
    color: var(--black); cursor: pointer;
}
.popup-icon { font-size: 40px; margin-bottom: 10px; }
.popup-box h2 { font-size: 22px; color: var(--navy); margin-bottom: 14px; line-height: 1.4; }
.popup-box p { font-size: 14px; color: var(--gray); margin-bottom: 12px; line-height: 1.6; }
.popup-highlight { color: var(--navy); font-weight: 500; }
.popup-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    background: var(--white);
    transition: var(--transition);
}
.site-nav.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 46px; width: 46px; object-fit: contain; border-radius: 50%; }

.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--navy);
    transition: var(--transition); position: relative;
}
.site-nav.scrolled .nav-links a { color: var(--white); }
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); }
.site-nav.scrolled .nav-toggle span { background: var(--white); }

.floating-nominate {
    position: fixed; bottom: 26px; right: 26px; z-index: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy); padding: 14px 22px; border-radius: 50px;
    font-weight: 700; font-size: 14px; box-shadow: var(--shadow-gold);
    display: none; align-items: center; gap: 6px;
    animation: pulseGlow 2.5s infinite;
}
.floating-nominate.show { display: inline-flex; }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,33,71,0.75), rgba(0,33,71,0.9));
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; color: var(--white); }
.hero-eyebrow { letter-spacing: 4px; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.hero-title { font-size: clamp(32px, 6vw, 58px); line-height: 1.2; margin-bottom: 18px; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 34px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }

.hero-countdown {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: var(--radius);
    padding: 20px 26px; backdrop-filter: blur(8px);
    display: inline-block;
}
.countdown-label { font-size: 13px; color: var(--gold); margin-bottom: 12px; }
.countdown-grid { display: flex; gap: 18px; }
.countdown-grid div { text-align: center; }
.countdown-grid span { display: block; font-size: 24px; font-weight: 700; color: var(--white); }
.countdown-grid small { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; }

.hero-scroll-indicator {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: var(--gold); font-size: 22px; z-index: 2;
    animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,10px);} }

 /* =========================================================
   STATS
   ========================================================= */
.stats-section { background: var(--off-white); padding: 60px 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; text-align: center;
}
.stat-card {
    background: var(--white); border-radius: var(--radius-sm);
    padding: 26px 12px; box-shadow: var(--shadow);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); }
.stat-icon { font-size: 26px; margin-bottom: 8px; }
.stat-value { font-size: 26px; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { border-radius: var(--radius); }
.about-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--gold); color: var(--navy);
    padding: 10px 18px; border-radius: 50px; font-weight: 700; font-size: 14px;
}
.about-text p { color: var(--gray); margin-bottom: 18px; line-height: 1.8; }

/* =========================================================
   WHY ORIVANA
   ========================================================= */
.why-section { background: var(--off-white); }
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px;
}
.why-card {
    background: var(--white); padding: 36px 26px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow); transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-8px); border-bottom-color: var(--gold); }
.why-icon { font-size: 34px; margin-bottom: 14px; }
.why-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* =========================================================
   CATEGORIES CAROUSEL
   ========================================================= */
.categories-carousel {
    display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
    padding: 10px 4px 20px; scrollbar-width: none;
}
.categories-carousel::-webkit-scrollbar { display: none; }
.category-card {
    flex: 0 0 220px; background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 28px 20px; text-align: center;
    border: 1px solid rgba(212,175,55,0.15); transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.category-icon-wrap {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 26px;
}
.category-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.category-card p { font-size: 12px; color: var(--gray); margin-bottom: 14px; min-height: 32px; }
.category-link { color: var(--gold); font-weight: 600; font-size: 13px; }
.category-card-more { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--navy); }
.category-card-more h4 { color: var(--white); }
.carousel-controls { display: flex; gap: 10px; justify-content: center; margin-top: 10px; }
.carousel-controls button {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--navy);
    background: var(--white); color: var(--navy); cursor: pointer; font-size: 16px;
}
.carousel-controls button:hover { background: var(--navy); color: var(--white); }

/* =========================================================
   NOMINEES
   ========================================================= */
.nominees-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px;
}
.nominee-card {
    background: var(--white); border: 2px solid var(--gold);
    border-radius: var(--radius); padding: 20px; text-align: center;
    box-shadow: var(--shadow); transition: var(--transition);
}
.nominee-card:hover { transform: translateY(-8px); }
.nominee-photo-wrap { position: relative; width: 100px; height: 100px; margin: 0 auto 14px; }
.nominee-photo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid var(--gold); }
.nominee-flag { position: absolute; bottom: -2px; right: -2px; font-size: 20px; }
.nominee-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.nominee-category { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.nominee-votes { font-size: 13px; color: var(--gray); margin-bottom: 14px; }

/* =========================================================
   MAP
   ========================================================= */
.map-section { background: var(--off-white); }
.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-image { width: 100%; filter: grayscale(20%) brightness(1.05); }
.map-pin { position: absolute; transform: translate(-50%, -50%); cursor: pointer; }
.pin-dot {
    display: block; width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold); border: 2px solid var(--navy);
    box-shadow: 0 0 0 rgba(212,175,55,0.6); animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.pin-tooltip {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    background: var(--navy); color: var(--white); padding: 8px 12px;
    border-radius: 8px; font-size: 12px; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: var(--transition); text-align: center;
}
.map-pin:hover .pin-tooltip { opacity: 1; visibility: visible; }

/* =========================================================
   COMMUNITY IMPACT
   ========================================================= */
.impact-section { background: var(--navy); }
.impact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}
.impact-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius); padding: 30px 16px; text-align: center;
    transition: var(--transition);
}
.impact-card:hover { background: rgba(212,175,55,0.15); transform: translateY(-6px); }
.impact-icon { font-size: 30px; margin-bottom: 10px; }
.impact-card h4 { color: var(--white); font-size: 14px; font-weight: 500; }

/* =========================================================
   HALL OF EXCELLENCE
   ========================================================= */
.hall-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.hall-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.hall-photo { position: relative; height: 240px; }
.hall-photo img { width: 100%; height: 100%; object-fit: cover; }
.hall-year {
    position: absolute; top: 14px; right: 14px; background: var(--gold);
    color: var(--navy); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.hall-info { padding: 18px; text-align: center; }
.hall-info h4 { color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.hall-award { color: var(--gold); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.hall-country { font-size: 12px; color: var(--gray); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { background: var(--off-white); }
.testimonials-track {
    display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth;
    padding: 10px 4px 20px; scrollbar-width: none; margin-top: 40px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 340px; background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 30px;
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testimonial-review { font-size: 14px; color: var(--black); line-height: 1.7; margin-bottom: 20px; min-height: 90px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-author h5 { font-size: 14px; color: var(--navy); }
.testimonial-author p { font-size: 12px; color: var(--gray); }
.verified-badge { color: #2ecc71; font-size: 12px; }

/* =========================================================
   EVENTS TIMELINE
   ========================================================= */
.events-timeline { position: relative; margin-top: 50px; padding: 20px 0; }
.events-timeline::before {
    content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: var(--gold); transform: translateX(-50%);
}
.event-item { position: relative; width: 50%; padding: 20px 40px; }
.event-item.left { left: 0; text-align: right; }
.event-item.right { left: 50%; text-align: left; }
.event-dot {
    position: absolute; top: 26px; width: 16px; height: 16px; border-radius: 50%;
    background: var(--gold); border: 3px solid var(--navy);
}
.event-item.left .event-dot { right: -8px; }
.event-item.right .event-dot { left: -8px; }
.event-card { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 20px; display: inline-block; }
.event-date { color: var(--gold); font-size: 12px; font-weight: 700; }
.event-card h4 { color: var(--navy); margin: 6px 0; font-size: 16px; }
.event-card p { font-size: 13px; color: var(--gray); }

/* =========================================================
   PARTNERS
   ========================================================= */
.partners-section { background: var(--navy); text-align: center; }

.tiers-grid-pro {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px; margin-top: 44px; text-align: left;
}
.tier-card-pro {
    position: relative; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius);
    padding: 30px 24px; display: flex; flex-direction: column;
    transition: var(--transition);
}
.tier-card-pro:hover { transform: translateY(-8px); border-color: var(--gold); background: rgba(255,255,255,0.08); }
.tier-featured-pro { border-color: var(--gold); background: linear-gradient(160deg, rgba(212,175,55,0.16), rgba(212,175,55,0.04)); }
.tier-ribbon {
    position: absolute; top: -12px; left: 24px; background: var(--gold); color: var(--navy);
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px;
}
.tier-badge {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.tier-price { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--white); line-height: 1; }
.tier-sub { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin: 6px 0 18px; }
.tier-divider { height: 1px; background: rgba(212,175,55,0.25); margin-bottom: 16px; }
.tier-perks { list-style: none; margin-bottom: 22px; flex: 1; }
.tier-perks li {
    display: flex; align-items: flex-start; gap: 8px; font-size: 13px;
    color: rgba(255,255,255,0.7); line-height: 1.6; padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tier-perks li:last-child { border-bottom: none; }
.perk-icon { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.tier-cta { width: 100%; text-align: center; }

/* Partner application modal */
.partner-modal-box { max-width: 480px; text-align: left; }
/* =========================================================
   FOUNDATION
   ========================================================= */
.foundation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.foundation-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.foundation-text p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.foundation-pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pillar-tag {
    background: var(--off-white); border: 1px solid var(--gold);
    color: var(--navy); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 500;
}

/* =========================================================
   NEWS
   ========================================================= */
.news-section { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.news-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; transition: var(--transition); }
.news-card:hover { transform: translateY(-6px); }
.news-date { color: var(--gold); font-size: 12px; font-weight: 700; }
.news-card h4 { color: var(--navy); margin: 10px 0; font-size: 17px; line-height: 1.4; }
.news-card p { color: var(--gray); font-size: 13px; margin-bottom: 14px; }
.news-link { color: var(--navy); font-weight: 600; font-size: 13px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-accordion { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
    width: 100%; background: none; border: none; text-align: left;
    padding: 20px 4px; font-size: 15px; font-weight: 600; color: var(--navy);
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-toggle { color: var(--gold); font-size: 20px; transition: var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 4px 20px; color: var(--gray); font-size: 14px; line-height: 1.7; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter-section { background: linear-gradient(135deg, var(--navy), var(--navy-light)); text-align: center; }
.newsletter-inner h2 { color: var(--white); font-size: 30px; margin-bottom: 10px; }
.newsletter-inner p { color: rgba(255,255,255,0.75); margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
    flex: 1; padding: 14px 18px; border-radius: 50px; border: none; font-size: 14px;
}
.newsletter-msg { margin-top: 14px; color: var(--gold); font-size: 13px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #001330; color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 40px; }
.footer-logo { height: 50px; width: 50px; border-radius: 50%; background: var(--white); padding: 6px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h5 { color: var(--white); font-size: 14px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; margin-bottom: 10px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--gold); }
.footer-contact p { font-size: 13px; margin-bottom: 10px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    font-size: 12px; max-width: 1240px; margin: 0 auto;
}

#backToTop {
    position: fixed; bottom: 26px; left: 26px; z-index: 700;
    width: 44px; height: 44px; border-radius: 50%; border: none;
    background: var(--navy); color: var(--gold); font-size: 18px; cursor: pointer;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
#backToTop.show { opacity: 1; visibility: visible; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid, .nominees-grid, .hall-grid, .news-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .tiers-grid-pro { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .foundation-grid { grid-template-columns: 1fr; }
    .foundation-image { order: -1; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav-links {
        position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
        background: var(--navy); flex-direction: column; align-items: flex-start;
        padding: 30px 24px; gap: 18px; transform: translateX(-100%);
        transition: var(--transition); overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { color: var(--white); font-size: 16px; }
    .nav-toggle { display: flex; }
    .nav-actions .btn-small { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .nominees-grid, .hall-grid, .news-grid, .impact-grid, .tiers-grid-pro { grid-template-columns: 1fr; }
    .events-timeline::before { left: 14px; }
    .event-item, .event-item.left, .event-item.right { width: 100%; left: 0; text-align: left; padding-left: 40px; }
    .event-item.left .event-dot, .event-item.right .event-dot { left: 6px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-form { flex-direction: column; }
}
