/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
    /* Colors */
    --clr-bg-main: #060B14;
    --clr-bg-alt: #0D1627;
    --clr-bg-light: #152036;
    
    --clr-text-main: #FFFFFF;
    --clr-text-muted: #94A3B8;
    
    --clr-gold: #D4AF37;
    --clr-gold-light: #F3E5AB;
    --clr-gold-dark: #AA8C2C;
    
    --clr-silver: #E2E8F0;
    
    /* Gradients */
    --grad-gold: linear-gradient(135deg, #B58D3D 0%, #D4AF37 50%, #FDF0B0 100%);
    --grad-dark: linear-gradient(180deg, rgba(6,11,20,0) 0%, #060B14 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* UI Elements */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   TYPOGRAPHY & UTILITIES
========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-100 {
    width: 100%;
}

.mt-5 {
    margin-top: 3rem;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: var(--grad-gold);
    color: #000;
    font-weight: 600;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--clr-text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-gold {
    background: transparent;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-text-main);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =========================================
   PRELOADER
========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.gold-ring, .silver-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.gold-ring {
    border-top-color: var(--clr-gold);
    animation: spin 1.5s linear infinite;
}

.silver-ring {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-bottom-color: var(--clr-silver);
    animation: spin-reverse 2s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

/* =========================================
   NAVIGATION
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(6, 11, 20, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-icon {
    color: var(--clr-gold);
}

.logo-text strong {
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background: var(--clr-text-main);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: var(--clr-bg-main);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-text-muted);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--clr-gold);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6,11,20,0.9) 0%, rgba(6,11,20,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.event-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--clr-silver);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: var(--clr-gold);
}

.meta-separator {
    width: 4px;
    height: 4px;
    background: var(--clr-gold);
    border-radius: 50%;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--clr-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* =========================================
   SECTION HEADINGS
========================================= */
.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.title-line {
    width: 60px;
    height: 2px;
    background: var(--clr-gold);
    margin-bottom: 3rem;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CiAgPHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0wIDIwaDQwTTIwIDB2NDAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPgo8L3N2Zz4=') var(--clr-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    font-size: 2.5rem;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-edge {
    border-radius: var(--border-radius);
}

.shadow-gold {
    box-shadow: -20px 20px 0 rgba(212, 175, 55, 0.1);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.premium-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 200px;
    text-align: center;
    background: rgba(6, 11, 20, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
}

.premium-badge i {
    font-size: 2rem;
    color: var(--clr-gold);
}

/* =========================================
   SPEAKERS SECTION
========================================= */
.speakers {
    background-color: var(--clr-bg-main);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: var(--clr-bg-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.speaker-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.speaker-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.speaker-card:hover .speaker-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.speaker-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.speaker-card:hover .speaker-socials {
    opacity: 1;
    transform: translateY(0);
}

.speaker-socials a {
    color: var(--clr-text-main);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.speaker-socials a:hover {
    background: var(--clr-gold);
    color: #000;
}

.speaker-info {
    padding: 2rem;
}

.speaker-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.speaker-title {
    color: var(--clr-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.speaker-topic {
    color: var(--clr-text-muted);
    font-style: italic;
}

/* =========================================
   AGENDA SECTION
========================================= */
.agenda {
    background: var(--clr-bg-alt);
}

.agenda-container {
    max-width: 800px;
    margin: 0 auto;
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.agenda-tab {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.agenda-tab.active, .agenda-tab:hover {
    color: var(--clr-gold);
}

.agenda-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--clr-gold);
}

.agenda-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.agenda-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3.3rem; /* Adjusted for circle */
    width: 12px;
    height: 12px;
    background: var(--clr-bg-main);
    border: 2px solid var(--clr-gold);
    border-radius: 50%;
}

.timeline-item.highlight::before {
    background: var(--clr-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-time {
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-details {
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.timeline-item.highlight .timeline-details {
    border-left: 3px solid var(--clr-gold);
}

.timeline-details h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-details p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.badge.silver {
    background: rgba(226, 232, 240, 0.1);
    color: var(--clr-silver);
}

/* =========================================
   TICKETS SECTION
========================================= */
.tickets {
    background: var(--clr-bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--clr-bg-alt);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.premium {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(13,22,39,1) 100%);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--clr-gold);
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.pricing-subtitle {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.pricing-features ul li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--clr-silver);
}

.pricing-features ul li i {
    width: 20px;
}

.pricing-features ul li.disabled {
    color: #475569;
}

.pricing-footer {
    margin-top: 2rem;
}

/* =========================================
   SPONSORS SECTION
========================================= */
.sponsors {
    background: var(--clr-bg-light);
    padding: 60px 0;
}

.sponsor-heading {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.sponsor-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.sponsor-marquee::before, .sponsor-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.sponsor-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--clr-bg-light), transparent);
}

.sponsor-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--clr-bg-light), transparent);
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsor-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
    margin: 0 3rem;
    transition: var(--transition);
}

.sponsor-logo:hover {
    color: var(--clr-silver);
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials {
    background: var(--clr-bg-main);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    padding: 3rem;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 2rem;
    right: 3rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-silver);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--clr-gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* =========================================
   FAQ & CONTACT
========================================= */
.faq-contact {
    background: var(--clr-bg-alt);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Accordion */
.accordion {
    margin-top: 2rem;
}

.accordion-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
}

.accordion-header .icon {
    color: var(--clr-text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
    color: var(--clr-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding-top: 1rem;
    color: var(--clr-text-muted);
}

/* Contact Form */
.glass-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.glass-form-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.glass-form-card p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-main);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-gold);
    background: rgba(0,0,0,0.4);
}

textarea.form-control {
    resize: vertical;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background: #03060b;
    padding: 80px 0 30px;
    border-top: 1px solid var(--clr-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--clr-text-main);
}

.social-links a:hover {
    background: var(--clr-gold);
    color: #000;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--clr-silver);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--clr-text-muted);
}

.footer-links ul li a:hover {
    color: var(--clr-gold);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.contact-info li i {
    color: var(--clr-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    .pricing-card.premium {
        transform: scale(1);
    }
    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions .btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 3rem;
    }
    .event-meta {
        flex-direction: column;
        gap: 1rem;
    }
    .meta-separator {
        display: none;
    }
    .hero-cta {
        flex-direction: column;
    }
    .about-grid, .faq-contact-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand .logo, .social-links, .contact-info li {
        justify-content: center;
    }
}
