/* ================================================
   GLOWGOLF PHANTRIUM - Retro Modern Neon Design
   ================================================ */

/* CSS Variables */
:root {
    /* Retro 80s/90s Neon Colors */
    --neon-purple: #bf00ff;
    --neon-pink: #ff006e;
    --neon-magenta: #ff00ff;
    --neon-cyan: #00fff7;
    --neon-blue: #00a8ff;
    --neon-yellow: #fff700;
    --neon-orange: #ff6b00;
    --neon-green: #39ff14;

    /* Primary Palette - Purple Theme */
    --primary: #a855f7;
    --primary-dark: #7c3aed;
    --primary-light: #c084fc;
    --secondary: #ff006e;
    --accent: #00fff7;

    /* Backgrounds - Dark Retro */
    --bg-dark: #0d0015;
    --bg-darker: #08000d;
    --bg-card: rgba(20, 5, 35, 0.9);
    --bg-card-hover: rgba(35, 10, 55, 0.95);
    --bg-gradient: linear-gradient(135deg, #0d0015 0%, #1a0a2e 50%, #0d0015 100%);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Borders */
    --border-color: rgba(168, 85, 247, 0.2);
    --border-glow: rgba(168, 85, 247, 0.5);

    /* Shadows - Intense Neon Glow */
    --shadow-neon: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 40px var(--primary);
    --shadow-neon-strong: 0 0 20px var(--primary), 0 0 40px var(--primary), 0 0 80px var(--primary);
    --shadow-pink: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    --shadow-cyan: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    --shadow-card: 0 5px 30px rgba(168, 85, 247, 0.2);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Retro 80s/90s Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(0, 255, 247, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0d0015 0%, #1a0a2e 50%, #0d0015 100%);
}

/* Retro Grid Floor Effect */
.bg-animation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background:
        linear-gradient(transparent 0%, rgba(168, 85, 247, 0.03) 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(168, 85, 247, 0.1) 100px,
            rgba(168, 85, 247, 0.1) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(168, 85, 247, 0.05) 50px,
            rgba(168, 85, 247, 0.05) 51px
        );
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Scanlines Overlay */
.bg-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, var(--neon-purple), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--neon-pink), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--neon-cyan), transparent),
        radial-gradient(2px 2px at 160px 120px, var(--neon-magenta), transparent),
        radial-gradient(1px 1px at 230px 80px, #ffffff, transparent),
        radial-gradient(2px 2px at 300px 150px, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 180px 200px, var(--neon-pink), transparent);
    background-repeat: repeat;
    background-size: 350px 350px;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.glow-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--neon-pink);
    top: 40%;
    right: -100px;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    bottom: 10%;
    left: 20%;
    animation-delay: -8s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--neon-magenta);
    top: 60%;
    left: 60%;
    animation-delay: -12s;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    background: rgba(0, 255, 247, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--neon-cyan);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 247, 0.3), inset 0 0 15px rgba(0, 255, 247, 0.1);
    animation: tagGlow 2s ease-in-out infinite alternate;
}

@keyframes tagGlow {
    0% { box-shadow: 0 0 15px rgba(0, 255, 247, 0.3), inset 0 0 15px rgba(0, 255, 247, 0.1); }
    100% { box-shadow: 0 0 25px rgba(0, 255, 247, 0.5), inset 0 0 20px rgba(0, 255, 247, 0.2); }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.neon-text {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 0, 21, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.logo-text {
    color: var(--text-primary);
}

.logo-text .accent {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple), 0 0 40px var(--neon-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

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

.nav-cta {
    padding: 10px 24px !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 0, 21, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 999;
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-links a {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: #ffffff;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
    border: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7), 0 0 60px rgba(255, 0, 110, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
}

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

.btn:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 255, 247, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), inset 0 0 20px rgba(0, 255, 247, 0.1);
    color: #ffffff;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 1.1em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-glow);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.15);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.2), transparent);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.3));
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.golf-scene {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: pulse-ring 3s ease-in-out infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon), inset var(--shadow-neon);
    animation-delay: 0s;
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-pink), inset var(--shadow-pink);
    animation-delay: -1s;
}

.ring-3 {
    width: 140px;
    height: 140px;
    border-color: var(--neon-green);
    box-shadow: var(--shadow-green), inset var(--shadow-green);
    animation-delay: -2s;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.golf-ball {
    position: relative;
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.8));
}

.ball-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

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

.golf-hole {
    position: absolute;
    bottom: 60px;
    right: 60px;
}

.hole-flag {
    font-size: 3rem;
    animation: wave-flag 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
}

