/* ============================================
   Ibercup Soccer Convention 2026 - Custom Styles
   Premium Dark Theme with Golden Accents
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --dark-900: #0A0A0B;
    --dark-800: #111113;
    --dark-700: #18181B;
    --dark-600: #1F1F23;
    --dark-500: #27272A;
    --gold-400: #E5B968;
    --gold-500: #D4A853;
    --gold-600: #C4983F;
    --gradient-gold: linear-gradient(135deg, #D4A853 0%, #E5B968 50%, #C4983F 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0B 0%, #111113 100%);
}

/* ---- Base Styles ---- */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-900);
    position: relative;
}

/* Selection styling */
::selection {
    background-color: rgba(212, 168, 83, 0.3);
    color: #ffffff;
}

/* ---- Scrollbar Styling ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-800);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* ---- Background Effects ---- */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
}

/* Particle effect background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    animation: particle-float 15s ease-in-out infinite;
}

.particles::before {
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    left: 80%;
    animation-delay: 7s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* ---- Enhanced Floating Orbs ---- */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    animation: orb-float 20s ease-in-out infinite;
}

.floating-orb-gold {
    background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
}

.floating-orb-purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
}

.floating-orb-cyan {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) scale(1.05);
    }
}

/* ---- Neon Glow Lines ---- */
.neon-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 168, 83, 0.6) 20%, 
        rgba(212, 168, 83, 0.8) 50%, 
        rgba(212, 168, 83, 0.6) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 10px rgba(212, 168, 83, 0.5),
        0 0 20px rgba(212, 168, 83, 0.3),
        0 0 40px rgba(212, 168, 83, 0.2);
    animation: neon-pulse 3s ease-in-out infinite;
}

.neon-line-vertical {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(212, 168, 83, 0.6) 20%, 
        rgba(212, 168, 83, 0.8) 50%, 
        rgba(212, 168, 83, 0.6) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 10px rgba(212, 168, 83, 0.5),
        0 0 20px rgba(212, 168, 83, 0.3);
}

@keyframes neon-pulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 
            0 0 10px rgba(212, 168, 83, 0.5),
            0 0 20px rgba(212, 168, 83, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 20px rgba(212, 168, 83, 0.8),
            0 0 40px rgba(212, 168, 83, 0.5),
            0 0 60px rgba(212, 168, 83, 0.3);
    }
}

/* ---- Animated Grid Pattern ---- */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

/* ---- Geometric Shapes ---- */
.geo-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.geo-hexagon {
    width: 100px;
    height: 57px;
    background: transparent;
    border: 1px solid var(--gold-500);
    position: relative;
}

.geo-hexagon::before,
.geo-hexagon::after {
    content: '';
    position: absolute;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.geo-hexagon::before {
    bottom: 100%;
    border-bottom: 28px solid var(--gold-500);
}

.geo-hexagon::after {
    top: 100%;
    border-top: 28px solid var(--gold-500);
}

/* ---- Sparkle Effect ---- */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-500);
    border-radius: 50%;
    animation: sparkle 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 168, 83, 0.8);
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---- Animated Gradient Border ---- */
.gradient-border {
    position: relative;
    background: linear-gradient(var(--dark-800), var(--dark-800)) padding-box,
                linear-gradient(135deg, var(--gold-500), var(--gold-600), rgba(139, 92, 246, 0.5), var(--gold-500)) border-box;
    border: 2px solid transparent;
    background-size: 100% 100%, 300% 300%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 0%, 0% 50%;
    }
    50% {
        background-position: 0% 0%, 100% 50%;
    }
}

/* ---- Noise Texture Overlay ---- */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ---- Light Beam Effect ---- */
.light-beam {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(212, 168, 83, 0.4) 50%, 
        transparent 100%);
    transform-origin: top center;
    animation: beam-sweep 10s ease-in-out infinite;
}

@keyframes beam-sweep {
    0%, 100% {
        transform: rotate(-15deg) translateY(-50px);
        opacity: 0.3;
    }
    50% {
        transform: rotate(15deg) translateY(50px);
        opacity: 0.6;
    }
}

/* ---- Floating Particles Multiple ---- */
.particles-multi {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 168, 83, 0.4);
    border-radius: 50%;
    animation: float-up 15s linear infinite;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 15%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 25%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 35%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 45%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 55%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 65%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(8) { left: 75%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(9) { left: 85%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; animation-duration: 15s; }

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ---- Section Glow Effects ---- */
.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
}

.section-glow-gold {
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
}

.section-glow-purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

/* ---- Navbar Styles ---- */
.navbar-scrolled {
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(31, 31, 35, 0.5);
}

.navbar-hidden {
    transform: translateY(-100%);
}

/* ---- Hero Section ---- */
.hero-gradient {
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #D4A853 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-badge {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2) 0%, rgba(212, 168, 83, 0.05) 100%);
    border: 1px solid rgba(212, 168, 83, 0.3);
    backdrop-filter: blur(10px);
}

