/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
    --primary: #FF00FF;
    --secondary: #00FFFF;
    --accent: #FFD700;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --shadow-glow: 0 0 40px rgba(255, 0, 255, 0.4);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1; }
    50% { border-image: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary)) 1; }
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--primary)); }
    50% { filter: drop-shadow(0 0 20px var(--secondary)); }
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--light);
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.lang-btn.active {
    color: var(--dark);
}

.lang-indicator {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: calc(50% - 0.5rem);
    height: calc(100% - 1rem);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.5);
}

.lang-btn:last-of-type.active ~ .lang-indicator {
    transform: translateX(100%);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero-title .word {
    display: inline-block;
    background: linear-gradient(135deg, #FF00FF, #00FFFF, #FFD700, #FF00FF);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite, floatTitle 3s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(255, 0, 255, 0.6);
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
}

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

@keyframes floatTitle {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-cta {
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.6);
}

.cta-button.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(255, 0, 255, 0.8); }
}

.cta-button.large {
    padding: 2rem 5rem;
    font-size: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--light);
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translate(-50%, 0); opacity: 0; }
    50% { transform: translate(-50%, 20px); opacity: 1; }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(60px);
    animation: decorationFloat 15s ease-in-out infinite;
}

.section-decoration.reverse {
    left: auto;
    right: 0;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation-delay: -7.5s;
}

@keyframes decorationFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.2); }
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title.glitch {
    animation: glitchText 5s ease-in-out infinite;
}

@keyframes glitchText {
    0%, 90%, 100% { text-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
    91% { text-shadow: 5px 0 20px rgba(255, 0, 255, 0.8), -5px 0 20px rgba(0, 255, 255, 0.8); }
    92% { text-shadow: -5px 0 20px rgba(255, 0, 255, 0.8), 5px 0 20px rgba(0, 255, 255, 0.8); }
    93% { text-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
}

/* ============================================
   CONTENT CARDS
   ============================================ */

.content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.content-card.floating {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 30px 80px rgba(255, 0, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.content-card:hover .card-glow {
    opacity: 1;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    background: linear-gradient(135deg, var(--light), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ============================================
   BUTTONS & LINKS
   ============================================ */

.link-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--light);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-button.wave-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 0, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.link-button:hover::before {
    width: 300px;
    height: 300px;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
    border-color: var(--secondary);
}

/* ============================================
   AGENDA / DROPDOWN
   ============================================ */

.agenda-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agenda-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.agenda-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.2);
}

.agenda-header {
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: none;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.agenda-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.agenda-item.active .agenda-header::before,
.agenda-header:hover::before {
    transform: scaleY(1);
}

.day-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.day-title {
    font-size: 1.5rem;
    font-weight: 700;
    flex: 1;
    text-align: left;
}

.agenda-icon {
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.agenda-item.active .agenda-icon {
    transform: rotate(45deg);
}

.agenda-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.agenda-item.active .agenda-content {
    max-height: 1000px;
}

.agenda-inner {
    padding: 0 2rem 2rem 2rem;
}

.agenda-inner ul {
    list-style: none;
    padding-left: 1rem;
}

.agenda-inner li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    border-left: 2px solid rgba(255, 0, 255, 0.2);
}

.agenda-inner li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

/* ============================================
   DATES GRID
   ============================================ */

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

.date-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.date-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.4);
}

.date-month {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date-days {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-year {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.date-book-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: auto;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.date-book-btn:hover::before {
    left: 100%;
}

.date-book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.5);
}

/* ============================================
   PRICING
   ============================================ */

.pricing-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.price-amount {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0;
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.5)); }
}

.price-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.price-info {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ============================================
   REGISTRATION
   ============================================ */

.registration-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
}

.registration-info {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.price-highlight {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(67, 233, 123, 0.2);
    border: 2px solid rgba(67, 233, 123, 0.5);
    color: #43e97b;
    display: block;
}

.form-message.error {
    background: rgba(245, 87, 108, 0.2);
    border: 2px solid rgba(245, 87, 108, 0.5);
    color: #f5576c;
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.footer-links a:hover {
    color: var(--primary);
    background: rgba(255, 0, 255, 0.1);
}

.footer-powered {
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-powered a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.footer-powered a:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

/* ============================================
   DITHERING EFFECT (Noise Texture)
   ============================================ */

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    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='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: noiseMove 0.5s steps(2) infinite;
}

@keyframes noiseMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2%, 2%); }
    50% { transform: translate(2%, -2%); }
    75% { transform: translate(-2%, -2%); }
    100% { transform: translate(2%, 2%); }
}

/* ============================================
   URGENCY BADGE
   ============================================ */

.urgency-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: var(--light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 75, 87, 0.5);
    animation: urgencyPulse 2s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

@keyframes urgencyPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(255, 75, 87, 0.5);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 75, 87, 0.8);
    }
}

/* Early Bird Badge */
.early-bird-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #FFA500);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    animation: earlyBirdPulse 2s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

@keyframes earlyBirdPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.9);
    }
}

/* Corner Price Badge */
.price-badge-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent), #FFA500);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    z-index: 10;
    animation: earlyBirdPulse 2s ease-in-out infinite;
}

.price-old {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.date-book-btn.early-bird {
    background: linear-gradient(135deg, var(--accent), #FFA500);
    animation: earlyBirdGlow 2s ease-in-out infinite;
}

@keyframes earlyBirdGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7); }
}

/* ============================================
   APPROVED STATES SECTION
   ============================================ */

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.state-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.state-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.state-badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
}

.state-badge:hover::before {
    opacity: 1;
}

.state-icon {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px var(--primary));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px var(--primary));
    }
}

.state-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.approval-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(67, 233, 123, 0.1);
    border-left: 4px solid #43e97b;
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: none;
    color: var(--light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before,
.faq-question:hover::before {
    transform: scaleY(1);
}

.faq-q-text {
    font-size: 1.3rem;
    font-weight: 700;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 40px;
    text-align: center;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 0, 255, 0.3);
}

/* ============================================
   DATE SELECTION MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(20, 20, 30, 0.95);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 30px;
    padding: 3rem;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(255, 0, 255, 0.4);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: var(--primary);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.modal-date-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-date-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
}

.modal-date-card.early-bird {
    border-color: rgba(255, 215, 0, 0.3);
}

.modal-date-card.early-bird:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.modal-date-header {
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-date-month {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: var(--light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 75, 87, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 75, 87, 0.4);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(255, 75, 87, 0.7);
    }
}

.modal-early-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #FFA500);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.modal-date-info {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--light);
}

.modal-date-price {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.modal-original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-weight: 600;
}

.modal-early-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-date-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-date-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.modal-date-btn:hover::before {
    left: 100%;
}

.modal-date-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.5);
}

.modal-date-card.early-bird .modal-date-btn {
    background: linear-gradient(135deg, var(--accent), #FFA500);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.modal-date-card.early-bird .modal-date-btn:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .agenda-header {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .day-number {
        font-size: 2rem;
        min-width: 60px;
    }
    
    .day-title {
        font-size: 1.2rem;
    }
    
    .agenda-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Modal Responsive */
    .modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .modal-dates {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 1rem;
        right: 1rem;
    }
}