@keyframes wave-flag {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Experience Section */
.experience {
    padding: var(--section-padding);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    opacity: 0.7;
    transition: var(--transition-normal);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
    filter: brightness(1.5);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(255, 0, 110, 0.1));
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

/* Text-based Feature Icons */
.feature-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(255, 0, 110, 0.2));
    border: 2px solid var(--neon-purple);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), inset 0 0 15px rgba(0, 255, 247, 0.1);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), inset 0 0 15px rgba(0, 255, 247, 0.1); }
    50% { box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), inset 0 0 20px rgba(0, 255, 247, 0.2); }
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, rgba(255, 0, 110, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--secondary), var(--neon-purple));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(233, 30, 158, 0.3);
}

/* Themes Section */
.themes {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.05), transparent);
}

.themes-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.theme-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
    position: relative;
}

.theme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.theme-card:hover::after {
    left: 100%;
}

.theme-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.4), 0 0 80px rgba(168, 85, 247, 0.2);
    border-color: var(--neon-pink);
}

.theme-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(255, 0, 110, 0.15));
}

/* Theme text icons */
.theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(255, 0, 110, 0.3));
    border: 2px solid var(--neon-pink);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.4), inset 0 0 15px rgba(0, 255, 247, 0.1);
}

.theme-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 0 30px var(--neon-purple));
}

.theme-content {
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(13, 0, 21, 0.5));
}

.theme-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.theme-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Locations Section */
.locations {
    padding: var(--section-padding);
}

.location-search {
    max-width: 500px;
    margin: 0 auto 48px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(20, 5, 35, 0.9);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 4px 4px 4px 20px;
    transition: var(--transition-normal);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.search-box:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.4), 0 0 60px rgba(168, 85, 247, 0.2);
}

.search-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    color: var(--neon-cyan);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    opacity: 0.5;
}

.location-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--neon-cyan);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.2);
}

.location-card:hover::before {
    opacity: 1;
    animation: borderGlow 1s ease-in-out infinite;
}

.location-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.location-card .location-icon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.location-card .location-features {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.location-card .feature-tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(255, 0, 110, 0.1));
    color: var(--neon-cyan);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 247, 0.3);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.locations-map {
    margin-top: 32px;
}

.map-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(0deg, rgba(168, 85, 247, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.map-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 20px var(--neon-pink));
}

.map-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.map-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Arrangements Section */
.arrangements {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(255, 0, 110, 0.03), transparent);
}

.arrangements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.arrangement-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.arrangement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.4), 0 0 80px rgba(168, 85, 247, 0.2);
    border-color: var(--neon-pink);
}

.arrangement-card.featured {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 247, 0.4), 0 0 80px rgba(168, 85, 247, 0.2);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 110, 0.8), 0 0 50px rgba(168, 85, 247, 0.4); }
}

.arrangement-header {
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(255, 0, 110, 0.15));
}

.arrangement-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--neon-purple));
}

.arrangement-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--accent-color, var(--neon-purple));
    filter: blur(50px);
    opacity: 0.5;
    animation: glowPulse 3s ease-in-out infinite;
}

.arrangement-body {
    padding: 24px;
}

.arrangement-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.arrangement-body > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.arrangement-features {
    list-style: none;
    margin-bottom: 20px;
}

.arrangement-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.arrangement-features li:last-child {
    border-bottom: none;
}

.arrangement-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
}

.pricing-table {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.pricing-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(255, 0, 110, 0.2));
    padding: 16px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    align-items: center;
    transition: var(--transition-fast);
}

.pricing-row:hover {
    background: rgba(168, 85, 247, 0.1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.highlight {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(0, 255, 247, 0.08));
}

.pricing-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticket-icon {
    font-size: 1.5rem;
}

.ticket-info {
    display: flex;
    flex-direction: column;
}

.ticket-name {
    font-weight: 600;
}

.ticket-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.discount {
    display: block;
    font-size: 0.75rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-top: 4px;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    margin: 24px auto 0;
    padding: 16px 24px;
    background: rgba(255, 247, 0, 0.1);
    border: 1px solid rgba(255, 247, 0, 0.3);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(255, 247, 0, 0.1);
}

.note-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-yellow));
}

/* Booking Section */
.booking {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.05), transparent);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info .section-title {
    text-align: left;
}

.booking-info .section-tag {
    margin-bottom: 16px;
}

.booking-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.booking-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
    transition: var(--transition-fast);
}

.benefit:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.3);
}

.benefit-icon {
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-green);
}