/* ---- Glass Morphism ---- */
.glass-card {
    background: rgba(17, 17, 19, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.glass-card:hover {
    background: rgba(17, 17, 19, 0.8);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(212, 168, 83, 0.1);
}

.glass-card-gold {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(17, 17, 19, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.glass-card-gold:hover {
    border-color: rgba(212, 168, 83, 0.4);
    box-shadow: 0 0 40px rgba(212, 168, 83, 0.15);
}

/* ---- Section Styles ---- */
.section-title {
    font-family: 'Clash Display', sans-serif;
    letter-spacing: -0.02em;
}

.section-subtitle {
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.gold-gradient-text {
    background: linear-gradient(135deg, #D4A853 0%, #E5B968 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Stats Counter ---- */
.counter-value {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #D4A853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    overflow: visible;
    white-space: nowrap;
    padding-right: 0.25rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .counter-value {
        font-size: 2rem;
    }
}

/* ---- Speaker Cards ---- */
.speaker-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.9) 100%);
    z-index: 1;
}

.speaker-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.speaker-card:hover::before {
    background: linear-gradient(180deg, transparent 20%, rgba(212, 168, 83, 0.3) 100%);
}

.speaker-card img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-card:hover img {
    transform: scale(1.1);
}

.speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

/* ---- Topic Icons ---- */
.topic-card {
    background: rgba(17, 17, 19, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.topic-card:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateY(-4px);
}

.topic-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(212, 168, 83, 0.2));
}

/* ---- Event Timeline ---- */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(212, 168, 83, 0.3);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--gold-500);
    border-radius: 50%;
    border: 3px solid var(--dark-900);
}

.timeline-item:hover::before {
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.5);
}

/* ---- Event Cards ---- */
.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(17, 17, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .event-card-content {
        padding: 1.25rem;
    }
}

/* ---- Package Cards ---- */
.package-card {
    background: rgba(17, 17, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2rem 2rem 0 0;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.package-premium {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(17, 17, 19, 0.8) 50%);
    border-color: rgba(212, 168, 83, 0.3);
    overflow: visible;
    margin-top: 1rem;
    border-top: 4px solid var(--gold-500);
}

.package-premium::before {
    display: none;
}

/* Pricing Table */
.pricing-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.pricing-table th,
.pricing-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table th {
    background: rgba(212, 168, 83, 0.1);
    font-weight: 600;
    color: var(--gold-500);
    font-size: 0.875rem;
}

.pricing-table tr:hover td {
    background: rgba(212, 168, 83, 0.05);
}

/* ---- Schedule Tabs ---- */
.schedule-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
    background: rgba(31, 31, 35, 0.8);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
    .schedule-tab {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        flex: 0 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(31, 31, 35, 0.9);
        line-height: 1.1;
        min-width: auto;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .schedule-tab {
        padding: 0.6875rem 1.375rem;
        font-size: 0.875rem;
    }
}

.schedule-tab:hover {
    background: rgba(212, 168, 83, 0.15);
    border-color: rgba(212, 168, 83, 0.3);
    color: rgba(255, 255, 255, 1);
}

.schedule-tab.active {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--dark-900);
    font-weight: 600;
}

/* Mobile font size fixes for schedule section */
@media (max-width: 640px) {
    #schedule .section-title {
        font-size: 1.875rem !important; /* text-3xl instead of text-4xl */
        line-height: 1.2 !important;
    }
    
    #schedule h3 {
        font-size: 1.25rem !important; /* text-xl instead of text-2xl */
        line-height: 1.3 !important;
    }
    
    #schedule h4 {
        font-size: 1rem !important; /* text-base instead of text-lg */
        line-height: 1.4 !important;
    }
    
    #schedule .text-lg {
        font-size: 0.9375rem !important; /* Slightly smaller */
    }
    
    #schedule .glass-card {
        padding: 1.5rem !important; /* Reduce padding on mobile */
    }
    
    #schedule .schedule-item {
        padding: 1rem !important; /* Reduce padding on mobile */
    }
}

/* iPhone and small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    #schedule .section-title {
        font-size: 1.5rem !important; /* Further reduced */
        line-height: 1.2 !important;
    }
    
    #schedule h3 {
        font-size: 1.125rem !important; /* text-lg */
        line-height: 1.3 !important;
    }
    
    #schedule h4 {
        font-size: 0.9375rem !important; /* text-sm */
        line-height: 1.4 !important;
    }
    
    #schedule .text-lg {
        font-size: 0.875rem !important;
    }
    
    #schedule .glass-card {
        padding: 1rem !important; /* Further reduce padding */
    }
    
    #schedule .schedule-item {
        padding: 0.875rem !important; /* Further reduce padding */
    }
    
    .schedule-tab {
        padding: 0.4375rem 0.75rem !important;
        font-size: 0.6875rem !important; /* Even smaller for iPhone */
    }
    
    #schedule .badge {
        padding: 0.3125rem 0.4375rem !important;
        font-size: 0.5625rem !important; /* Smaller badges */
    }
    
    /* Package toggle badges - make text smaller and wrap better */
    #schedule .badge-premium,
    #schedule .badge-gold {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.625rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    /* Package toggle container - stack vertically on very small screens */
    #schedule .flex.justify-center.gap-4 {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    #schedule .flex.justify-center.gap-4 .badge {
        width: 100% !important;
        max-width: 280px !important;
    }
}

