/* ==========================================================================
   AQUA GARDEN CAFE - DESIGN SYSTEM & PREMIUM STYLE SHEET
   Theme: Immersive Aquatic Zen (Deep Abyss Blue, Electric Teal, Sandy Pearl)
   ========================================================================== */

/* Design Tokens (Variables) */
:root {
    /* Color Palette */
    --color-bg-dark: #060b19;       /* Abyss Deep Blue */
    --color-bg-card: rgba(11, 19, 43, 0.65); /* Glassmorphic Base */
    --color-primary: #0ea5e9;       /* Electric Aquamarine */
    --color-primary-glow: rgba(14, 165, 233, 0.35);
    --color-secondary: #14b8a6;     /* Calm Zen Teal */
    --color-secondary-glow: rgba(20, 184, 166, 0.25);
    --color-accent: #f59e0b;        /* Coral Orange / Gold Accent */
    --color-light: #f8fafc;         /* White Pearl Text */
    --color-muted: #94a3b8;         /* Sandy Slate Text */
    --color-border: rgba(14, 165, 233, 0.15); /* Soft Aquamarine Border */
    --color-border-hover: rgba(20, 184, 166, 0.4);

    /* Fonts */
/*     --font-heading: 'Fredoka', sans-serif; */
	--font-heading: "Momo Trust Display", sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --glass-blur: blur(16px) saturate(180%);
    --shadow-premium: 0 20px 40px -15px rgba(2, 6, 23, 0.7);
    --shadow-glow: 0 0 20px var(--color-primary-glow);
}

/* Modern CSS Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('https://images.unsplash.com/photo-1551244072-5d12893278ab?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(6, 11, 25, 0.82) 0%, rgba(6, 11, 25, 0.94) 100%);
    pointer-events: none;
}

/* Custom Styled Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: 5px;
    border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* Scroll Progress Line */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Global Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-light);
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(14, 165, 233, 0.2));
}

p {
    color: var(--color-muted);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.8), var(--shadow-glow);
}

/* Button & Link Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.5), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.btn-secondary:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.btn-outline {
    background: transparent;
    color: var(--color-light);
    border: 1px solid rgba(248, 250, 252, 0.2);
}

.btn-outline:hover {
    background: rgba(248, 250, 252, 0.05);
    border-color: var(--color-light);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon-only {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
}

/* Sections Global Structure */
section {
    padding: 100px 0;
    position: relative;
}

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

.sub-title {
    font-family: var(--font-body);
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 16px;
}

/* Sticky Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(6, 11, 25, 0.75);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--color-border);
}

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

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
    transition: var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
    color: var(--color-secondary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--color-light);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: var(--color-muted);
    letter-spacing: 0.3em;
    line-height: 1;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-light);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(6, 11, 25, 0.95);
    backdrop-filter: var(--glass-blur);
    z-index: 999;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    color: var(--color-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.mobile-link:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.mobile-cta-btn {
    margin-top: 32px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 120px;
    background: transparent;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-light);
    font-size: 14px;
    font-weight: 500;
}

.hero-feat-item i {
    color: var(--color-secondary);
    width: 20px;
    height: 20px;
}

/* Hero Visual Box */
.hero-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin-left: auto;
    border-radius: 30px;
    background: url('images/menu_full.jpg') no-repeat center center;
    background-size: cover;
    box-shadow: var(--shadow-premium), 0 0 30px rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.visual-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 11, 25, 0.9) 100%);
    z-index: 1;
}

.hero-glass-card {
    position: relative;
    z-index: 2;
    margin: 20px;
    width: calc(100% - 40px);
    padding: 24px;
    border-radius: 20px;
    background: rgba(6, 11, 25, 0.7);
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.status-dot.pulsing {
    animation: pulse 1.8s infinite;
}

.address-text {
    font-size: 13px;
    margin: 8px 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.address-text i {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.card-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ambient-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

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

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

.wave-separator .shape-fill {
    fill: var(--color-bg-dark);
}

/* Background Bubbles Animation Effect */
.bubble-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(14, 165, 233, 0.05) 70%);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rise 12s infinite linear;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-110vh) scale(1.3) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(20, 184, 166, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
    }
}

/* About Section */
.about-section {
    background-color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.main-decor-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    aspect-ratio: 472 / 1181;
    max-height: 520px;
    width: auto;
    margin: 0 auto;
}

