/* =============================================
   PLAYZZ STATION ARENA — Main Stylesheet
   Theme: Neon Purple / Blue / Dark Space
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --bg:         #05000f;
    --bg-card:    rgba(20, 5, 45, 0.9);
    --bg-card2:   rgba(10, 2, 30, 0.95);
    --blue:       #00aaff;
    --blue-dark:  #0066cc;
    --purple:     #7b2fff;
    --pink:       #ff00cc;
    --pink-soft:  #cc00aa;
    --white:      #ffffff;
    --grey:       #a0a0c0;
    --border:     rgba(123, 47, 255, 0.3);
    --glow-blue:  0 0 20px rgba(0, 170, 255, 0.5);
    --glow-pink:  0 0 20px rgba(255, 0, 204, 0.5);
    --glow-purple:0 0 20px rgba(123, 47, 255, 0.5);
    --nav-h:      72px;
    --radius:     12px;
    --radius-lg:  20px;
    --transition: 0.3s ease;
    --font-head:  'Orbitron', monospace;
    --font-body:  'Rajdhani', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--pink); }

ul { list-style: none; }

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.hidden { display: none !important; }

.neon-blue  { color: var(--blue); }
.neon-pink  { color: var(--pink); }
.neon-purple { color: var(--purple); }

.section-tag {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
        135deg, var(--blue), var(--purple)
    );
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--glow-blue);
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 170, 255, 0.7);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--blue);
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(
        135deg, #25d366, #128c7e
    );
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    width: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.full-w { width: 100%; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: transparent;
    transition: background var(--transition),
                backdrop-filter var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 0, 15, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after { width: 100%; }

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    text-align: center;
    flex-shrink: 0;
}

.logo-playzz {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--blue);
    text-shadow: var(--glow-blue);
    letter-spacing: 3px;
}

.logo-station {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 5px;
    text-shadow: var(--glow-pink);
}

.logo-arena {
    font-family: var(--font-head);
    font-size: 0.5rem;
    letter-spacing: 8px;
    color: var(--grey);
}

.btn-book {
    background: linear-gradient(
        135deg, var(--pink), var(--purple)
    );
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--glow-pink);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 204, 0.7);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(5, 0, 20, 0.97);
    border-top: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

.nav-mobile .nav-link {
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.nav-mobile .btn-book {
    width: 100%;
    text-align: center;
    padding: 14px;
    margin-top: 8px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Animated glow orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    top: -100px;
    left: -150px;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--blue);
    bottom: -80px;
    right: -100px;
    animation-delay: -3s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    top: 40%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

/* Neon grid overlay */
.neon-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(0, 170, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 170, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 24px;
    max-width: 800px;
}

.hero-tag {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.hero-title .neon-blue {
    text-shadow:
        0 0 20px rgba(0, 170, 255, 0.8),
        0 0 60px rgba(0, 170, 255, 0.4);
    animation: pulse-blue 3s ease-in-out infinite;
}

.hero-title .neon-pink {
    text-shadow:
        0 0 20px rgba(255, 0, 204, 0.8),
        0 0 60px rgba(255, 0, 204, 0.4);
    animation: pulse-pink 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes pulse-blue {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(0,170,255,0.8),
            0 0 60px rgba(0,170,255,0.4);
    }
    50% {
        text-shadow:
            0 0 40px rgba(0,170,255,1),
            0 0 100px rgba(0,170,255,0.6);
    }
}

@keyframes pulse-pink {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(255,0,204,0.8),
            0 0 60px rgba(255,0,204,0.4);
    }
    50% {
        text-shadow:
            0 0 40px rgba(255,0,204,1),
            0 0 100px rgba(255,0,204,0.6);
    }
}

.hero-subtitle {
    font-family: var(--font-head);
    font-size: clamp(1rem, 3vw, 1.6rem);
    letter-spacing: 12px;
    color: var(--grey);
    margin-bottom: 20px;
}

.hero-tagline {
    font-family: var(--font-head);
    font-size: clamp(0.8rem, 2vw, 1rem);
    letter-spacing: 6px;
    color: var(--pink);
    margin-bottom: 20px;
    text-shadow: var(--glow-pink);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--grey);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue);
    text-shadow: var(--glow-blue);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--grey);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--grey);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    background: linear-gradient(
        180deg,
        var(--bg) 0%,
        rgba(10, 2, 35, 1) 100%
    );
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    color: var(--grey);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 47, 255, 0.15);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.badge:hover {
    background: rgba(0, 170, 255, 0.15);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.badge-icon { font-size: 1.1rem; }

.about-img-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.about-img {
    grid-column: 1 / -1;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--glow-purple);
}

