/* ========================================
   9th World Meet 2026 - NEW 3D Theme
   Dark Navy + Gold + Deep Crimson
   ======================================== */

:root {
    --bg-primary: #0c1020;
    --bg-secondary: #141a30;
    --bg-card: rgba(20, 26, 48, 0.7);
    --bg-glass: rgba(255, 215, 0, 0.04);
    --gold: #f0c040;
    --gold-bright: #ffe066;
    --gold-dim: #b8860b;
    --crimson: #c0392b;
    --crimson-bright: #e74c3c;
    --text: #e8e8e8;
    --text-dim: #8a8fa3;
    --border: rgba(240, 192, 64, 0.15);
    --border-hover: rgba(240, 192, 64, 0.4);
    --shadow-gold: rgba(240, 192, 64, 0.15);
    --shadow-crimson: rgba(192, 57, 43, 0.15);
    --perspective: 1000px;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== 3D FLOATING BACKGROUND ===== */
.bg-3d {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(240,192,64,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(192,57,43,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(20,26,48,1) 0%, rgba(12,16,32,1) 100%);
}

.bg-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(240,192,64,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,192,64,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(var(--perspective)) rotateX(60deg);
    transform-origin: center top;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: perspective(var(--perspective)) rotateX(60deg) translateY(0); }
    100% { transform: perspective(var(--perspective)) rotateX(60deg) translateY(60px); }
}

/* Floating 3D cubes */
.float-cube {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    animation: cubeFloat 18s ease-in-out infinite;
}

.float-cube::before {
    content: '';
    display: block;
    border: 2px solid var(--gold);
    transform-style: preserve-3d;
}

.float-cube:nth-child(1) { top: 8%; left: 5%; animation-delay: 0s; }
.float-cube:nth-child(1)::before { width: 60px; height: 60px; animation: cubeSpin 12s linear infinite; }
.float-cube:nth-child(2) { top: 55%; right: 8%; animation-delay: -6s; }
.float-cube:nth-child(2)::before { width: 45px; height: 45px; border-color: var(--crimson); animation: cubeSpin 15s linear infinite reverse; }
.float-cube:nth-child(3) { bottom: 15%; left: 12%; animation-delay: -12s; }
.float-cube:nth-child(3)::before { width: 80px; height: 80px; border-radius: 50%; border-color: var(--gold-dim); animation: cubeSpin 20s linear infinite; }
.float-cube:nth-child(4) { top: 30%; right: 25%; animation-delay: -3s; }
.float-cube:nth-child(4)::before { width: 35px; height: 35px; border-color: var(--crimson-bright); clip-path: polygon(50% 0%, 100% 100%, 0% 100%); animation: cubeSpin 10s linear infinite; }

@keyframes cubeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-40px) rotate(90deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    75% { transform: translateY(-50px) rotate(270deg); }
}

@keyframes cubeSpin {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 16, 32, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.site-header.scrolled {
    background: rgba(12, 16, 32, 0.98);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease);
}

.logo-wrap:hover {
    transform: perspective(var(--perspective)) rotateY(8deg) translateZ(15px);
}

.logo-wrap img {
    height: 55px;
    filter: drop-shadow(0 0 12px rgba(240,192,64,0.25));
    transition: filter 0.3s;
}

.logo-wrap:hover img {
    filter: drop-shadow(0 0 25px rgba(240,192,64,0.5));
}

.logo-text {
    color: var(--gold);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav */
.main-nav {
    display: flex;
    gap: 0.3rem;
    list-style: none;
}

.main-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.35s var(--ease);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.35s var(--ease);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--gold);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: var(--bg-glass);
    transform: translateY(-2px);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
    color: var(--bg-primary) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 30px var(--shadow-gold);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    transform-style: preserve-3d;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--bg-primary);
    box-shadow: 0 6px 25px var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.6s;
}

.btn-gold:hover::before { left: 100%; }