.schedule-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.schedule-content.active {
    display: block;
}

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

.schedule-item {
    background: rgba(17, 17, 19, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(212, 168, 83, 0.05);
    border-color: rgba(212, 168, 83, 0.2);
}

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--dark-900);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ---- Dividers ---- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* ---- Checkmarks ---- */
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.check-list li::before {
    content: '✓';
    color: var(--gold-500);
    font-weight: bold;
    flex-shrink: 0;
}

.x-list li::before {
    content: '✕';
    color: #666;
}

/* ---- Contact Section ---- */
.contact-glow {
    position: relative;
}

.contact-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .counter-value {
        font-size: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .event-card-image {
        aspect-ratio: 1 / 1;
    }
}

/* ---- Animation Delays for Staggered Effects ---- */
[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos][data-aos-delay="500"] { transition-delay: 500ms; }
[data-aos][data-aos-delay="600"] { transition-delay: 600ms; }

/* ---- Loading Animation ---- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 168, 83, 0.1);
    border-top-color: var(--gold-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Image Hover Effects ---- */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* ---- Badge Styles ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

.badge-gold {
    background: rgba(212, 168, 83, 0.2);
    color: var(--gold-400);
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.badge-premium {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--dark-900);
}

/* Package Toggle Buttons */
.package-toggle-btn {
    border: 2px solid transparent;
    padding: 0.5rem 1rem;
}

.package-toggle-btn.active {
    opacity: 1 !important;
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
}

.package-toggle-btn:not(.active) {
    opacity: 0.6;
}

.package-toggle-btn:hover:not(.active) {
    opacity: 0.85;
}

#package-premium-btn.active {
    border-color: var(--gold-400);
}

#package-basic-btn.active {
    border-color: var(--gold-500);
    background: rgba(212, 168, 83, 0.3);
}

/* Mobile badge size fixes */
@media (max-width: 640px) {
    .badge {
        padding: 0.375rem 0.625rem;
        font-size: 0.6875rem;
        letter-spacing: 0.03em;
        line-height: 1.1;
    }
    
    #schedule .badge {
        padding: 0.375rem 0.5rem;
        font-size: 0.625rem;
    }
}

/* ---- Form Styles ---- */
.form-input {
    background: rgba(17, 17, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4A853' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    cursor: pointer;
}

select.form-input option {
    background: var(--dark-700);
    color: white;
    padding: 0.5rem;
}

/* ---- Registration Form Styles ---- */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-indicator {
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: var(--gradient-gold);
    color: var(--dark-900);
}

.step-indicator.completed {
    background: var(--gold-500);
    color: var(--dark-900);
}

/* Package Selection Cards */
.package-option {
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(17, 17, 19, 0.6);
}

.package-option:hover {
    border-color: rgba(212, 168, 83, 0.5);
    transform: translateY(-2px);
}

.package-option.selected {
    border-color: var(--gold-500) !important;
    background: rgba(212, 168, 83, 0.1);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
}

/* Hotel Selection Cards */
.hotel-option {
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(17, 17, 19, 0.6);
    border: 2px solid transparent;
    border-radius: 0.75rem;
    padding: 1rem;
    overflow: hidden;
    min-width: 0;
}

.hotel-option > div:first-child {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1.5rem;
}

.hotel-option .text-2xl {
    font-size: 1.25rem;
    line-height: 1;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 640px) {
    .hotel-option {
        padding: 0.75rem;
    }
    
    .hotel-option .text-2xl {
        font-size: 1rem;
        letter-spacing: -0.05em;
    }
}

.hotel-option:hover {
    border-color: rgba(212, 168, 83, 0.5);
}

.hotel-option.selected {
    border-color: var(--gold-500);
    background: rgba(212, 168, 83, 0.1);
}

/* Room Type Selection */
.room-option {
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(17, 17, 19, 0.6);
    border: 2px solid transparent;
    border-radius: 0.75rem;
    padding: 1rem;
}

.room-option:hover {
    border-color: rgba(212, 168, 83, 0.5);
}

.room-option.selected {
    border-color: var(--gold-500);
    background: rgba(212, 168, 83, 0.1);
}

/* Form Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--dark-900);
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold-500);
    font-weight: 600;
    border-radius: 9999px;
    border: 2px solid var(--gold-500);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(212, 168, 83, 0.1);
}

/* Mobile responsive button text sizing */
@media (max-width: 640px) {
    .btn-primary,
    .btn-secondary {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
        gap: 0.375rem;
    }
    
    .btn-primary i,
    .btn-secondary i {
        width: 1rem;
        height: 1rem;
    }
}