.standee-img-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.main-decor-img:hover .standee-img-preview {
    transform: scale(1.05);
}

.hover-overlay-hint {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 25, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--color-light);
    font-family: var(--font-heading);
    font-weight: 600;
}

.main-decor-img:hover .hover-overlay-hint {
    opacity: 1;
}

.hover-overlay-hint i {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.about-info-box {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(14, 165, 233, 0.04);
    border-color: var(--color-border);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px -10px rgba(2, 6, 23, 0.8), var(--shadow-glow);
}

.feat-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon-wrapper i {
    width: 24px;
    height: 24px;
}

.feat-card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feat-card-content p {
    font-size: 14px;
}

/* Promotional Countdown Banner Section */
.promo-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(14, 165, 233, 0.05) 50%, var(--color-bg-dark) 100%);
}

.promo-main-card {
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.promo-badge-hot {
    position: absolute;
    top: 30px;
    right: -40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ea580c 100%);
    color: var(--color-light);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    padding: 8px 45px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
    letter-spacing: 0.1em;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.promo-sub {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
}

.promo-info h2 {
    font-size: 38px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.promo-intro-text {
    font-size: 16px;
    margin-bottom: 32px;
}

.price-showcase {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.price-old .price-value {
    font-size: 28px;
    text-decoration: line-through;
    color: var(--color-muted);
    font-family: var(--font-heading);
    font-weight: 700;
}

.price-new .price-value {
    font-size: 48px;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.price-arrow {
    color: var(--color-secondary);
}

.price-arrow i {
    width: 32px;
    height: 32px;
}

.promo-include-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    color: var(--color-light);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 32px;
}

.promo-include-tag i {
    color: var(--color-secondary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.promo-conditions h4 {
    font-size: 15px;
    color: var(--color-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-conditions h4 i {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.promo-conditions ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-conditions li {
    font-size: 13.5px;
    color: var(--color-muted);
    position: relative;
    padding-left: 18px;
}

.promo-conditions li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 4px;
    font-size: 16px;
}

/* Countdown Timer Styling */
.promo-timer-box {
    position: relative;
    background: rgba(6, 11, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin-top: 45px; /* Shift the box down a bit on desktop to make more room for the cute couple */
}

/* Cute Swimming Fish Animation Styles (Orange & Blue Pair Chasing) */
.swimming-fish-container {
    position: absolute;
    top: -110px; /* Sits perfectly in the expanded space above the countdown box */
    left: 50%;
    transform: translateX(-50%);
    width: 360px; /* Swim boundary enlarged */
    height: 100px;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

.cute-fish {
    position: absolute;
    transform-origin: center center;
}

.cute-fish.fish-orange {
    width: 100px; /* Increased size (almost double from 60px) */
    height: 60px;
    top: 15px;
    left: 50%;
    animation: fishSwim1 14s infinite linear;
}

.cute-fish.fish-orange svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 122, 0, 0.55)); /* Bright glowing orange */
}

.cute-fish.fish-blue {
    width: 80px; /* Slightly smaller than orange, perfect cute pair */
    height: 48px;
    top: 35px; /* Offset vertically so they swim in parallel paths */
    left: 50%;
    animation: fishSwim2 14s infinite linear;
    animation-delay: -1.2s; /* Chases the orange fish from behind */
}

.cute-fish.fish-blue svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.55)); /* Bright glowing cyan-blue */
}

.cute-fish svg .fish-tail {
    animation: tailWiggle 0.35s infinite ease-in-out alternate;
    transform-origin: 30px 30px;
}

@keyframes fishSwim1 {
    0% {
        transform: translateX(-160px) translateY(0) scaleX(1);
    }
    25% {
        transform: translateX(0) translateY(-8px) scaleX(1);
    }
    48% {
        transform: translateX(160px) translateY(0) scaleX(1);
    }
    50% {
        transform: translateX(160px) translateY(0) scaleX(-1);
    }
    75% {
        transform: translateX(0) translateY(-8px) scaleX(-1);
    }
    98% {
        transform: translateX(-160px) translateY(0) scaleX(-1);
    }
    100% {
        transform: translateX(-160px) translateY(0) scaleX(1);
    }
}

@keyframes fishSwim2 {
    0% {
        transform: translateX(-160px) translateY(12px) scaleX(1);
    }
    25% {
        transform: translateX(0) translateY(4px) scaleX(1);
    }
    48% {
        transform: translateX(160px) translateY(12px) scaleX(1);
    }
    50% {
        transform: translateX(160px) translateY(12px) scaleX(-1);
    }
    75% {
        transform: translateX(0) translateY(4px) scaleX(-1);
    }
    98% {
        transform: translateX(-160px) translateY(12px) scaleX(-1);
    }
    100% {
        transform: translateX(-160px) translateY(12px) scaleX(1);
    }
}

@keyframes tailWiggle {
    0% {
        transform: rotate(-14deg);
    }
    100% {
        transform: rotate(14deg);
    }
}

.promo-timer-box h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--color-light);
}

.duration-date {
    font-size: 13px;
    color: var(--color-secondary);
    margin-bottom: 28px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.timer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 68px;
}

.time-val {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-light);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
    padding: 8px 12px;
    border-radius: 12px;
    width: 100%;
    display: block;
    line-height: 1;
}

