:root {
    /* Color Palette matching KHOI Logo */
    --primary: #fbbd1a; /* KHOI Signature Gold */
    --primary-hover: #e0a307;
    --primary-rgb: 251, 189, 26;
    --secondary: #10b981; /* Emerald/Green */
    --secondary-dark: #047857;
    --accent-red: #ef4444; /* Flame red */
    
    --bg-dark-deep: #060913; /* Rich deep river midnight */
    --bg-dark-base: #0b1120; /* Slate river midnight */
    --bg-dark-light: #162035; /* Card body */
    --bg-glass: rgba(15, 23, 42, 0.65);
    
    --text-white: #f8fafc;
    --text-silver: #e2e8f0;
    --text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Variables */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 28px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.2s ease;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glow-amber: 0 0 20px rgba(245, 158, 11, 0.45);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark-deep);
    color: var(--text-silver);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-quick);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-amber);
}

.btn-outline {
    background: transparent;
    border-color: rgba(245, 158, 11, 0.5);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-glow {
    animation: buttonGlow 3s infinite alternate;
}

@keyframes buttonGlow {
    0% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); }
    100% { box-shadow: 0 0 25px rgba(245, 158, 11, 0.7); }
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-xs {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 6px;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ambient sound panel bar */
.ambient-control-bar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.control-btn {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.control-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}

.control-btn:hover {
    background: var(--bg-dark-light);
    border-color: var(--primary);
    transform: scale(1.15);
}

.control-btn.active {
    background: rgba(251, 189, 26, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

/* Sticky Navigation Header */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    background: rgba(6, 9, 19, 0.2);
    backdrop-filter: blur(0px);
}

#main-nav.scrolled {
    background: rgba(6, 9, 19, 0.95);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Brand Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.khoi-logo-svg {
    display: block;
    height: auto;
    transition: var(--transition-smooth);
}

.logo:hover .khoi-logo-svg {
    transform: scale(1.05);
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-silver);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-quick);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon-wrapper {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-quick);
}

.cart-icon-wrapper:hover {
    background: rgba(245, 158, 11, 0.15);
    color: var(--primary);
    transform: scale(1.05);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: #060913; /* Solid deep river midnight background */
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(11, 17, 32, 0.1), rgba(6, 9, 19, 0.85));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
}

.title-line {
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-silver);
    margin-bottom: 35px;
    max-width: 540px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-quick);
}

.scroll-indicator:hover {
    color: var(--primary);
}

