/* ===== VARIABLES CSS ===== */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --violet: #9D4EDD;
    --red: #FF005C;
    --pink: #FF2E98;
    --cyan: #00F0FF;
    --grey: #CCCCCC;
    --dark-grey: #1a1a1a;
    --gradient-primary: linear-gradient(90deg, var(--violet), var(--pink));
    --gradient-secondary: linear-gradient(90deg, var(--cyan), var(--violet));
    --shadow-neon: 0 0 20px rgba(157, 78, 221, 0.5);
    --shadow-pink: 0 0 20px rgba(255, 46, 152, 0.5);
    --shadow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 10px var(--violet);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--grey);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    box-shadow: var(--shadow-pink);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--violet);
    box-shadow: var(--shadow-neon);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--violet);
    text-shadow: 0 0 10px var(--violet);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%239D4EDD" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px var(--violet);
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--grey);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* ===== COUNTDOWN ===== */
.countdown {
    text-align: center;
    margin-top: 3rem;
}

.countdown h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--cyan);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    text-shadow: 0 0 20px var(--cyan);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HEADLINERS SECTION ===== */
.headliners {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-grey) 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
    border-color: var(--violet);
}

.artist-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-info {
    padding: 1.5rem;
}

.artist-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.artist-genre {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-stage {
    color: var(--grey);
    font-size: 0.9rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FESTIVAL INFO ===== */
.festival-info {
    padding: 6rem 0;
    background: var(--black);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
    border-color: var(--violet);
}

.info-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.info-card p {
    color: var(--grey);
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-grey) 0%, var(--black) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--violet);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--violet);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.footer-section p {
    color: var(--grey);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    color: var(--grey);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
    }
}

.btn-primary {
    animation: glow 2s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .burger {
        display: flex;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-cta {
        display: none;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .title-main {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== TICKETS SECTION ===== */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ticket-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
    border-color: var(--violet);
}

.ticket-card.featured {
    border-color: var(--pink);
    box-shadow: var(--shadow-pink);
}

.ticket-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ticket-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ticket-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.ticket-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
}

.currency {
    font-size: 1.2rem;
    color: var(--grey);
    font-weight: 600;
}

.ticket-features {
    margin-bottom: 2rem;
}

.ticket-features ul {
    list-style: none;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--grey);
}

.ticket-features i {
    color: var(--cyan);
    font-size: 0.9rem;
}

.ticket-cta {
    text-align: center;
}

/* ===== FAQ GRID ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.faq-item h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--grey);
    line-height: 1.6;
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--violet);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-neon);
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(157, 78, 221, 0.1);
}

.faq-question h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--cyan);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--grey);
    line-height: 1.6;
}

/* ===== CONTACT PREVIEW ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.contact-item i {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--grey);
}

/* ===== SCHEDULE SECTION ===== */
.day-nav {
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.day-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.day-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--violet);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-btn:hover,
.day-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-neon);
}

.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
}

.day-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cyan);
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stage-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.stage-title {
    color: var(--cyan);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.schedule-item.headliner {
    border-color: var(--pink);
    box-shadow: var(--shadow-pink);
}

.time {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    min-width: 60px;
}

.artist-info h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.artist-info p {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    padding: 1.5rem;
    color: var(--white);
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info p {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ===== VIDEO SECTION ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.video-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.video-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.video-placeholder p {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ===== SHARE SECTION ===== */
.social-share {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-share-btn:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.contact-icon {
    font-size: 2rem;
    color: var(--cyan);
    min-width: 50px;
}

.contact-details h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--grey);
    margin-bottom: 0.2rem;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* ===== FORM STYLES ===== */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--grey);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* ===== VENUE SECTION ===== */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.venue-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.venue-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.venue-image {
    height: 250px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-info {
    padding: 2rem;
}

.venue-info h3 {
    color: var(--cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.venue-description {
    color: var(--grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey);
}

.detail-item i {
    color: var(--cyan);
    width: 20px;
}

/* ===== MAP SECTION ===== */
.map-container {
    margin-bottom: 3rem;
}

.map-placeholder {
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: var(--grey);
    margin-bottom: 1rem;
}

.venue-addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.address-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.address-card h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-card p {
    color: var(--grey);
    margin-bottom: 0.5rem;
}

/* ===== TRANSPORT SECTION ===== */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transport-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.transport-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.transport-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.transport-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.transport-card p {
    color: var(--grey);
    margin-bottom: 1rem;
}

.transport-card ul {
    list-style: none;
    text-align: left;
}

.transport-card li {
    color: var(--grey);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.transport-card li::before {
    content: '•';
    color: var(--cyan);
    position: absolute;
    left: 0;
}

/* ===== HOTEL SECTION ===== */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.hotel-image {
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.hotel-info p {
    color: var(--grey);
    margin-bottom: 1rem;
}

.hotel-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hotel-features span {
    background: rgba(157, 78, 221, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hotel-price {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== STORY SECTION ===== */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text p {
    color: var(--grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--grey);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: var(--grey);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--cyan);
}

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.value-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--grey);
    line-height: 1.6;
}

/* ===== SPONSORS SECTION ===== */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.sponsor-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.sponsor-logo {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.sponsor-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sponsor-card p {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ===== PRESS SECTION ===== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.press-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.press-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-neon);
}

.press-logo {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.press-item blockquote {
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.press-item cite {
    color: var(--pink);
    font-weight: 600;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-grid {
        grid-template-columns: 1fr;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } 

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-section {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 46, 152, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(157, 78, 221, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info .section-title {
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, var(--violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--violet);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--violet), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--grey);
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.social-contact {
    margin-top: 2rem;
    text-align: center;
}

.social-contact h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--violet), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.5);
}

.social-link i {
    font-size: 1.2rem;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form .section-title {
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, var(--violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-grey);
    color: var(--white);
    padding: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--grey);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--white);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--violet);
}

/* ===== GALLERY PAGE SPECIFIC STYLES ===== */
.gallery-filters {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(157, 78, 221, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(157, 78, 221, 0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.filter-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 25px;
    color: var(--grey);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, var(--violet), var(--pink));
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.4);
    transform: translateY(-2px);
}

.gallery-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(255, 46, 152, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255, 46, 152, 0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.gallery-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--violet);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

.gallery-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.8) 0%, rgba(255, 46, 152, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Video Grid Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: var(--violet);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.3);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(255, 46, 152, 0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Social Share Styles */
.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-share-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, var(--violet), var(--pink));
    border: none;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.5);
}

.social-share-btn i {
    font-size: 1.1rem;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR CONTACT & GALLERY ===== */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-share {
        gap: 0.5rem;
    }
    
    .social-share-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-info h3 {
        font-size: 1.2rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
}

/* ===== ANIMATIONS FOR CONTACT & GALLERY ===== */
@keyframes contactPulse {
    0% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(157, 78, 221, 0); }
    100% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0); }
}

.contact-item:hover .contact-icon {
    animation: contactPulse 1s infinite;
}

@keyframes galleryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.gallery-item:hover {
    animation: galleryFloat 2s ease-in-out infinite;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } 

/* ===== EXPERIENCE PAGE SPECIFIC STYLES ===== */
.ambiances-section {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.ambiances-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(157, 78, 221, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.ambiances-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ambiance-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.1);
}

.ambiance-card:hover {
    border-color: var(--violet);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
    transform: scale(1.05);
}

.ambiance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--violet), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.ambiance-icon i {
    color: white;
    font-size: 2rem;
}

.ambiance-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.ambiance-card p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Activities Section */
.activities-section {
    position: relative;
    overflow: hidden;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255, 46, 152, 0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.activities-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.activity-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--cyan), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
}