.time-lbl {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 8px;
    font-weight: 600;
}

.timer-divider {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 24px;
}

.spots-left-text {
    font-size: 13px;
    color: var(--color-muted);
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.spots-left-text i {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
}

/* Experience / Aquarium Showcase */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.gallery-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
}

/* Custom Aquatic Background Illustrations */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-placeholder i {
    width: 44px;
    height: 44px;
    color: var(--color-light);
    opacity: 0.35;
    z-index: 2;
    transition: var(--transition-bounce);
}

.gallery-card:hover .gallery-placeholder i {
    transform: scale(1.2) rotate(15deg);
    opacity: 0.8;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 11, 25, 0.8) 100%);
    z-index: 1;
}

/* Colorful Gradient Backdrops mimicking water tanks */
.style-1 {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0369a1 100%);
}
.style-2 {
    background: linear-gradient(135deg, #0f172a 0%, #022c22 50%, #0d9488 100%);
}
.style-3 {
    background: linear-gradient(135deg, #0f172a 0%, #172554 50%, #1d4ed8 100%);
}
.style-4 {
    background: linear-gradient(135deg, #0f172a 0%, #311042 50%, #701a75 100%);
}

.gallery-info {
    padding: 24px;
}

.gallery-tag {
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.gallery-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.gallery-info p {
    font-size: 13.5px;
    line-height: 1.5;
}

/* Interactive Filterable Menu Section */
.menu-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.filter-btn i {
    width: 16px;
    height: 16px;
}

.filter-btn:hover {
    color: var(--color-light);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-bg-dark);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* Menu Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
    box-shadow: 0 15px 35px -10px rgba(2, 6, 23, 0.85), 0 0 25px rgba(20, 184, 166, 0.08); /* Soft ambient ocean glow */
    opacity: 1;
    transform: translateY(0);
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.95), 0 0 30px rgba(14, 165, 233, 0.25); /* Glowing ocean hover glow */
}

.product-img-holder {
    position: relative;
    width: 100%;
    aspect-ratio: 6 / 5;
    background-color: #f7f9fa; /* Match menu background */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill to edge, crop details matching cropped original images */
    mix-blend-mode: multiply; /* Blends light background seamlessly */
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-4px);
}

.category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(6, 11, 25, 0.7);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lang-row {
    margin-bottom: 6px;
}

.kr-title {
    font-family: var(--font-heading);
    font-size: 11.5px;
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.product-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 13px;
    color: var(--color-muted);
    font-style: italic;
    margin-bottom: 0; /* Remove margin as footer is hidden */
    flex-grow: 1;
}

.product-footer {
    display: none; /* Hide prices and badges as requested by user */
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-accent);
}