.booking-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(13, 0, 21, 0.8);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.3), inset 0 0 10px rgba(0, 255, 247, 0.05);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-summary {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(255, 0, 110, 0.08));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 8px;
    box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
}

.summary-row.total {
    border-top: 1px solid var(--border-glow);
    margin-top: 8px;
    padding-top: 16px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.summary-row.total span:last-child {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    text-shadow: 0 0 15px var(--neon-cyan);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.faq-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.2);
}

.faq-item.active {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(255, 0, 110, 0.03), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-tag {
    display: inline-block;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.contact-method:hover {
    border-color: var(--neon-cyan);
    background: var(--bg-card-hover);
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.3);
}

.method-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.method-value {
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    border-color: var(--neon-pink);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(255, 0, 110, 0.08));
    border-top: 1px solid var(--neon-purple);
    border-bottom: 1px solid var(--neon-purple);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(0deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.newsletter-info p {
    color: var(--text-secondary);
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 12px;
}

.newsletter-input-wrapper input {
    flex: 1;
    background: rgba(13, 0, 21, 0.8);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.newsletter-input-wrapper input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.4);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    border-top: 1px solid var(--border-glow);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan), var(--neon-purple));
    background-size: 200% 100%;
    animation: footerGlow 4s linear infinite;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-glow);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.footer-badges .badge {
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.1);
}

.footer-credit {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glow);
}

.footer-credit p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

.footer-credit a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.toast.error {
    border-color: #ff4444;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.4);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 1;
    transition: var(--transition-slow);
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-ball {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    background-size: 200% 200%;
    animation: loader-bounce 1s ease-in-out infinite, gradientShift 2s ease infinite;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5), 0 0 80px rgba(255, 0, 110, 0.3);
}

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

.loader span {
    font-family: var(--font-display);
    color: var(--neon-cyan);
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 15px var(--neon-cyan);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .themes-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .arrangements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .booking-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 16px;
    }

    /* Better touch targets */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    .mobile-nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .themes-carousel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .theme-card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .theme-image {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }

    .theme-icon {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .theme-content {
        padding: 16px;
    }

    .theme-content h3 {
        font-size: 1rem;
    }

    .theme-content p {
        font-size: 0.85rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .location-card {
        padding: 16px;
    }

    .location-card h4 {
        font-size: 0.95rem;
    }

    .arrangements-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .arrangement-card {
        display: flex;
        flex-direction: column;
    }

    .arrangement-header {
        padding: 24px;
    }

    .arrangement-body {
        padding: 20px;
    }

    .booking-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-info,
    .contact-info {
        text-align: center;
    }

    .booking-info .section-title,
    .contact-info .section-title {
        text-align: center;
    }

    .booking-benefits {
        grid-template-columns: 1fr;
    }

    .benefit {
        justify-content: center;
    }

    .booking-form-wrapper,
    .contact-form-wrapper {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .pricing-table {
        border-radius: var(--radius-md);
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.8rem;
        padding: 12px;
    }

    .pricing-col {
        gap: 8px;
    }

    .ticket-icon {
        display: none;
    }

    .price {
        font-size: 1rem;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }

    .newsletter {
        padding: 40px 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .newsletter-info h3 {
        font-size: 1.25rem;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-input-wrapper input {
        padding: 16px;
        font-size: 16px;
    }

    .footer {
        padding: 60px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-links ul {
        gap: 16px;
    }

    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-methods {
        gap: 12px;
    }

    .contact-method {
        padding: 14px 16px;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    /* Toast position for mobile */
    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 12px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-around;
    }

    .stat {
        flex: 0 0 45%;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        display: none;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 6px 14px;
        letter-spacing: 2px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .theme-card {
        flex-direction: column;
    }

    .theme-image {
        width: 100%;
        height: 120px;
    }

    .location-card .location-features {
        gap: 6px;
    }

    .location-card .feature-tag {
        font-size: 0.65rem;
        padding: 3px 6px;
    }

    .arrangement-icon {
        font-size: 2.5rem;
    }

    .arrangement-body h3 {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .pricing-header span:first-child,
    .pricing-col:first-child {
        grid-column: 1 / -1;
    }

    .ticket-info {
        flex-direction: column;
        gap: 2px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        padding: 16px;
    }

    .summary-row {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .method-icon {
        font-size: 1.25rem;
    }

    .newsletter-info h3 {
        font-size: 1.1rem;
    }

    .newsletter-info p {
        font-size: 0.9rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-badges .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--neon-purple);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-cyan));
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Selection */
::selection {
    background: var(--neon-purple);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
