/* Premium Header Styles */
:root {
    --brand-purple: #6A1B9A;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --bg-light: #fff7fc;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

/* Splash Screen Styles */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}



#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.splash-logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    animation: splashEnter 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
               splashPulse 2s 1.2s infinite ease-in-out;
}

@keyframes splashEnter {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

body.no-scroll {
    overflow: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* DYNAMIC TOPBAR STYLES */
.topbar {
    background-color: var(--brand-purple);
    color: var(--text-white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-left .brand-group {
    display: flex;
    flex-direction: column;
}

.top-left strong {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.top-email {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 2px;
}

.top-center {
    display: flex;
    gap: 25px;
}

.top-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 25px;
}

.top-item:last-child {
    border-right: none;
    padding-right: 0;
}

.loc-title {
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.loc-sub {
    font-weight: 400;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.65rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Official Brand Colors */
.social-btn.whatsapp { color: #25D366; }
.social-btn.facebook { color: #1877F2; }
.social-btn.instagram { color: #E4405F; }
.social-btn.youtube { color: #FF0000; }
.social-btn.linkedin { color: #0A66C2; }

.social-btn:hover i {
    filter: brightness(1.1);
}


/* Responsive Topbar */
@media (max-width: 1024px) {
    .topbar-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .top-center {
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-item {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .top-center {
        display: none;
    }
    .topbar-flex {
        gap: 5px;
    }
    .topbar {
        padding: 5px 0;
    }
}

/* MAIN NAVBAR - REFINED LAYOUT (LOGO OUTSIDE) */
.main-navbar {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
    transition: opacity 0.4s ease, transform 0.4s ease;
}


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

.nav-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-right {
    background-color: var(--brand-purple);
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 10px 10px 10px 35px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.2);
    opacity: 0;
    animation: menuPillSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menuPillSlide {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #ffffff;
}

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

.nav-menu a.active {
    color: #ffffff;
}

.book-now-btn {
    background-color: #ffffff;
    color: var(--brand-purple);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Brand Switch Button (Compact) */
.brand-switch-wrapper {
    margin-right: 15px;
}

.brand-switch-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.brand-switch-btn i {
    font-size: 14px;
}

.brand-switch-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-switch-btn.to-nag:hover {
    border-color: #E50914;
    color: #E50914;
}

.brand-switch-btn.to-cm:hover {
    border-color: #FFD700;
    color: #FFD700;
}

@media (max-width: 991px) {
    .brand-switch-wrapper {
        margin: 10px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}


.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    background-color: #f8f8f8;
}

/* Mobile Navigation Styles */
.nav-actions-mobile {
    display: none;
    align-items: center;
    gap: 15px;
}
.hamburger-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    background-color: var(--brand-purple);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-theme-switch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.mobile-theme-switch i {
    font-size: 1.2rem;
    margin: 0;
}
.mobile-theme-switch:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.mobile-menu-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-logo {
    height: 40px;
}
.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 991px) {
    .nav-actions-mobile {
        display: flex;
    }
    .nav-right {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        border-radius: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1002;
        transition: right 0.3s ease;
        opacity: 1;
        animation: none;
        overflow-y: auto;
    }
    .nav-right.active {
        right: 0;
    }
    .mobile-menu-header {
        display: flex;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: #333;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 1rem;
    }
    .nav-menu a:hover, .nav-menu a.active {
        background: rgba(106, 27, 154, 0.05);
        color: var(--brand-purple);
    }
    .nav-menu a::after {
        display: none;
    }
    .book-now-btn {
        margin: 20px;
        width: calc(100% - 40px);
        text-align: center;
        background: var(--brand-purple);
        color: #fff;
        box-sizing: border-box;
    }
}

/* Mobile Responsive Utility */
@media (max-width: 1100px) {
    .top-locations {
        display: none;
    }
}

/* SLIDER CONTAINER */
.slider-container-main {
    width: 100%;
    display: block;
    padding: 0;
    background: #000;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Brand Specific Aspect Ratios (Full Width) */
.brand-slider-craaazy_monks {
    width: 100%;
    height: auto;
    aspect-ratio: 979 / 505;
}

.brand-slider-new_age_gaming {
    width: 100%;
    height: auto;
    aspect-ratio: 4269 / 2400;
}


.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-fallback {
    width: 100%;
    height: 100%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
}

/* SLIDER DOTS */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 100px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background-color: #ffffff;
}

/* FEATURES SECTION (Why Families Choose Us) */
.features-section {
    padding: 100px 0;
    background-color: #F6F3FF;
    overflow: hidden;
}

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

.sub-label {
    display: block;
    color: var(--brand-purple);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1A1A1A;
}

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

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(40px);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
}


.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 24px;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Individual Card Themes */
.card-safe .feature-icon { background: #E3F2FD; color: #1E88E5; }
.card-staff .feature-icon { background: #FFF3E0; color: #FB8C00; }
.card-hygiene .feature-icon { background: #E8F5E9; color: #43A047; }
.card-premium .feature-icon { background: #F3E5F5; color: #8E24AA; }

.feature-card:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
    color: #ffffff;
}

.card-safe:hover .feature-icon { background: #1E88E5; }
.card-staff:hover .feature-icon { background: #FB8C00; }
.card-hygiene:hover .feature-icon { background: #43A047; }
.card-premium:hover .feature-icon { background: #8E24AA; }

/* Enhanced Hover Shadows & Lift */
.card-safe:hover { 
    box-shadow: 0 25px 50px rgba(30, 136, 229, 0.2);
}
.card-staff:hover { 
    box-shadow: 0 25px 50px rgba(251, 140, 0, 0.2);
}
.card-hygiene:hover { 
    box-shadow: 0 25px 50px rgba(67, 160, 71, 0.2);
}
.card-premium:hover { 
    box-shadow: 0 25px 50px rgba(142, 36, 170, 0.2);
}


.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1A1A1A;
    letter-spacing: -0.5px;
}


.feature-card p {
    color: #666666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Scroll Reveal Animation */
.feature-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Features */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .features-section {
        padding: 70px 0;
    }
}
/* ACTIVITIES SECTION (Experience the Craaaziness) */
.activities-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.activities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.activities-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 5px;
}

.view-all-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--brand-purple);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.15);
}

.view-all-btn:hover {
    transform: translateX(5px);
    background: #4A148C;
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.25);
}

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

.activity-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.activity-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.activity-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activity-card:hover .activity-image-wrapper img {
    transform: scale(1.1);
}

.activity-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-purple);
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.activity-content {
    padding: 25px;
    text-align: center;
}

.activity-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1A1A1A;
}

/* Responsive Activities */
@media (max-width: 1100px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .activities-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
    .activities-header h2 {
        font-size: 2.2rem;
    }
}

/* PACKAGES SECTION (Choose Your Party Package) */
.packages-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

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

.package-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(106, 27, 154, 0.15);
}

@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-card:hover .package-image-wrapper img {
    transform: scale(1.05);
}

.package-content {
    padding: 30px;
    text-align: center;
}

.package-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.package-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* HAPPY MOMENTS SECTION (Gallery) */
.happy-moments-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.gallery-grid-wrapper {
    margin-top: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    text-decoration: none;
    color: inherit;
}

.grid-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #f0f0f0;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item.large {
    height: 600px;
}

.grid-right-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.grid-top-row {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 30px;
    height: 285px;
}

.grid-item.landscape {
    height: 285px;
}

/* Responsive Gallery */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .grid-item.large {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .grid-top-row {
        grid-template-columns: 1fr;
        height: auto;
    }
    .grid-item.square, .grid-item.small-square, .grid-item.landscape {
        height: 250px;
    }
}

/* HEALTHY BITES SECTION */
.healthy-bites-section {
    padding: 120px 0;
    background-color: #F6F3FF;
    overflow: hidden;
}

.healthy-bites-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.bites-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 15px 0 25px;
    line-height: 1.1;
}

.main-desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-purple);
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.1);
}

.point-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1A1A1A;
}

.point-text p {
    color: #666;
    line-height: 1.5;
}

/* Image Stack Styles */
.bites-visuals {
    position: relative;
    height: 600px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-item {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.stack-item:hover img {
    transform: scale(1.08);
}

.stack-img-1 {
    width: 350px;
    height: 450px;
    top: 0;
    left: 50px;
    z-index: 2;
}

.stack-img-2 {
    width: 300px;
    height: 350px;
    bottom: 50px;
    right: 0;
    z-index: 1;
}

.stack-img-3 {
    width: 200px;
    height: 200px;
    top: 50px;
    right: 50px;
    z-index: 3;
    border: 8px solid #ffffff;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 0;
    left: -20px;
    z-index: 4;
    width: 160px;
    height: 160px;
    background: var(--brand-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(106, 27, 154, 0.3);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-inner {
    display: flex;
    flex-direction: column;
}

.badge-percent {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

/* Responsive Bites */
@media (max-width: 1100px) {
    .healthy-bites-grid {
        gap: 40px;
    }
    .bites-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .healthy-bites-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bites-content {
        order: 1;
    }
    .bites-visuals {
        order: 2;
        height: 500px;
        margin-top: 40px;
    }
    .feature-point {
        justify-content: center;
        text-align: left;
    }
    .image-stack {
        max-width: 500px;
        margin: 0 auto;
    }
    .stack-img-1 { left: 0; }
    .stack-img-3 { right: 0; }
}

/* FINAL CTA SECTION */
.final-cta-section {
    padding: 100px 0 150px;
    background-color: #ffffff;
}

.cta-card {
    background-color: #F6F3FF;
    border-radius: 60px;
    padding: 80px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(106, 27, 154, 0.05);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-cta.primary {
    background-color: var(--brand-purple);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.2);
}

.btn-cta.secondary {
    background-color: #ffffff;
    color: var(--brand-purple);
    border: 2px solid var(--brand-purple);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.3);
}

.btn-cta.secondary:hover {
    background-color: var(--brand-purple);
    color: #ffffff;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-card {
        padding: 60px 30px;
        border-radius: 40px;
    }
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .cta-actions {
        flex-direction: column;
    }
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ABOUT PAGE HERO */
.about-hero {
    padding: 120px 0;
    background-color: #fdfbff; /* Very light purple/white */
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-hero-content .sub-label {
    display: inline-block;
    background: rgba(106, 27, 154, 0.08);
    color: var(--brand-purple);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-explore {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--brand-purple);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.2);
}

.btn-explore:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(106, 27, 154, 0.4);
    background-color: #4A148C;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-hero-image:hover img {
    transform: scale(1.03);
}

/* Responsive About Hero */
@media (max-width: 1100px) {
    .about-hero-grid {
        gap: 40px;
    }
    .about-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-hero-content p {
        margin: 0 auto 40px;
    }
    .about-hero-image {
        margin-top: 40px;
    }
}

/* EXPERIENCE EDGE SECTION */
.experience-edge {
    padding: 100px 0;
    background-color: #F6F3FF;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

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

.experience-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 40px 80px rgba(106, 27, 154, 0.18);
}

.experience-icon {
    width: 65px;
    height: 65px;
    background: rgba(106, 27, 154, 0.08);
    color: var(--brand-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-card:hover .experience-icon {
    background: var(--brand-purple);
    color: #ffffff;
    transform: scale(1.1) rotate(10deg);
}

.experience-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.experience-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Section Header Utility */
.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header.center p {
    font-size: 1.2rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* Responsive Experience Grid */
@media (max-width: 1100px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .section-header.center h2 {
        font-size: 2.2rem;
    }
}

/* TRUST SECTION */
/* CONTACT PAGE STYLES - ATTRACTIVE VERSION */
.contact-hero {
    padding: 120px 0 80px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--brand-purple);
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.1;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 { top: -200px; left: -100px; background: var(--brand-purple); }
.blob-2 { bottom: -200px; right: -100px; background: #FFD700; animation-delay: -5s; }

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

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -3px;
    line-height: 1;
}

.contact-hero h1 span {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Location Cards Glassmorphism */
.location-cards-section {
    padding: 100px 0;
    background: #fcfcfc;
    position: relative;
}

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

.location-contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.location-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-purple), #9C27B0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(106, 27, 154, 0.12);
    border-color: rgba(106, 27, 154, 0.1);
}

.location-contact-card:hover::before {
    opacity: 1;
}

.loc-icon {
    width: 70px;
    height: 70px;
    background: #F6F3FF;
    color: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin: 0 auto 30px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.location-contact-card:hover .loc-icon {
    background: var(--brand-purple);
    color: #ffffff;
    transform: rotate(10deg);
}

.location-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.loc-address {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    min-height: 50px;
}

.loc-btn {
    border: 1px solid transparent;
}

.loc-btn.call { background: #f5f5f5; color: #1A1A1A; }
.loc-btn.whatsapp { background: #e8f5e9; color: #2e7d32; }
.loc-btn.map { background: #e3f2fd; color: #1565c0; }

/* Contact Form Overhaul */
.contact-form-section {
    padding: 120px 0;
}

.contact-form-container {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
}

.map-embed-container {
    border-radius: 40px;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-embed-container:hover {
    filter: grayscale(0);
}

.submit-btn {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #4A148C 100%);
}

@media (max-width: 1200px) {
    .location-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .contact-hero h1 { font-size: 3rem; }
    .contact-form-container { padding: 40px 20px; }
    .location-grid { grid-template-columns: 1fr; }
}

/* CONTACT US PAGE REFINED */
.contact-hero {
    padding: 120px 0 80px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--brand-purple);
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.1;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 { top: -200px; left: -100px; background: var(--brand-purple); }
.blob-2 { bottom: -200px; right: -100px; background: #FFD700; animation-delay: -5s; }

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

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -3px;
    line-height: 1;
}

.contact-hero h1 span {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-cards-section {
    padding: 100px 0;
    background: #fcfcfc;
}

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

.location-contact-card {
    background: #ffffff;
    padding: 50px 25px;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.location-contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(106, 27, 154, 0.1);
}

.loc-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 27, 154, 0.1);
    color: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    font-size: 1.4rem;
}

.location-contact-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.loc-address {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    min-height: 45px;
}

.loc-phone {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.loc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loc-btn {
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.loc-btn.call { background: #f8f8f8 !important; color: #1A1A1A !important; }
.loc-btn.whatsapp { background: #E8F5E9 !important; color: #2E7D32 !important; }
.loc-btn.map { background: #E3F2FD !important; color: #1565C0 !important; }

.loc-btn:hover {
    filter: brightness(0.95);
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .location-grid { grid-template-columns: 1fr; }
    .location-contact-card { padding: 30px 15px; }
}

.contact-hero {    letter-spacing: -1.5px;
}

.trust-section {
    padding: 120px 0;
    background-color: #ffffff;
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

.trust-section .section-header {
    text-align: left;
    margin-bottom: 70px;
}

.trust-section .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.trust-section .section-header p {
    font-size: 1.25rem;
    color: #666;
}

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

.trust-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.trust-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 50px 100px rgba(106, 27, 154, 0.15);
    border-color: rgba(106, 27, 154, 0.1);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 27, 154, 0.06);
    color: var(--brand-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.trust-card:hover .trust-icon {
    background: var(--brand-purple);
    color: #ffffff;
    transform: rotate(-10deg) scale(1.1);
}

.trust-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.trust-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Trust Grid */
@media (max-width: 1100px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-section .section-header {
        text-align: center;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* TEAM SECTION */
.team-section {
    padding: 120px 0;
    background-color: #ffffff;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}

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

.team-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(106, 27, 154, 0.15);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.team-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.team-content {
    padding: 30px 20px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.team-content p {
    color: var(--brand-purple);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.no-data-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    color: #888;
    background: #f9f9f9;
    border-radius: 20px;
    border: 2px dashed #eee;
}

/* Responsive Team Grid */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-image-wrapper {
        height: 450px;
    }
}

/* GAMES TOP NAV (TABS ABOVE HEADER) */
.games-top-nav {
    padding: 50px 0 20px;
    background-color: #ffffff;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background: #ffffff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* MENU HEADER SPECIFIC STYLES */
.menu-header {
    padding: 100px 0 60px;
    background-color: #F6F3FF;
    position: relative;
    text-align: center;
}

.menu-header .page-header-content {
    margin-bottom: 0;
}

.header-badge {
    display: inline-block;
    background: rgba(106, 27, 154, 0.1);
    color: var(--brand-purple);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(106, 27, 154, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}

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

.menu-header h1 {
    font-size: 5rem;
    background: linear-gradient(135deg, #1A1A1A 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 900;
}

.menu-header p {
    font-size: 1.4rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

/* PAGE HEADER (GENERAL) */
.page-header {
    padding: 60px 0 80px;
    background-color: #F6F3FF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn.active {
    background: var(--brand-purple);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.2);
}

.tab-btn:hover:not(.active) {
    background: rgba(106, 27, 154, 0.05);
    color: var(--brand-purple);
}

/* Tab Panes */
.games-tabs-content-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.game-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(106, 27, 154, 0.15);
}

.game-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    will-change: transform;
}

.game-card:hover .game-img img {
    transform: scale(1.15);
}

/* MENU PAGE STYLES */
.menu-top-nav {
    padding: 50px 0 20px;
    background-color: #ffffff;
}

.menu-tabs-content-section {
    padding: 40px 0 100px;
}

/* ATTRACTIVE MENU STYLES */
.menu-tabs-content-section {
    padding: 60px 0 120px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Blobs */
.menu-tabs-content-section::before,
.menu-tabs-content-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.menu-tabs-content-section::before {
    top: -100px;
    left: -200px;
    background: var(--brand-purple);
}

.menu-tabs-content-section::after {
    bottom: -100px;
    right: -200px;
    background: #FFD700;
}

.menu-glass-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

/* CLEAN 2-COLUMN MENU LAYOUT */
.menu-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 30px;
}

.menu-cat-block {
    margin-bottom: 50px;
}

.cat-title-clean {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #ccc;
}

.menu-items-list-clean {
    display: flex;
    flex-direction: column;
}

.menu-item-clean {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-item-clean:last-child {
    border-bottom: none;
}

.item-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.item-name-clean {
    font-weight: 800;
    font-size: 1.1rem;
    color: #1A1A1A;
    text-transform: uppercase;
    flex: 1;
}

.item-price-clean {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1A1A;
    white-space: nowrap;
    margin-left: 15px;
}

.item-prices-clean {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.price-label {
    color: #666;
    font-weight: 600;
}

.price-val {
    font-weight: 700;
    color: #1A1A1A;
}

.item-desc-clean {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-transform: uppercase;
}



@media (max-width: 991px) {
    .menu-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .menu-clean-tabs-container .unified-loc-tab {
        padding: 15px;
    }
}

.cat-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.cat-title i {
    width: 50px;
    height: 50px;
    background: var(--brand-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.3);
}

.menu-item-row {
    padding: 15px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: default;
    margin: 0 -20px;
}

.menu-item-row:hover {
    background: rgba(106, 27, 154, 0.05);
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1A1A1A;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 2px dashed rgba(0,0,0,0.1);
    margin: 0 15px;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--brand-purple);
}

.item-price.multi {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}

.item-price.multi small {
    background: rgba(106, 27, 154, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
    color: var(--brand-purple);
    font-weight: 800;
    white-space: nowrap;
    font-size: 0.9rem;
}

.item-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .menu-columns {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .menu-glass-container {
        padding: 40px 25px;
    }
}

.no-games {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px;
    background: #f9f9f9;
    border-radius: 30px;
    border: 2px dashed #eee;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Games */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tabs-nav {
        border-radius: 20px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    .game-img {
        height: 300px;
    }
    .tabs-nav {
        border-radius: 15px;
        width: 100%;
    }
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }
}

/* MAIN FOOTER */
.main-footer {
    background-color: #F8F7FF;
    padding: 100px 0 50px;
    position: relative;
    border-radius: 60px 60px 0 0;
    margin-top: -60px; /* Overlap the CTA section slightly */
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-purple);
    margin-bottom: 20px;
}

.brand-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-icon:hover {
    background: var(--brand-purple);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 25px;
}

.footer-links, .footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact-info li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-purple);
}

.footer-contact-info i {
    color: var(--brand-purple);
    width: 20px;
}

.newsletter-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    display: flex;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 45px;
    height: 45px;
    background: var(--brand-purple);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #4a1d7a;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.made-by {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.codekap {
    font-weight: 700;
    color: var(--brand-purple);
}

.footer-bottom-right {
    display: flex;
    gap: 30px;
}

.footer-bottom-right a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--brand-purple);
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 80px 0 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-bottom-right {
        justify-content: center;
        gap: 20px;
    }
}





/* CONTACT FORM & CTA STYLES */
.contact-form-section {
    padding: 100px 0;
    background: #fcfcfc;
}

.contact-flex {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-form-container {
    flex: 1;
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
}

.map-embed-container {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    min-height: 500px;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-embed-container:hover {
    filter: grayscale(0);
}

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

.form-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.premium-form .form-group {
    margin-bottom: 25px;
}

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

.premium-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1A1A1A;
    font-size: 1rem;
}

.premium-form input, 
.premium-form textarea {
    width: 100%;
    padding: 18px 25px;
    border-radius: 15px;
    border: 2px solid #eee;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.premium-form input:focus, 
.premium-form textarea:focus {
    border-color: var(--brand-purple);
    outline: none;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--brand-purple) 0%, #4A148C 100%);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(106, 27, 154, 0.3);
}

/* CTA Section */
.contact-cta-section {
    padding: 0 0 100px;
    background: #fcfcfc;
}

.cta-card {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #4A148C 100%);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(106, 27, 154, 0.3);
}

.cta-card h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-btn.primary { background: #ffffff !important; color: var(--brand-purple) !important; }
.cta-btn.secondary { background: #25D366 !important; color: #ffffff !important; }

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .contact-flex { flex-direction: column; }
    .map-embed-container { min-height: 400px; }
    .premium-form .form-row { grid-template-columns: 1fr; }
    .cta-card h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .cta-actions { flex-direction: column; }
    .cta-btn { width: 100%; justify-content: center; }
}

/* GALLERY PAGE STYLES */
.gallery-hero-slider {
    height: 80vh;
    min-height: 600px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    width: 100%;
    height: 100%;
}

/* =============================================
   GALLERY PAGE - FULL RESPONSIVE STYLES
   ============================================= */

/* --- Hero Slider --- */
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    z-index: 1;
    transform: scale(1.1);
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    color: #ffffff;
}

.slide-overlay h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-top: 15px;
    color: #ffffff;
}

.slide-overlay p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    font-weight: 600;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active, .slider-dot:hover {
    background: #fff;
    transform: scale(1.3);
}

/* --- Gallery Nav (location + category) --- */
.gallery-top-nav {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.gallery-category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.gal-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #f5f5f5;
    border: 2px solid transparent;
    color: #555;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.gal-filter-btn:hover {
    background: rgba(106,27,154,0.07);
    border-color: rgba(106,27,154,0.2);
    color: var(--brand-purple);
}

.gal-filter-btn.active {
    background: var(--brand-purple);
    color: #fff;
    border-color: var(--brand-purple);
    box-shadow: 0 6px 18px rgba(106,27,154,0.25);
}

/* --- Empty Hero (no images) --- */
.gallery-empty-hero {
    padding: 80px 0;
    background: #f9f7ff;
    text-align: center;
}

.empty-gallery-hero-content i {
    font-size: 4rem;
    color: var(--brand-purple);
    opacity: 0.3;
    margin-bottom: 20px;
}

/* --- Gallery Carousel Section --- */
.gallery-carousel-section {
    padding: 80px 0;
    background: #ffffff;
}

.carousel-wrapper {
    overflow-x: auto;
    padding-bottom: 30px;
    cursor: grab;
    scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-wrapper {
    overflow-x: auto;
    padding-bottom: 15px;
    cursor: grab;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.carousel-wrapper::-webkit-scrollbar { display: none; }
.carousel-wrapper.grabbing { cursor: grabbing; }

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.carousel-item {
    flex: 0 0 320px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    pointer-events: none;
}

.carousel-item:hover img { transform: scale(1.08); }

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    gap: 8px;
}

.carousel-item:hover .item-overlay { opacity: 1; }

.carousel-cat-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* --- Gallery Grid --- */
.gallery-grid-section {
    padding: 80px 0 100px;
    background: #fafafa;
}

.gallery-grid-count {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.gallery-grid-count span {
    color: var(--brand-purple);
    font-weight: 800;
    font-size: 1.1rem;
}

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

.gallery-grid-item {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: #e8e8e8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-grid-item.hidden {
    display: none;
}

.grid-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.grid-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(106,27,154,0.6), rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 10px;
}

.grid-overlay i { font-size: 1.6rem; }

.gallery-grid-item:hover .grid-overlay { opacity: 1; }
.gallery-grid-item:hover img { transform: scale(1.1); }

.img-cat {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Empty state */
.gallery-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #aaa;
}

.gallery-empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
    color: var(--brand-purple);
}

.gallery-empty-state h3 { color: #555; font-size: 1.5rem; margin-bottom: 10px; }
.gallery-empty-state p  { max-width: 400px; margin: 0 auto; line-height: 1.7; }

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    display: block;
    max-width: 88vw;
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    z-index: 2;
}

.close-lightbox:hover { background: var(--brand-purple); border-color: var(--brand-purple); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lightbox-nav:hover { background: var(--brand-purple); border-color: var(--brand-purple); }

.lightbox-caption {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== GALLERY RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .carousel-item { flex: 0 0 280px; height: 210px; }
}

@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .slide-overlay h1 { font-size: 2.5rem; }
    .gallery-hero-slider { height: 55vh; min-height: 360px; }
    .carousel-item { flex: 0 0 240px; height: 180px; }
    .gallery-category-filters { gap: 6px; }
    .gal-filter-btn { padding: 9px 16px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-grid-item { border-radius: 12px; }
    .gallery-hero-slider { height: 52vh; min-height: 320px; }
    .slide-overlay h1 { font-size: 1.8rem; }
    .slide-overlay p { font-size: 0.9rem; }
    .gallery-top-nav { padding: 20px 0; position: relative; }
    .gallery-carousel-section { padding: 50px 0; }
    .gallery-grid-section { padding: 50px 0 70px; }
    .carousel-item { flex: 0 0 200px; height: 155px; border-radius: 14px; }
    .lightbox-nav { display: none; }
    .lightbox-content { max-width: 95vw; max-height: 75vh; }
    .close-lightbox { top: 15px; right: 15px; width: 38px; height: 38px; font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .slide-overlay { padding-bottom: 70px; }
    .slide-overlay h1 { font-size: 1.5rem; }
    .gal-filter-btn { padding: 8px 12px; font-size: 0.8rem; }
    .gal-filter-btn i { display: none; }
    .gallery-grid-count { font-size: 0.85rem; }
}

/* Slide overlay text shadow */
.slide-overlay h1 { text-shadow: 0 4px 20px rgba(0,0,0,0.5); }

/* HAPPY MOMENTS GRID (HOME PAGE) */
.happy-moments-wrapper {
    margin-top: 50px;
}

.happy-moments-grid {
    display: flex;
    gap: 20px;
    height: 600px;
    text-decoration: none;
}

.hm-item {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.hm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hm-item:hover img {
    transform: scale(1.05);
}

.hm-large {
    flex: 1.5;
    height: 100%;
}

.hm-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.hm-top-row {
    flex: 1;
    display: flex;
    gap: 20px;
}

.hm-square {
    flex: 1;
}

.hm-small-square {
    flex: 0.8;
}

.hm-landscape {
    flex: 0.8;
}

@media (max-width: 991px) {
    .happy-moments-grid {
        flex-direction: column;
        height: auto;
    }
    .hm-large {
        height: 400px;
    }
    .hm-right-stack {
        height: auto;
    }
    .hm-top-row {
        height: 250px;
    }
    .hm-landscape {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hm-top-row {
        flex-direction: column;
        height: auto;
    }
    .hm-square, .hm-small-square {
        height: 250px;
    }
}


/* FINAL CTA SECTION - PREMIUM REDESIGN */
.final-cta-section {
    padding: 120px 0;
    background: #ffffff;
}

.cta-card {
    position: relative;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #5D2A8E 0%, #3a1c5c 50%, #1a0b2e 100%);
    box-shadow: 0 30px 60px rgba(93, 42, 142, 0.3);
}

.cta-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cta-card h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.cta-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-premium {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-premium.primary {
    background: #ffffff;
    color: var(--brand-purple);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-cta-premium.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    background: #FFD700;
    color: #000;
}

.btn-cta-premium.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-cta-premium.secondary:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cta-card { padding: 60px 20px; }
    .cta-card h2 { font-size: 2.5rem; }
    .cta-card p { font-size: 1.1rem; }
    .btn-cta-premium { width: 100%; justify-content: center; }
}


/* GLOBAL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* SPECIAL BADGE TAG */
.special-badge-tag {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #FF00FF;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 0, 255, 0.3);
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Global Mobile Responsiveness Enhancements */
@media (max-width: 768px) {
    .container {
        padding: 0 15px; /* Reduce padding on mobile */
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
    }
    
    /* Ensure all images inside cards and grids are responsive */
    .feature-card img, .activity-card img, .package-card img, .hm-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Reduce heavy shadows on mobile for performance */
    .feature-card:hover, .activity-card:hover, .package-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px); /* Smaller lift on mobile */
    }
    
    .view-all-btn, .book-now-btn, .popup-cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Final Responsive Fixes */
img { max-width: 100%; height: auto; object-fit: cover; }
.reveal { transition: all 0.3s ease; }
@media (max-width: 768px) { .nav-menu li { margin: 15px 0; } }

/* Unified Location Tabs */
.unified-location-tabs-wrapper { width: 100%; margin-bottom: 30px; padding: 10px 15px; }
.unified-location-tabs-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 0 auto; }
.unified-loc-tab { padding: 12px 28px; background: #fff; color: #333; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; border: 2px solid transparent; white-space: nowrap; }
.unified-loc-tab:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.unified-loc-tab.active { background: var(--primary-color); color: #fff; box-shadow: 0 8px 25px rgba(106, 27, 154, 0.3); }
@media (max-width: 768px) { .unified-location-tabs-container { justify-content: center; gap: 8px; } .unified-loc-tab { font-size: 0.9rem; padding: 10px 18px; } }
@media (max-width: 480px) { .unified-loc-tab { font-size: 0.85rem; padding: 9px 14px; } }

/* About Us Text Focused Layout */
.about-hero.text-focused { padding-top: 120px; padding-bottom: 60px; text-align: center; }
.about-hero-content-wide { max-width: 900px; margin: 0 auto; }
.about-hero-content-wide h1 { font-size: 2.8rem; margin-bottom: 30px; color: var(--primary-color); }
.lead-text { font-size: 1.2rem; line-height: 1.8; color: #555; margin-bottom: 20px; }
.destinations-list { list-style: none; padding: 0; margin: 30px 0 50px 0; text-align: left; }
.destinations-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; line-height: 1.6; background: #fff; padding: 20px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.destinations-list li i { font-size: 1.5rem; margin-top: 5px; }
.text-primary { color: var(--primary-color); }
.about-core-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 50px 0; text-align: left; }
.pillar-box { background: var(--primary-color); color: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(106,27,154,0.15); transition: transform 0.3s ease; }
.pillar-box:hover { transform: translateY(-5px); }
.pillar-box h3 { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 1.5rem; }
.pillar-box p { color: rgba(255,255,255,0.9); line-height: 1.6; font-size: 1.05rem; }
.outro-text { font-size: 1.3rem; color: var(--primary-color); font-weight: 600; margin-top: 40px; padding-top: 30px; border-top: 2px dashed rgba(106,27,154,0.2); }

/* About Us Split Layout */
.about-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.about-story-side h1 { font-size: 3rem; margin-bottom: 25px; line-height: 1.2; }
.about-story-side h1 span { color: var(--primary-color); }
.about-destinations-side { display: flex; flex-direction: column; gap: 20px; }
.destination-card { display: flex; gap: 20px; align-items: flex-start; background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 5px 25px rgba(0,0,0,0.06); transition: transform 0.3s ease; }
.destination-card:hover { transform: translateX(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.dest-icon { font-size: 2rem; color: var(--primary-color); background: rgba(106,27,154,0.1); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.dest-text strong { display: block; font-size: 1.2rem; margin-bottom: 8px; color: var(--heading-color); }
.dest-text p { margin: 0; font-size: 0.95rem; color: #555; line-height: 1.5; }
.outro-text-container { text-align: center; margin-top: 50px; padding: 30px; background: rgba(106,27,154,0.05); border-radius: 20px; }
.outro-text-container .outro-text { margin: 0; border: none; padding: 0; font-style: italic; }
@media (max-width: 991px) { .about-split-grid { grid-template-columns: 1fr; } .destination-card:hover { transform: translateY(-5px); } }

/* CONTACT PAGE STYLES */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.location-contact-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.location-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.loc-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 27, 154, 0.1);
    color: var(--brand-purple);
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.location-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.loc-address {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1; /* Pushes buttons to the bottom */
}

.loc-phone {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #333;
}

.loc-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.loc-btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.loc-btn.call {
    background: var(--brand-purple);
    color: #ffffff;
}

.loc-btn.call:hover {
    background: #3a1c5c;
}

.loc-btn.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.loc-btn.whatsapp:hover {
    background: #1ebc59;
}

/* Fix mobile overflow and stack buttons on Contact page */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-contact-card {
        padding: 25px 20px;
    }

    .loc-actions {
        flex-direction: column; /* Stack vertically */
        gap: 10px; /* Proper spacing */
    }
    
    .loc-btn {
        width: 100%; /* Equal width */
    }
}