.activity-icon i {
    color: white;
    font-size: 1.8rem;
}

.activity-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.activity-card p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* VIP Section */
.vip-section {
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="rgba(255, 46, 152, 0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.vip-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vip-text {
    color: var(--white);
}

.vip-description {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.95rem;
}

.vip-feature i {
    color: var(--cyan);
    font-size: 1.1rem;
}

.vip-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(255, 46, 152, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border: 2px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(10px);
}

.vip-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.vip-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vip-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Food Section */
.food-section {
    position: relative;
    overflow: hidden;
}

.food-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="food" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0, 240, 255, 0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23food)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.food-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.food-category {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.food-category:hover {
    border-color: var(--pink);
    box-shadow: 0 0 30px rgba(255, 46, 152, 0.3);
    transform: translateY(-3px);
}

.food-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.food-category h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.food-category p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Engagement Section */
.engagement-section {
    position: relative;
    overflow: hidden;
}

.engagement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="eco" width="35" height="35" patternUnits="userSpaceOnUse"><path d="M 17.5 0 L 17.5 35 M 0 17.5 L 35 17.5" stroke="rgba(0, 240, 255, 0.2)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23eco)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.engagement-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.engagement-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--cyan), var(--violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.4);
}

.engagement-icon i {
    color: white;
    font-size: 2.5rem;
}

.engagement-text {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.eco-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.95rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.eco-feature i {
    color: var(--cyan);
    font-size: 1.2rem;
}

/* CTA Section */
.experience-cta {
    position: relative;
    overflow: hidden;
}

.experience-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="rgba(157, 78, 221, 0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-description {
    color: var(--grey);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR EXPERIENCE ===== */
@media (max-width: 768px) {
    .ambiances-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vip-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .vip-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .eco-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .ambiance-card,
    .activity-card,
    .food-category {
        padding: 1.5rem;
    }
    
    .ambiance-icon,
    .activity-icon {
        width: 60px;
        height: 60px;
    }
    
    .ambiance-icon i {
        font-size: 1.5rem;
    }
    
    .activity-icon i {
        font-size: 1.4rem;
    }
    
    .vip-placeholder {
        height: 250px;
    }
    
    .vip-placeholder i {
        font-size: 3rem;
    }
    
    .vip-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .engagement-icon {
        width: 80px;
        height: 80px;
    }
    
    .engagement-icon i {
        font-size: 2rem;
    }
}

/* ===== ANIMATIONS FOR EXPERIENCE ===== */
@keyframes ambianceGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(157, 78, 221, 0.1); }
    50% { box-shadow: 0 0 30px rgba(157, 78, 221, 0.4); }
}

.ambiance-card:hover .ambiance-icon {
    animation: ambianceGlow 2s ease-in-out infinite;
}

@keyframes activityPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.activity-card:hover .activity-icon {
    animation: activityPulse 1s ease-in-out infinite;
}

@keyframes vipFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.vip-placeholder:hover {
    animation: vipFloat 2s ease-in-out infinite;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } 