/* =================================================================
   MENU CATEGORY — FOOD/DRINK BACKGROUND IMAGES
   Each .menu-category uses --menu-img CSS variable set inline
   ================================================================= */
.menu-category {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.menu-category {
    background: linear-gradient(135deg, rgba(5, 9, 26, 0.65), rgba(1, 4, 13, 0.95)), var(--menu-img, none) !important;
    background-size: cover !important;
    background-position: center !important;
    background-blend-mode: multiply;
}

.menu-category:hover {
    background: linear-gradient(135deg, rgba(5, 9, 26, 0.5), rgba(1, 4, 13, 0.85)), var(--menu-img, none) !important;
    background-size: cover !important;
    background-position: center !important;
    background-blend-mode: multiply;
}

.menu-category h3,
.menu-category .menu-grid,
.menu-category .service-charge-note {
    position: relative;
    z-index: 1;
}

/* =================================================================
   MEGA VISUAL OVERHAUL — Make the site stunning
   ================================================================= */

/* 1. Animated gradient hero title */
.hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, #7CB9FF 40%, #F5C842 80%, #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleGradient 6s ease-in-out infinite, heroGlow 4s ease-in-out infinite alternate;
    filter: none;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes heroGlow {
    from {
        text-shadow: 0 0 30px rgba(21, 101, 255, 0.4);
    }

    to {
        text-shadow: 0 0 60px rgba(21, 101, 255, 0.8), 0 0 100px rgba(124, 185, 255, 0.3);
    }
}

/* Fix: hero h1 on mobile should stay white */
@media(max-width:768px) {
    .hero h1 {
        background: none !important;
        -webkit-text-fill-color: #fff !important;
        animation: none !important;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
    }
}

/* 2. Glowing motto */
.motto {
    font-size: 1.1rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(245, 200, 66, 0.3);
    letter-spacing: 0.2em;
    animation: mottoPulse 3s ease-in-out infinite;
}

@keyframes mottoPulse {

    0%,
    100% {
        text-shadow: 0 0 15px rgba(245, 200, 66, 0.5);
        letter-spacing: 0.2em;
    }

    50% {
        text-shadow: 0 0 30px rgba(245, 200, 66, 0.8), 0 0 60px rgba(245, 200, 66, 0.3);
        letter-spacing: 0.25em;
    }
}

/* 3. Hero content — glowing glass card */
.hero-content {
    background: rgba(5, 9, 26, 0.35);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2rem;
    box-shadow: 0 0 80px rgba(21, 101, 255, 0.2), inset 0 0 60px rgba(21, 101, 255, 0.05);
    padding: 3rem 2.5rem;
    animation: heroCardIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heroCardIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 4. Hero CTA buttons — neon glow pills */
.cta-btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1565FF, #2979FF);
    border: 1px solid rgba(124, 185, 255, 0.4);
    box-shadow: 0 0 20px rgba(21, 101, 255, 0.5), 0 8px 25px rgba(21, 101, 255, 0.3);
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 40px rgba(21, 101, 255, 0.8), 0 15px 40px rgba(21, 101, 255, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: white;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(124, 185, 255, 0.7);
    box-shadow: 0 0 20px rgba(124, 185, 255, 0.3);
}

/* 5. Section titles — cleaner glow */
.section-title {
    background: linear-gradient(135deg, #E8EEFF, #7CB9FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--green));
    height: 4px;
    width: 70px;
    box-shadow: 0 0 15px var(--primary-glow), 0 0 30px rgba(245, 200, 66, 0.2);
}

/* Remove the dot decoration that clutters titles */
.section-title::before {
    display: none;
}

/* 6. Stats section — vibrant and alive */
.stats-section {
    background:
        linear-gradient(135deg, rgba(21, 101, 255, 0.15) 0%, rgba(245, 200, 66, 0.06) 50%, rgba(0, 229, 160, 0.08) 100%),
        radial-gradient(ellipse at 30% 0%, rgba(21, 101, 255, 0.2), transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(0, 229, 160, 0.1), transparent 60%);
    border: 1px solid rgba(21, 101, 255, 0.25);
    border-radius: 2rem;
}

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

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
}

/* 7. Facility cards — dramatic glow border */
.facility-card {
    background: linear-gradient(145deg, rgba(13, 21, 48, 0.9), rgba(5, 9, 26, 0.95)) padding-box,
        linear-gradient(135deg, rgba(21, 101, 255, 0.4), rgba(245, 200, 66, 0.15), rgba(0, 229, 160, 0.1)) border-box;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.facility-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(145deg, rgba(13, 21, 48, 0.95), rgba(5, 9, 26, 1)) padding-box,
        linear-gradient(135deg, rgba(21, 101, 255, 0.9), rgba(245, 200, 66, 0.5)) border-box;
    box-shadow: 0 20px 60px rgba(21, 101, 255, 0.3), 0 0 0 1px rgba(21, 101, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* 8. Price item strong — animated gold shimmer */
.price-item strong {
    background: linear-gradient(90deg, #F5C842, #FFE066, #F5C842);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s linear infinite;
    font-size: 1.4rem;
}

@keyframes goldShimmer {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}

/* 9. Menu category — more dramatic styling */
.menu-category {
    border: 1px solid rgba(21, 101, 255, 0.3);
    border-radius: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(245, 200, 66, 0.05);
}

.menu-category:hover {
    border-color: rgba(245, 200, 66, 0.6);
    box-shadow: 0 20px 60px rgba(21, 101, 255, 0.3), inset 0 0 60px rgba(21, 101, 255, 0.15);
    transform: translateY(-5px);
}

.menu-category h3 {
    color: var(--gold) !important;
    text-shadow: 0 0 25px rgba(245, 200, 66, 0.7), 0 2px 5px rgba(0, 0, 0, 0.8);
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    border-bottom: 2px solid rgba(245, 200, 66, 0.3);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* 10. Menu items — sleek interactive rows */
.menu-item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1565FF, #00E5A0, #F5C842);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 15px var(--primary);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    background: rgba(21, 101, 255, 0.07);
    border-color: rgba(21, 101, 255, 0.2);
    transform: translateX(6px);
    box-shadow: -4px 0 20px rgba(21, 101, 255, 0.1);
}

/* 11. Membership cards — vivid with top accent strip */
.membership-card {
    background: linear-gradient(145deg, rgba(13, 21, 48, 0.9), rgba(5, 9, 26, 0.95));
    border: 1px solid rgba(21, 101, 255, 0.2);
}

.membership-card:hover {
    border-color: rgba(21, 101, 255, 0.6);
    box-shadow: 0 20px 60px rgba(21, 101, 255, 0.25), 0 0 30px rgba(245, 200, 66, 0.05);
    transform: translateY(-10px) scale(1.02);
}

.membership-card::before {
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--green));
    opacity: 1 !important;
    height: 3px;
}

/* 12. Testimonial cards — depth */
.testimonial-card {
    background: linear-gradient(145deg, rgba(13, 21, 48, 0.85), rgba(5, 9, 26, 0.9));
    border: 1px solid rgba(21, 101, 255, 0.15);
}

.testimonial-card:hover {
    border-color: rgba(21, 101, 255, 0.45);
    box-shadow: 0 15px 50px rgba(21, 101, 255, 0.2);
}

/* 13. Footer — premium gradient top bar (thicker) */
footer::before {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--green), var(--primary));
    background-size: 300%;
    animation: gradientShift 4s linear infinite;
    box-shadow: 0 0 20px rgba(21, 101, 255, 0.5);
}

/* 14. Floating WhatsApp — ring pulse */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* 15. Gallery item — neon border glow on hover */
.gallery-item:hover {
    box-shadow: 0 0 0 2px var(--primary), 0 0 40px rgba(21, 101, 255, 0.4);
}

/* 16. Timetable — more vibrant status colors */
td.available {
    color: #00E5A0;
    background: rgba(0, 229, 160, 0.07);
    font-weight: 700;
    letter-spacing: 0.03em;
}

td.available:hover {
    background: rgba(0, 229, 160, 0.18);
    box-shadow: inset 0 0 0 1.5px var(--green), 0 0 12px rgba(0, 229, 160, 0.3);
    border-radius: 8px;
}

td.booked {
    color: #FF4D6D;
    background: rgba(255, 77, 109, 0.08);
}

td.pending {
    color: #F5C842;
    background: rgba(245, 200, 66, 0.07);
}

/* 17. Body background — more dynamic mesh */
.bg-animation {
    background:
        radial-gradient(ellipse at 15% 15%, rgba(21, 101, 255, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(245, 200, 66, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 229, 160, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse at 80% 10%, rgba(124, 185, 255, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #05091A 0%, #080D22 50%, #05091A 100%);
}

/* 18. Important rule banner — more dramatic */
.important-rule {
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.15), rgba(245, 200, 66, 0.06));
    border: 1.5px solid rgba(245, 200, 66, 0.5);
    font-size: 1rem;
    box-shadow: 0 0 30px rgba(245, 200, 66, 0.15), inset 0 0 30px rgba(245, 200, 66, 0.03);
}

/* 19. WHY cards — vibrant accent */
.why-card {
    background: linear-gradient(145deg, rgba(13, 21, 48, 0.85), rgba(5, 9, 26, 0.9));
}

.why-card h4 {
    background: linear-gradient(135deg, #E8EEFF, #7CB9FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 20. Social buttons — more alive */
.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #135FC0);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
}

.social-btn.facebook:hover {
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.6), 0 0 0 1px rgba(124, 185, 255, 0.3);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1AAD4C);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.social-btn.whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* 21. Review form — vivid border */
.review-form-wrapper {
    background: linear-gradient(145deg, rgba(13, 21, 48, 0.9), rgba(5, 9, 26, 0.95));
    border: 1px solid rgba(21, 101, 255, 0.2);
    box-shadow: 0 0 60px rgba(21, 101, 255, 0.08);
}

/* 22. Back to top — more visible */
.back-to-top {
    background: linear-gradient(135deg, #1565FF, #2979FF);
    box-shadow: 0 0 20px rgba(21, 101, 255, 0.6);
}

.back-to-top:hover {
    box-shadow: 0 0 35px rgba(21, 101, 255, 0.9);
    transform: translateY(-4px);
}

/* 23. Mobile bottom nav — glowing active */
.mobile-bottom-nav {
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.05), 0 -8px 40px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-nav a.active {
    background: linear-gradient(135deg, rgba(21, 101, 255, 0.2), rgba(21, 101, 255, 0.08));
    box-shadow: inset 0 0 0 1px rgba(21, 101, 255, 0.3);
    color: #7CB9FF;
}

.mobile-bottom-nav a.active .nav-icon {
    filter: drop-shadow(0 0 8px rgba(21, 101, 255, 0.8));
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* 24. Price list — gradient border */
.price-list {
    background: linear-gradient(145deg, rgba(13, 21, 48, 0.9), rgba(5, 9, 26, 0.95));
    border: 1px solid rgba(21, 101, 255, 0.2);
}

.price-list:hover {
    border-color: rgba(21, 101, 255, 0.5);
    box-shadow: 0 10px 40px rgba(21, 101, 255, 0.15);
}

.price-list h3 {
    background: linear-gradient(135deg, #E8EEFF, #7CB9FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 25. Bank details — standout */
.bank-details {
    background: linear-gradient(135deg, rgba(21, 101, 255, 0.12), rgba(21, 101, 255, 0.05));
    border: 1.5px solid rgba(21, 101, 255, 0.35);
    box-shadow: 0 0 30px rgba(21, 101, 255, 0.1);
}