.scroll-indicator i {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Wave Divider SVG */
.wave-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.wave-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-bottom .shape-fill {
    fill: var(--bg-dark-base);
}

/* Scenery Section */
.scenery-section {
    padding: 120px 0 150px;
    background-color: var(--bg-dark-base);
    position: relative;
}

.section-title-wrapper {
    margin-bottom: 70px;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Services Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Scenery Showcase */
.scenery-showcase {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.showcase-img-container {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
}

.showcase-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition-smooth);
}

.scenery-showcase:hover .showcase-main-img {
    transform: scale(1.03);
}

.glass-scenery-card {
    position: relative;
    z-index: 10;
    margin-left: 50px;
    max-width: 440px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.glass-scenery-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glass-scenery-card p {
    font-size: 0.95rem;
    color: var(--text-silver);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Wave Divider Top Dark */
.wave-divider-top-dark {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.wave-divider-top-dark svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-top-dark .shape-fill {
    fill: var(--bg-dark-deep);
}

/* Menu Section */
.menu-section {
    padding: 100px 0 120px;
    background-color: var(--bg-dark-deep);
}

/* Category tabs filtering styling */
.menu-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.menu-tabs {
    background: var(--bg-dark-light);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100%;
    overflow-x: auto;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.tab-btn i {
    width: 16px;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-item {
    background: var(--bg-dark-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.menu-item-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.menu-item-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

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

.menu-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.menu-item-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.menu-item-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.price {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
}

.menu-item-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    display: flex;
    justify-content: flex-end;
}

/* Booking Section */
.booking-section {
    padding: 140px 0 120px;
    background-color: var(--bg-dark-base);
    position: relative;
}

.wave-divider-top-light {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.wave-divider-top-light svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-top-light .shape-fill {
    fill: var(--bg-dark-deep);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.booking-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.booking-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.intro-text {
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Zone Selector Grid */
.input-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-silver);
    margin-bottom: 12px;
    display: block;
}

.zones-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.zone-card {
    background: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.zone-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.badge-orange {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.zone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.zone-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-quick);
}

.zone-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.zone-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-left: 44px;
    margin-bottom: 6px;
}

.zone-status {
    font-size: 0.75rem;
    color: #fb923c;
    font-weight: 600;
    margin-left: 44px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.zone-status i {
    width: 12px;
}

.status-ok {
    color: #4ade80;
}

/* Zone Card Active states */
.zone-card.active {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.zone-card.active::after {
    content: '✓';
    position: absolute;
    bottom: 20px;
    right: 24px;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.zone-card.active .zone-icon {
    background: var(--primary);
    color: #fff;
}

/* Messenger Booking Box */
.messenger-booking-box {
    display: flex;
    gap: 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.msg-box-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3b82f6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msg-box-content h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.msg-box-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.msg-box-content .btn-outline {
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.msg-box-content .btn-outline:hover {
    background: #3b82f6;
    color: #fff;
}

/* Booking Form */
.booking-form-container {
    background: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.booking-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-lead {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    width: 18px;
    pointer-events: none;
}

input, select, textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 48px;
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

textarea {
    padding-left: 16px;
    resize: vertical;
}

select {
    appearance: none;
    cursor: pointer;
}

/* Custom indicator arrow for select */
.input-wrapper::after {
    /* If it is select dropdown we can add marker */
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.btn-glow-orange {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.btn-glow-orange:hover {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* Travel Section */
.travel-section {
    padding: 100px 0 120px;
    background-color: var(--bg-dark-deep);
}

.travel-widget-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 960px;
    margin: 0 auto;
}



/* Map Mock Card styling */
.map-preview-card {
    height: 480px;
    background: #111;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255,255,255,0.05);
}

.mock-map-bg {
    width: 100%;
    height: 100%;
    background-color: #0b0f19;
    position: relative;
}

.map-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-river-shape {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 350px;
    height: 300px;
    background: radial-gradient(circle at 100% 100%, #1e2e4a, #0b182d);
    border-radius: 50%;
    filter: blur(10px);
}

.map-road {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
}

.road-main {
    top: 150px;
    left: 0;
    width: 100%;
    height: 24px;
    transform: rotate(-10deg);
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.road-sub {
    top: 0;
    right: 150px;
    width: 16px;
    height: 100%;
    transform: rotate(20deg);
}

.map-restaurant-pin {
    position: absolute;
    bottom: 140px;
    right: 120px;
    color: var(--primary);
    font-size: 2.5rem;
    animation: pulsePin 2s infinite;
    z-index: 10;
}

@keyframes pulsePin {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(245, 158, 11, 0.7)); }
    70% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(245, 158, 11, 0)); }
}

.map-overlay-details {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 20;
    width: calc(100% - 50px);
}

.map-marker-popup {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.map-marker-popup h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    display: inline-block;
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.map-marker-popup p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    padding-bottom: 60px;
}

.brand-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.opening-hours-card {
    background: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    max-width: 320px;
}

.opening-hours-card h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.opening-hours-card ul {
    list-style: none;
}

.opening-hours-card li {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.footer-links-column h4, .footer-contact-column h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-column h4::after, .footer-contact-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links-column a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item .icon {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.5;
}

.phone-link, .messenger-link {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-white);
}

.phone-link:hover { color: var(--primary); }
.messenger-link:hover { color: #60a5fa; }

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px; /* Premium Squircle / Rounded Square shape */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #121824; /* Solid premium dark background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff; /* Crisp white logo */
}

.social-link svg {
    display: block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Hover States with premium glow and color shifts */
.social-link:hover {
    transform: translateY(-4px);
    color: #ffffff !important;
}

.social-link:hover svg {
    transform: scale(1.08); /* Subtle zoom on hover */
}

.social-link.facebook-social:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-link.messenger-social:hover {
    background: #0084ff;
    border-color: #0084ff;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.4);
}

.social-link.tiktok-social:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000 !important; /* Black icon on white background */
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.social-link.grab-social:hover {
    background: #00b14f;
    border-color: #00b14f;
    box-shadow: 0 8px 20px rgba(0, 177, 79, 0.4);
}

.social-link.shopee-social:hover {
    background: #ee4d2d;
    border-color: #ee4d2d;
    box-shadow: 0 8px 20px rgba(238, 77, 45, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-company-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-company-info p {
    margin-bottom: 6px;
}

.footer-company-info p strong {
    color: var(--text-silver);
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Shopping Cart Sidebar Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-quick);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Cart Sidebar (Glassmorphism) */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    transition: var(--transition-smooth);
    padding: 35px;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.close-cart-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-quick);
}

.close-cart-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.cart-items-container::-webkit-scrollbar {
    width: 4px;
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.empty-cart-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 50px;
}

/* Cart Item layout */
.cart-item {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
    align-items: center;
    position: relative;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price-qty p {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.cart-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
}

.qty-btn:hover {
    background: var(--primary);
}

.cart-qty-val {
    font-size: 0.85rem;
    font-weight: bold;
}

.btn-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-quick);
}

.btn-remove:hover {
    color: var(--accent-red);
}

.cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cart-total-price {
    color: var(--primary);
    font-size: 1.25rem;
}

.cart-note-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.4;
}

.cart-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Modal Booking Overlay */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.booking-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Ticket design (Rustic Premium style) */
.booking-ticket-card {
    background: radial-gradient(circle at 0% 100%, transparent 12px, #182236 13px),
                radial-gradient(circle at 100% 100%, transparent 12px, #182236 13px),
                radial-gradient(circle at 100% 0%, transparent 12px, #182236 13px),
                radial-gradient(circle at 0% 0%, transparent 12px, #182236 13px);
    background-position: bottom left, bottom right, top right, top left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 16px;
    width: 460px;
    max-width: 90%;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 158, 11, 0.15);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.booking-modal-overlay.open .booking-ticket-card {
    transform: scale(1);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.ticket-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.ticket-badge {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    letter-spacing: 1px;
}

.ticket-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 24px;
}

.ticket-qr-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.qr-code {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-pixel {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(#111 25%, transparent 25%),
        radial-gradient(#111 25%, transparent 25%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    opacity: 0.85;
}

.qr-logo {
    position: absolute;
    background: var(--bg-dark-base);
    color: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.qr-logo i {
    width: 14px;
}

.ticket-id {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ticket-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.ticket-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ticket-detail .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.ticket-detail .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.ticket-detail .value.text-highlight {
    color: var(--primary);
}

.ticket-disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 14px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.ticket-disclaimer i {
    width: 12px;
    color: var(--primary);
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.ticket-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.ticket-actions .btn {
    flex: 1;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.7s forwards; }
.fade-in-delayed { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.7s 0.2s forwards; }
.fade-in-delayed-more { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.7s 0.4s forwards; }
.fade-in-delayed-extra { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.7s 0.6s forwards; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .hero h1 { font-size: 3.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .travel-widget-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-container > div:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-book-btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Mobile dropdown */
    .mobile-dropdown-menu.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark-base);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 20px 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .mobile-dropdown-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-dropdown-menu a {
        font-size: 1rem;
        font-weight: 500;
        display: block;
        padding: 8px 0;
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .glass-scenery-card { margin-left: 20px; margin-right: 20px; padding: 25px; }
    .showcase-img-container { height: 420px; }
    
    .menu-tabs { flex-wrap: nowrap; overflow-x: auto; padding: 4px; }
    .menu-grid { grid-template-columns: 1fr; }
    .booking-form-container { padding: 25px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .footer-container { grid-template-columns: 1fr; }
    .footer-container > div:first-child { grid-column: span 1; }
    .footer-bottom-container { flex-direction: column; gap: 15px; text-align: center; }
    
    .cart-sidebar { width: 100%; right: -100%; padding: 20px; }
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.25;
    }
    .hero-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
        padding-top: 0; 
        padding-bottom: 0; 
    }
    .hero-video-showcase { justify-content: center; }
    .hero-video-card { height: 220px; }
}

/* Background Video and Atmosphere Video Grid */
/* Hero Container Split Layout */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1.1;
    max-width: 620px;
}

.hero-video-showcase {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.hero-video-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 260px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid rgba(251, 189, 26, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(251, 189, 26, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), var(--glow-amber);
}

.card-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0.75;
    transition: var(--transition-smooth);
}

.hero-video-card:hover .card-video-preview {
    opacity: 0.95;
}

.card-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 9, 19, 0.8) 0%, rgba(6, 9, 19, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.play-btn-ripple {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: #060913;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(251, 189, 26, 0.4);
    transition: var(--transition-smooth);
    position: relative;
}

.play-btn-ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: ripplePlay 2s infinite;
    box-sizing: border-box;
}

@keyframes ripplePlay {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.hero-video-card:hover .play-btn-ripple {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary);
}

.video-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(6, 9, 19, 0.65);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-quick);
}

.hero-video-card:hover .video-label {
    background: var(--primary);
    color: #060913;
    border-color: var(--primary);
}

/* Video Lightbox Modal */
.video-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    width: 800px;
    max-width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.video-lightbox-overlay.open .lightbox-content {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.close-lightbox:hover {
    color: var(--primary);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.atmosphere-section {
    padding: 100px 0 120px;
    background-color: var(--bg-dark-deep);
    position: relative;
}

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

.atmosphere-card {
    background: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.atmosphere-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 189, 26, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(251, 189, 26, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark-deep);
    z-index: 6;
    transition: var(--transition-smooth);
    opacity: 0.8;
    box-shadow: 0 4px 10px rgba(251, 189, 26, 0.3);
}

.atmosphere-card:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    background: var(--primary);
    box-shadow: 0 6px 15px rgba(251, 189, 26, 0.5);
}

.play-button-overlay svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 2px;
}

.atmosphere-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.video-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

.video-tag {
    background: rgba(6, 9, 19, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(251, 189, 26, 0.3);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-info h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

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

/* --- Delivery & Channels Styling --- */

/* Delivery Promo Bar in Menu Section */
.delivery-promo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(24, 34, 54, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 189, 26, 0.15);
    border-radius: var(--border-radius-md);
    padding: 24px 35px;
    margin-top: 45px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.delivery-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
}

.delivery-info h4 i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.delivery-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.delivery-links {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Delivery buttons styling */
.btn-grab {
    background: #00b14f;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 177, 79, 0.3);
}

.btn-grab:hover {
    background: #009643;
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0, 177, 79, 0.5);
}

.btn-shopee {
    background: #ee4d2d;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 14px rgba(238, 77, 45, 0.3);
}

.btn-shopee:hover {
    background: #d53f20;
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(238, 77, 45, 0.5);
}

/* Cart Sidebar Delivery Section */
.cart-delivery-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.delivery-label-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.cart-delivery-btns {
    display: flex;
    gap: 10px;
}

.btn-delivery {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.grab-btn {
    background: rgba(0, 177, 79, 0.15);
    border: 1px solid rgba(0, 177, 79, 0.3);
    color: #00b14f;
}

.grab-btn:hover {
    background: #00b14f;
    color: #fff;
    border-color: #00b14f;
}

.shopee-btn {
    background: rgba(238, 77, 45, 0.15);
    border: 1px solid rgba(238, 77, 45, 0.3);
    color: #ee4d2d;
}

.shopee-btn:hover {
    background: #ee4d2d;
    color: #fff;
    border-color: #ee4d2d;
}

/* Mobile responsive styles for delivery promo */
@media (max-width: 768px) {
    .delivery-promo-bar {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    .delivery-info h4 {
        justify-content: center;
    }
    
    .delivery-links {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .delivery-links .btn {
        width: 100%;
    }
}

/* Google Maps Iframe Premium Styling */
.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) grayscale(10%) contrast(90%);
    opacity: 0.85;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-lg);
}

.map-iframe:hover {
    opacity: 1;
}

/* Floating Contact Bar (Bottom Right) */
.floating-contact-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(11, 17, 32, 0.85); /* Deep slate glass matching cards */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 10px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(251, 189, 26, 0.1);
    z-index: 999;
    gap: 16px;
    border: 1px solid rgba(251, 189, 26, 0.25); /* Signature gold border accent */
    transition: var(--transition-smooth);
}

.floating-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--transition-quick);
    position: relative;
}

.floating-contact-btn.messenger path {
    fill: #ffffff;
    transition: var(--transition-quick);
}

.floating-contact-btn.messenger:hover path {
    fill: var(--primary); /* Gold Messenger icon on hover */
}

.floating-contact-btn.zalo path {
    fill: #ffffff; /* White speech bubble */
    transition: var(--transition-quick);
}

.floating-contact-btn.zalo text {
    fill: #0b1120; /* Dark slate text color inside white speech bubble */
    transition: var(--transition-quick);
}

.floating-contact-btn.zalo:hover path {
    fill: var(--primary); /* Gold speech bubble on hover */
}

.floating-contact-btn.zalo:hover text {
    fill: #0b1120; /* Maintain text legibility */
}

.floating-contact-btn.phone path {
    fill: #ffffff;
    transition: var(--transition-quick);
}

.floating-contact-btn.phone:hover path {
    fill: var(--primary); /* Gold phone icon on hover */
}

.floating-contact-btn svg {
    width: 28px;
    height: 28px;
    display: block;
}

.floating-contact-btn:hover {
    transform: scale(1.18);
    filter: drop-shadow(0 0 8px rgba(251, 189, 26, 0.6));
}

/* Pulsing effect for phone button - now using signature gold */
.floating-contact-btn.phone::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: contactPulse 2.2s infinite;
    pointer-events: none;
}

@keyframes contactPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-contact-bar {
        bottom: 20px;
        right: 20px;
        padding: 12px 8px;
        gap: 12px;
    }
    
    .floating-contact-btn {
        width: 38px;
        height: 38px;
    }
    
    .floating-contact-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* =========================================================================
   FULL MENU MODAL STYLES (Interactive Glassmorphic Overlay)
   ========================================================================= */
.full-menu-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 13, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.full-menu-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.full-menu-modal-content {
    width: 90%;
    max-width: 1100px;
    height: 85vh;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(251, 189, 26, 0.15);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.full-menu-modal-overlay.open .full-menu-modal-content {
    transform: scale(1);
}

/* Modal Header */
.full-menu-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-title-search {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.header-title-search h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.search-box-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

#menu-search-input {
    width: 100%;
    background: rgba(6, 9, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 10px 15px 10px 42px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

#menu-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(251, 189, 26, 0.2);
}

.close-full-menu {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-quick);
    padding: 0 5px;
}

.close-full-menu:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Modal Body */
.full-menu-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* Sidebar navigation */
.full-menu-sidebar {
    width: 220px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(11, 17, 32, 0.4);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.menu-cat-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-quick);
}

.menu-cat-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.menu-cat-btn.active {
    color: var(--bg-dark-deep);
    background: var(--primary);
    box-shadow: 0 4px 10px rgba(251, 189, 26, 0.2);
}

/* Scrollable items list */
.full-menu-items-list {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
}

/* Modal menu items style */
.modal-menu-item {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-quick);
}

.modal-menu-item:hover {
    border-color: rgba(251, 189, 26, 0.15);
    background: rgba(11, 17, 32, 0.85);
}

.modal-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.modal-item-info {
    flex: 1;
}

.modal-item-info h4 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}

.modal-item-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.modal-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Quantity selector for modal items */
.modal-qty-control {
    display: flex;
    align-items: center;
    background: rgba(6, 9, 19, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3px;
    gap: 10px;
}

.modal-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.modal-qty-btn:hover {
    background: var(--primary);
    color: var(--bg-dark-deep);
}

.modal-qty-val {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    min-width: 14px;
    text-align: center;
}

.modal-btn-add {
    background: var(--primary);
    color: var(--bg-dark-deep);
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-quick);
}

.modal-btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(251, 189, 26, 0.3);
}

/* Modal Footer */
.full-menu-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11, 17, 32, 0.8);
}

.summary-info {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 1.1rem;
}

.total-qty-text {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.total-price-text strong {
    font-size: 1.35rem;
    margin-left: 5px;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    .full-menu-modal-content {
        width: 95%;
        height: 92vh;
    }
    
    .full-menu-header {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }
    
    .header-title-search {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .search-box-wrapper {
        max-width: 100%;
    }
    
    .close-full-menu {
        position: absolute;
        top: 12px;
        right: 15px;
    }
    
    .full-menu-body {
        flex-direction: column;
    }
    
    .full-menu-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: row;
        padding: 10px;
        gap: 10px;
        height: 60px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-shrink: 0;
    }
    
    .menu-cat-btn {
        white-space: nowrap;
        padding: 6px 14px;
        font-size: 0.85rem;
        width: auto;
    }
    
    .full-menu-items-list {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 12px;
    }
    
    .full-menu-footer {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .summary-info {
        width: 100%;
        justify-content: space-between;
        gap: 0;
        font-size: 0.95rem;
    }
    
    .total-price-text strong {
        font-size: 1.15rem;
    }
    
    .modal-actions {
        width: 100%;
    }
    
    .modal-actions button {
        flex: 1;
        font-size: 0.85rem;
        padding: 10px;
    }
}