.about-img-small {
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    grid-column: 1 / 2;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: rgba(5, 0, 20, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
}

.service-card.featured {
    border-color: var(--pink);
    box-shadow: var(--glow-pink);
}

.service-card.featured:hover {
    box-shadow: 0 0 40px rgba(255, 0, 204, 0.6);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-content {
    padding: 24px;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-content h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-content p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(
        135deg,
        rgba(123, 47, 255, 0.25) 0%,
        rgba(0, 170, 255, 0.15) 50%,
        rgba(255, 0, 204, 0.2) 100%
    );
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300aaff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    background: var(--bg);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--grey);
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(
        135deg, var(--blue), var(--purple)
    );
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--glow-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
}

.price-card.featured {
    border-color: var(--pink);
    background: linear-gradient(
        160deg,
        rgba(255,0,204,0.08) 0%,
        rgba(123,47,255,0.12) 100%
    );
    box-shadow: var(--glow-pink);
}

.badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        135deg, var(--pink), var(--purple)
    );
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 5px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-icon { font-size: 2.5rem; }

.price-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.amount {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue);
    text-shadow: var(--glow-blue);
}

.period {
    font-size: 0.9rem;
    color: var(--grey);
}

.price-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey);
    font-size: 0.95rem;
}

.price-features li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}

/* Morning offer banner */
.morning-offer {
    background: linear-gradient(
        135deg,
        rgba(255, 150, 0, 0.15),
        rgba(255, 60, 0, 0.1)
    );
    border: 1px solid rgba(255, 150, 0, 0.4);
    border-radius: var(--radius);
    padding: 14px 24px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #ffb347;
    margin-bottom: 32px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 150, 0, 0.15);
}

/* Gaming zones grid */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.zone-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all var(--transition);
}

.zone-card:hover {
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}

.zone-card.featured {
    border-color: var(--pink);
    background: linear-gradient(
        160deg,
        rgba(255,0,204,0.06) 0%,
        rgba(123,47,255,0.1) 100%
    );
    box-shadow: var(--glow-pink);
}

.zone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.zone-icon { font-size: 1.4rem; }

.zone-header h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

/* Pricing table inside zone */
.pt-wrap {
    display: flex;
    gap: 12px;
}

.pt-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pt-head {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0,170,255,0.2);
}

.pt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.88rem;
    color: var(--grey);
}

.pt-row:last-child {
    border-bottom: none;
}

.pt-price {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}

.pt-divider {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
    margin: 0 4px;
}

.pricing-book-cta {
    text-align: center;
    margin-top: 8px;
}

/* Food & Drinks menu */
.menu-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 32px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.menu-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.menu-item:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

.menu-item.drink:hover {
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
}

.menu-emoji {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.menu-item h4 {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.menu-item p {
    font-size: 0.8rem;
    color: var(--grey);
}

.menu-price {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--blue);
    text-shadow: var(--glow-blue);
    margin-top: 6px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-sec {
    background: rgba(5, 0, 20, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.gallery-item.gi-tall {
    grid-row: span 2;
}

.gallery-item.gi-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(123, 47, 255, 0.7) 0%,
        transparent 60%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover {
    border-color: var(--pink);
    box-shadow: var(--glow-pink);
}

.zoom-icon {
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform var(--transition);
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact call card */
.contact-call-wrap {
    display: flex;
    align-items: center;
}

.call-card {
    background: linear-gradient(
        160deg,
        rgba(0, 170, 255, 0.07),
        rgba(123, 47, 255, 0.12)
    );
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.call-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.call-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.call-card p {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 340px;
}

.call-btn {
    font-size: 1rem !important;
    padding: 16px 36px !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition),
                box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(160, 160, 192, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(123, 47, 255, 0.15);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.contact-detail a {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--white);
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: rgba(3, 0, 10, 1);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--pink);
    margin-bottom: 12px;
    text-shadow: var(--glow-pink);
}

.footer-desc {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--grey);
    transition: all var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-link.insta:hover {
    background: linear-gradient(
        135deg, #f09433, #e6683c, #dc2743,
        #cc2366, #bc1888
    );
    border-color: transparent;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: transparent;
}

.social-link.gmaps:hover {
    background: #4285f4;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(66,133,244,0.5);
}

.footer-links h4,
.footer-contact-info h4 {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--grey);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--blue); }

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-phone {
    color: var(--blue) !important;
    font-family: var(--font-head);
    font-size: 1rem;
}

.footer-maps {
    color: var(--grey) !important;
    font-size: 0.9rem;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
        135deg, #25d366, #128c7e
    );
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 1px;
    margin-top: 8px;
    width: fit-content;
    text-transform: uppercase;
    transition: all var(--transition);
}

.footer-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37,211,102,0.5);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--grey);
    font-size: 0.85rem;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox.open {
    display: flex;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--purple);
    box-shadow: var(--glow-purple);
}