.ticket-included-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    color: var(--color-secondary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.ticket-included-badge i {
    width: 12px;
    height: 12px;
}

.menu-action-box {
    margin-top: 20px;
}

/* Booking Reservation Section */
.booking-section {
    background: radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.05) 0%, transparent 40%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.booking-content-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.booking-content-info p {
    font-size: 16px;
    margin-bottom: 32px;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14.5px;
}

.perk-item i {
    color: var(--color-secondary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-quick-info p {
    font-size: 13.5px;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-bounce);
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.1);
}

.phone-link:hover {
    color: var(--color-secondary);
    transform: scale(1.05);
}

/* Booking Form Elements */
.form-glass-card {
    padding: 40px;
    background: rgba(11, 19, 43, 0.8);
}

.form-glass-card h3 {
    font-size: 22px;
    margin-bottom: 28px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.form-group {
    margin-bottom: 20px;
}

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

label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 8px;
}

label i {
    width: 15px;
    height: 15px;
    color: var(--color-secondary);
}

input, select {
    width: 100%;
    background: rgba(6, 11, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    outline: none;
}

input:focus, select:focus {
    border-color: var(--color-primary);
    background: rgba(6, 11, 25, 0.85);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.2);
}

input::placeholder {
    color: rgba(248, 250, 252, 0.35);
}

/* Map & Contact Info Section */
.contact-section {
    background-color: rgba(2, 6, 23, 0.4);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--color-border);
    background: rgba(14, 165, 233, 0.02);
}

.contact-icon {
    width: 28px;
    height: 28px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 13.5px;
    line-height: 1.5;
}

.map-embed-box {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    min-height: 380px;
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(95%); /* Sleek dark-mode maps filter */
}

/* Reusable Lightbox Viewer Modal */
.modal-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.modal-close-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
    transform: rotate(90deg) scale(1.1);
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-bounce);
}

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

.modal-img-display {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.modal-caption-text {
    margin-top: 16px;
    color: var(--color-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

/* Footer Section */
.main-footer {
    background: #020613;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.footer-info-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-desc {
    font-size: 14px;
    max-width: 320px;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.social-icons a:hover {
    color: var(--color-primary);
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.footer-links-group h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--color-light);
    letter-spacing: 0.05em;
}

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

.footer-links-group a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

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

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
}

.footer-copyright p {
    font-size: 12px;
    color: rgba(248, 250, 252, 0.25);
}

/* Floating contact actions on Mobile */
.floating-contact-triggers {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 998;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(2, 6, 23, 0.6);
    position: relative;
    transition: var(--transition-bounce);
}

.floating-btn i {
    width: 24px;
    height: 24px;
}

.float-phone {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0d9488 100%);
    color: var(--color-light);
}

.float-map {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0284c7 100%);
    color: var(--color-light);
}

.float-booking {
    background: linear-gradient(135deg, var(--color-accent) 0%, #d97706 100%);
    color: var(--color-light);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(2, 6, 23, 0.8), 0 0 20px rgba(255,255,255,0.1);
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(6, 11, 25, 0.9);
    border: 1px solid var(--color-border);
    backdrop-filter: var(--glass-blur);
    color: var(--color-light);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Alert Modals for success notification */
.custom-alert-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.custom-alert-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.custom-alert-overlay.open .custom-alert-box {
    transform: translateY(0);
}

.alert-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid rgba(20, 184, 166, 0.2);
}

.alert-success-icon i {
    width: 36px;
    height: 36px;
}

.custom-alert-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.custom-alert-box p {
    font-size: 14.5px;
    margin-bottom: 28px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 34px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }

    .about-grid, .promo-grid, .booking-grid, .contact-grid {
        gap: 40px;
    }

    .promo-main-card {
        padding: 40px;
    }
}

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

    section {
        padding: 70px 0;
    }

    .main-header {
        padding: 16px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 50px;
    }

    .about-grid, .promo-grid, .booking-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-box {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-info-box {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-card:hover {
        transform: translateY(-4px);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-info-brand {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .section-title {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
        gap: 16px;
    }

    .promo-main-card {
        padding: 30px 20px;
    }

    .promo-info h2 {
        font-size: 28px;
    }

    .price-showcase {
        gap: 16px;
    }

    .price-new .price-value {
        font-size: 36px;
    }

    .countdown-timer {
        gap: 6px;
    }

    .timer-col {
        min-width: 54px;
    }

    .time-val {
        font-size: 24px;
        padding: 6px;
    }

    .timer-divider {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-glass-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .google-map-iframe, .map-embed-box {
        min-height: 280px;
    }

    .floating-contact-triggers {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .floating-btn i {
        width: 20px;
        height: 20px;
    }
}

/* Aquarium Showcase Section Styles */
.aquarium-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-bounce);
}

.aquarium-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.8), var(--shadow-glow);
}

.aquarium-card:hover .aquarium-img {
    transform: scale(1.08);
}