.btn-gold:hover {
    transform: translateY(-4px) translateZ(20px);
    box-shadow: 0 12px 40px var(--shadow-gold), 0 0 0 1px rgba(240,192,64,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(240,192,64,0.05);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px) translateZ(20px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.btn-crimson {
    background: linear-gradient(135deg, var(--crimson-bright), var(--crimson));
    color: #fff;
    box-shadow: 0 6px 25px var(--shadow-crimson);
}

.btn-crimson:hover {
    transform: translateY(-4px) translateZ(20px);
    box-shadow: 0 12px 40px var(--shadow-crimson);
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    padding: 0.4rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--bg-glass);
}

.section-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-title span {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 90px;
    perspective: var(--perspective);
    overflow: hidden;
}

.hero-ring {
    position: absolute;
    border: 1px solid rgba(240,192,64,0.08);
    border-radius: 50%;
    pointer-events: none;
    animation: ringPulse 6s ease-in-out infinite;
}

.hero-ring:nth-child(1) { width: 500px; height: 500px; top: 10%; left: -5%; animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 400px; height: 400px; bottom: 5%; right: -5%; animation-delay: -2s; border-color: rgba(192,57,43,0.06); }
.hero-ring:nth-child(3) { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -4s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

.hero-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.6rem 2rem;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    animation: fadeUp 0.8s var(--ease) both;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-title .line-main {
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(240,192,64,0.2));
    animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.hero-title .line-sub {
    display: block;
    font-size: 0.45em;
    color: var(--text-dim);
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-top: 0.3rem;
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-venue {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s var(--ease) 0.45s both;
}

.hero-venue i { color: var(--crimson-bright); margin-right: 0.4rem; }

.hero-tagline {
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 0.4rem;
    animation: fadeUp 0.8s var(--ease) 0.6s both;
    text-shadow: 0 0 30px rgba(240,192,64,0.15);
}

.hero-subtag {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s var(--ease) 0.75s both;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease) 0.9s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.countdown-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem 1.8rem;
    text-align: center;
    min-width: 90px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.countdown-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.countdown-item:hover::before { opacity: 1; }

.countdown-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(240,192,64,0.2);
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
    display: block;
}

/* ===== MARQUEE ===== */
.marquee-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 80px;
}

.marquee-track {
    display: inline-block;
    animation: marqueeScroll 35s linear infinite;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.marquee-track span { color: var(--gold); margin: 0 1.5rem; }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--crimson-bright));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.stat-box:hover::after { transform: scaleX(1); }

.stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(240,192,64,0.15);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.2rem;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(240,192,64,0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.info-card:hover::before { opacity: 1; }

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-primary);
    margin-bottom: 1.3rem;
    box-shadow: 0 8px 25px var(--shadow-gold);
    transition: transform 0.4s var(--ease);
}

.info-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.info-card h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.7rem;
}

.info-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== PERFORMERS ===== */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.person-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    cursor: pointer;
}

.person-card:hover {
    transform: translateY(-12px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.person-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.person-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.person-card:hover .person-img-wrap img {
    transform: scale(1.08);
}

.person-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.person-tag {
    position: absolute;
    top: 1rem; right: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--bg-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--shadow-gold);
    z-index: 2;
}

.person-info {
    padding: 1.5rem;
    position: relative;
}

.person-info h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.person-info .country {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.person-info .role {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ===== TIMELINE ===== */
.timeline-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--crimson-bright), var(--gold));
    box-shadow: 0 0 15px rgba(240,192,64,0.2);
}

.timeline-entry {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    position: relative;
    margin-bottom: 3rem;
}

.timeline-entry:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    transform: translateX(-50%);
    width: 16px; height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 15px rgba(240,192,64,0.4);
    z-index: 2;
}

.timeline-entry.current .timeline-dot {
    background: var(--crimson-bright);
    box-shadow: 0 0 20px rgba(231,76,60,0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(231,76,60,0.4); transform: translateX(-50%) scale(1); }
    50% { box-shadow: 0 0 30px rgba(231,76,60,0.7); transform: translateX(-50%) scale(1.3); }
}

.timeline-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    max-width: 380px;
    transition: all 0.5s var(--ease);
    backdrop-filter: blur(10px);
}

.timeline-box:hover {
    transform: scale(1.03);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.timeline-entry.current .timeline-box {
    border-color: var(--crimson);
    background: rgba(192,57,43,0.05);
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold);
    background: var(--bg-glass);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border);
}