.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--pink);
    border-color: var(--pink);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 2.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2001;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--purple);
    border-color: var(--purple);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.float-wa {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(
        135deg, #25d366, #128c7e
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: all var(--transition);
    animation: wa-pulse 3s ease-in-out infinite;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ========================================
   BOOKING WIDGET
   ======================================== */
.booking-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: linear-gradient(
        135deg, var(--blue), var(--purple)
    );
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--glow-blue);
    transition: all var(--transition);
}

.booking-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 170, 255, 0.7);
}

.booking-panel {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 360px;
    max-height: 80vh;
    background: rgba(8, 2, 25, 0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    z-index: 950;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(123, 47, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.booking-panel.open {
    display: flex;
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(
        135deg,
        rgba(0,170,255,0.1),
        rgba(123,47,255,0.1)
    );
}

.booking-header h3 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--white);
}

.close-btn {
    background: none;
    border: none;
    color: var(--grey);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.close-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.booking-chat {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 80px;
}

.booking-chat::-webkit-scrollbar {
    width: 4px;
}

.booking-chat::-webkit-scrollbar-track {
    background: transparent;
}

.booking-chat::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.chat-msg {
    display: flex;
    align-items: flex-end;
}

.chat-msg.bot {
    justify-content: flex-start;
}

.chat-msg.user {
    justify-content: flex-end;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-msg.bot .chat-bubble {
    background: rgba(123, 47, 255, 0.2);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    color: var(--white);
}

.chat-msg.user .chat-bubble {
    background: linear-gradient(
        135deg, var(--blue), var(--purple)
    );
    border-bottom-right-radius: 4px;
    color: var(--white);
}

.booking-input {
    padding: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-input input[type="date"],
.booking-input input[type="text"],
.booking-input input[type="tel"] {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition);
    color-scheme: dark;
}

.booking-input input:focus {
    border-color: var(--blue);
}

.step-hint {
    color: var(--grey);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 2px;
}

.slot-grid::-webkit-scrollbar {
    width: 3px;
}

.slot-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.slot-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--grey);
    padding: 7px 4px;
    border-radius: 7px;
    font-family: var(--font-head);
    font-size: 0.6rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.slot-btn:hover {
    background: rgba(0, 170, 255, 0.12);
    border-color: var(--blue);
    color: var(--white);
}

.slot-btn.selected {
    background: linear-gradient(
        135deg, var(--blue), var(--purple)
    );
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
}

/* Slot meta row */
.slot-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 2px 0;
}

.slot-info {
    font-size: 0.78rem;
    color: var(--blue);
    font-family: var(--font-head);
    flex: 1;
}

.slot-clear-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--grey);
    font-family: var(--font-head);
    font-size: 0.6rem;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.slot-clear-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* Disabled Next button */
.booking-input .btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.kiosk-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.counter-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
}

#kioskCount {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue);
    min-width: 32px;
    text-align: center;
}

.booking-summary {
    background: rgba(123,47,255,0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 8px;
}

.booking-summary p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.booking-summary strong {
    color: var(--white);
}

.restart-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .zones-grid {
        grid-template-columns: 1fr 1fr;
    }

    .zones-grid .zone-card:last-child {
        grid-column: 1 / -1;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrap {
        grid-template-columns: 2fr 1fr;
    }

    .about-img {
        grid-column: 1;
    }

    .about-img-small {
        grid-column: 2;
        height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid .service-card:last-child {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .nav-left,
    .nav-right { display: none; }

    .hamburger { display: flex; }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-stats {
        gap: 20px;
        padding: 16px 20px;
    }

    .stat-num { font-size: 1.4rem; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:last-child {
        grid-column: 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item.gi-wide {
        grid-column: 1 / -1;
    }

    .zones-grid {
        grid-template-columns: 1fr;
    }

    .zones-grid .zone-card:last-child {
        grid-column: 1;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand { grid-column: 1; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .booking-panel {
        width: calc(100vw - 32px);
        right: 16px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats { gap: 12px; }

    .stat-divider { height: 30px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.gi-tall {
        grid-row: span 1;
    }

    .gallery-item.gi-wide {
        grid-column: 1;
    }

    .slot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .float-wa {
        bottom: 88px;
        right: 16px;
    }

    .booking-bubble {
        bottom: 24px;
        right: 16px;
        padding: 12px 16px;
    }
}