.timeline-box h4 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.timeline-box .venue {
    color: var(--text-dim);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.timeline-box .venue i { color: var(--crimson-bright); }

.timeline-box img {
    width: 100%;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid var(--border);
}

/* ===== PACKAGES ===== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.package-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.package-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 0; right: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--bg-primary);
    padding: 0.35rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-bottom-left-radius: 14px;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.package-card h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold);
    margin: 0.8rem 0;
    text-shadow: 0 0 20px rgba(240,192,64,0.15);
}

.package-price span {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 400;
}

.package-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.package-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    position: relative;
}

.package-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-hover);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    z-index: 2;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,16,32,0.9) 0%, transparent 60%);
    opacity: 0.7;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 0.9;
}

.gallery-caption {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0.8;
    transition: all 0.4s var(--ease);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    color: var(--gold);
    font-size: 1.1rem;
}

.gallery-caption p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s var(--ease);
    backdrop-filter: blur(10px);
}

.testi-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testi-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testi-text {
    color: var(--text-dim);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testi-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin: 0 auto 0.8rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(240,192,64,0.15);
}

.testi-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.testi-name {
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
}

.testi-role {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== INFO BOX ===== */
.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--crimson-bright), var(--gold), transparent);
}

.info-box h2 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
}

.info-box a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-box a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 10px rgba(240,192,64,0.2);
}

/* ===== MAP ===== */
.map-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(40%) contrast(1.05);
    transition: filter 0.5s;
}

.map-wrap:hover iframe {
    filter: grayscale(20%) contrast(1.1);
}

.map-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(12, 16, 32, 0.95);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    max-width: 320px;
    backdrop-filter: blur(15px);
}

.map-info h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.map-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.map-info-row i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 0.2rem;
    min-width: 18px;
}

.map-info-row p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.5;
}

.map-info-row strong {
    color: var(--text);
}

/* ===== SPONSORS ===== */
.sponsor-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.sponsor-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem 2.5rem;
    transition: all 0.5s var(--ease);
    filter: grayscale(60%);
    opacity: 0.7;
}

.sponsor-item:hover {
    transform: translateY(-6px);
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sponsor-item img {
    max-height: 50px;
    width: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(240,192,64,0.02), transparent);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section h2 span {
    color: var(--gold);
}

.cta-section p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cta-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
    background: rgba(8, 10, 20, 0.98);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.4s var(--ease);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240,192,64,0.05);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom .heart { color: var(--crimson-bright); }
.footer-bottom .gold-text { color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s var(--ease);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s var(--ease);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s var(--ease);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== DIVIDER ===== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 2rem 0;
}

/* ===== COUNTRY FLAGS ===== */
.flags-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    max-width: 700px;
    margin: 2rem auto;
}

.flag-item {
    width: 45px; height: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s var(--ease);
    cursor: default;
}

.flag-item:hover {
    transform: translateY(-4px) scale(1.15);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== ABOUT SECTION LAYOUT ===== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: all 0.5s var(--ease);
    border: 1px solid var(--border);
}

.about-img-wrap:hover img {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold);
    border-radius: 18px;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.5s var(--ease);
}

.about-img-wrap:hover::before {
    transform: translate(10px, 10px);
    opacity: 0.35;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.about-content p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-content strong {
    color: var(--text);
}

.about-content .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    color: var(--text-dim);
    font-size: 0.95rem;
    position: relative;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .package-grid { grid-template-columns: 1fr; }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-10px); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 350px;
        height: 100vh;
        background: rgba(12, 16, 32, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.5s var(--ease);
        border-left: 1px solid var(--border);
        backdrop-filter: blur(20px);
        z-index: 999;
    }
    .main-nav.active { right: 0; }
    .main-nav a { font-size: 1.1rem; }
    .mobile-toggle { display: flex; }

    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .timeline-wrap::before { left: 20px; }
    .timeline-entry,
    .timeline-entry:nth-child(even) {
        justify-content: flex-start;
        padding-left: 55px;
        padding-right: 0;
    }
    .timeline-dot,
    .timeline-entry:nth-child(even) .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col a { justify-content: center; }
    .footer-social { justify-content: center; }
    .map-info {
        position: relative;
        bottom: auto; left: auto;
        max-width: 100%;
        margin-top: 1rem;
    }
    .map-wrap iframe { height: 300px; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .section { padding: 3rem 1rem; }
    .header-inner { padding: 0.7rem 1rem; }
    .hero-title .line-sub { letter-spacing: 4px; }
    .countdown-item { min-width: 70px; padding: 1rem; }
    .countdown-num { font-size: 1.8rem; }
    .stats-row { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .people-grid { grid-template-columns: 1fr; }
    .btn { padding: 0.85rem 1.8rem; font-size: 0.85rem; }
    .info-card { padding: 1.5rem; }
    .package-card { padding: 2rem 1.5rem; }
    .testi-card { padding: 1.5rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

::selection {
    background: rgba(240, 192, 64, 0.25);
    color: var(--text);
}