/* ==========================================================================
   THE URBAN PLATE - PREMIUM STYLING SYSTEM
   Created by Cut & Codee Branding Company
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset & Base Variables
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-deep: #0a0a0a;
    --color-bg-dark: #121212;
    --color-bg-card: #1c1c1e;
    --color-gold-light: #dfc8a5;
    --color-gold: #c5a880;
    --color-gold-dark: #a98e65;
    --color-cream: #f4efdf;
    --color-text-light: #e5e5e5;
    --color-text-muted: #a0a0a0;
    --color-white: #ffffff;
    --color-whatsapp: #25d366;
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Animation Easing */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    /* Spacing & Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-pill: 50px;
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

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

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   2. Typography & Layout Utilities
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 1px;
}

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

.max-width-md {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 7rem 0;
}

.dark-section {
    background-color: var(--color-bg-dark);
}

.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

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

.align-stretch {
    align-items: stretch;
}

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

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.margin-auto { margin-left: auto; margin-right: auto; }

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.title-underline {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.title-underline.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive States
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 1rem 2.2rem;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    border: 1px solid var(--color-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(197, 168, 128, 0.05);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 0.95rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   4. Floating Utilities & Navigation Header
   -------------------------------------------------------------------------- */
/* WhatsApp Floating Widget */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
}

.pulse-ring {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-whatsapp);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: wavePulse 2s infinite ease-out;
    pointer-events: none;
}

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

/* Cart Floating Widget */
.cart-floating-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: var(--color-gold-light);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #b22222;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    border: 2px solid var(--color-bg-deep);
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 990;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
}

.logo-gold {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

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

.nav-cta-btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.6rem 1.4rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    box-shadow: 0 0 12px rgba(197, 168, 128, 0.3);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 2;
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: backgroundSlowZoom 25s infinite alternate ease-in-out;
}

@keyframes backgroundSlowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-label-top {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-cream);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    color: var(--color-gold-light);
    margin-bottom: 2rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-divider .line {
    width: 80px;
    height: 1px;
    background-color: rgba(197, 168, 128, 0.4);
}

.gold-star {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.scroll-down-btn:hover {
    opacity: 1;
    color: var(--color-gold);
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 22px;
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   6. About Section
   -------------------------------------------------------------------------- */
.about-images-wrapper {
    position: relative;
}

.about-img-frame {
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 1.5rem;
    background-color: var(--color-bg-dark);
}

.about-img-frame::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    border-top: 3px solid var(--color-gold);
    border-left: 3px solid var(--color-gold);
}

.about-img-frame::before {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    border-bottom: 3px solid var(--color-gold);
    border-right: 3px solid var(--color-gold);
}

.main-about-img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: var(--color-bg-deep);
    border: 1px solid var(--color-gold);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 250px;
    backdrop-filter: blur(5px);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-cream);
}

.about-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gold-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.5rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   7. Menu Section
   -------------------------------------------------------------------------- */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background-color: transparent;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(197, 168, 128, 0.05);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-card {
    background-color: var(--color-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

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

.menu-card:hover .menu-img {
    transform: scale(1.1);
}

.menu-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
}

.menu-details {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dish-name {
    font-size: 1.4rem;
    line-height: 1.2;
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.dish-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-card-add {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    padding: 0.8rem;
    width: 100%;
    margin-top: auto;
}

.btn-card-add:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    border-color: var(--color-gold);
}

/* Hide animations by default to prevent visual jump, controlled via js and reveals */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="left"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="right"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   8. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-card {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    text-align: center;
}

.why-card:hover {
    background-color: #161619;
    border-color: rgba(197, 168, 128, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transform: translateY(-5px);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    margin: 0 auto 1.8rem auto;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.why-card:hover .why-icon-box {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
}

.why-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. Special Offer Banner
   -------------------------------------------------------------------------- */
.offer-section {
    position: relative;
    padding: 10rem 0;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.offer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    z-index: 1;
}

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

.offer-tag {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--color-gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.offer-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.offer-desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   10. Gallery & Lightbox
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    opacity: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.gallery-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 1.5px;
    font-weight: 500;
}

.gallery-heading {
    font-size: 1.5rem;
}

.gallery-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-text-light);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.lightbox-content-box {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    color: var(--color-cream);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-align: center;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.lightbox-nav-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
}

.lightbox-nav-btn.prev { left: 40px; }
.lightbox-nav-btn.next { right: 40px; }

/* --------------------------------------------------------------------------
   11. Customer Reviews (Testimonials)
   -------------------------------------------------------------------------- */
.reviews-slider-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    padding: 0 1.5rem;
}

.review-card-inner {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.review-card-inner::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 40px;
    font-size: 8rem;
    color: rgba(197, 168, 128, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.stars-row {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-cream);
    margin-bottom: 2.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.author-title {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider-ctrl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-ctrl-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.slider-ctrl-btn.prev { left: 0; }
.slider-ctrl-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background-color: var(--color-gold);
    transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   12. Table Reservation Form
   -------------------------------------------------------------------------- */
.reservation-box-wrapper {
    background-color: rgba(25, 25, 27, 0.65);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.reservation-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 1px;
}

.form-control {
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 1rem 1.2rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a880'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
}

select.form-control option {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

/* Spinner Animation */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-bg-deep);
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Modal Overlay */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal-box {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 550px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.success-check-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem auto;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.success-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.success-paragraph {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.confirm-details-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.confirm-details-card p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.confirm-details-card p:last-child {
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.bold-text {
    font-weight: 600;
}

.success-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   13. Contact & Maps Custom Visual Map
   -------------------------------------------------------------------------- */
.contact-info-panel {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 4rem 3rem;
    border-top-left-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.hover-gold:hover {
    color: var(--color-gold);
}

.social-panel h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
}

.social-icons-row a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.social-icons-row a:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.contact-map-panel {
    background-color: var(--color-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-top-right-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
}

.map-inner-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-map-placeholder {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-map-visual {
    width: 100%;
    height: 100%;
    /* Luxury dark map mockup background */
    background: radial-gradient(circle, #202023 20%, #101012 80%);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.map-overlay-details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background-color: rgba(18, 18, 18, 0.9);
    border: 1px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    width: 80%;
    backdrop-filter: blur(5px);
}

.map-marker-pin {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    animation: pinBounce 1.5s infinite alternate ease-in-out;
}

@keyframes pinBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.map-overlay-details h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.map-overlay-details p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.instagram-feed-widget {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.insta-widget-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-cream);
}

.insta-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.insta-img-box {
    position: relative;
    height: 75px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
}

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

.insta-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(197, 168, 128, 0.85);
    color: var(--color-bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.insta-img-box:hover img {
    transform: scale(1.15);
}

.insta-img-box:hover .insta-hover-overlay {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   14. Sales Demo Pitch Showcase (Cut & Codee Banner)
   -------------------------------------------------------------------------- */
.developer-sales-pitch {
    background: linear-gradient(135deg, #161619 0%, #0d0d0f 100%);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    text-align: center;
}

.sales-backdrop-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(197, 168, 128, 0.03) 1px, transparent 0),
        radial-gradient(rgba(197, 168, 128, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    z-index: 1;
}

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

.sales-tag {
    background-color: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-pill);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.sales-main-heading {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.sales-paragraph {
    color: var(--color-text-light);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.sales-cta-button {
    background-color: var(--color-whatsapp);
    border-color: var(--color-whatsapp);
    color: var(--color-white);
    gap: 0.8rem;
    font-size: 1rem;
    padding: 1.2rem 2.8rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.sales-cta-button:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.sales-meta-text {
    margin-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.c-and-c-info {
    font-size: 0.95rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.c-and-c-subinfo {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   15. Footer Section
   -------------------------------------------------------------------------- */
.footer-wrapper {
    background-color: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 5rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.2fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-about-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-list a i {
    font-size: 0.6rem;
    color: var(--color-gold);
    transition: transform 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--color-gold);
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

.hours-schedule li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hours-schedule li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hours-schedule .day {
    font-weight: 500;
}

.hours-schedule .time {
    color: var(--color-cream);
}

.hours-schedule .special-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.hours-schedule .note-label {
    font-size: 0.8rem;
    color: var(--color-gold);
}

.hours-schedule .note-val {
    font-size: 0.85rem;
    font-weight: 500;
}

.news-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form-ui .input-box-wrapper {
    position: relative;
    display: flex;
}

.news-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 3.5rem 1rem 1.2rem;
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.news-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.06);
}

.news-submit-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.news-submit-btn:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-50%) scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-txt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.developer-tag-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.designer-link {
    color: var(--color-gold);
    font-weight: 500;
}

.designer-link:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   16. Interactive Cart Drawer UI
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
}

.cart-drawer-container {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--color-bg-dark);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer-overlay.active .cart-drawer-container {
    right: 0;
}

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

.cart-drawer-close {
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--color-text-muted);
}

.cart-drawer-close:hover {
    color: var(--color-gold);
}

.cart-drawer-body {
    padding: 2rem;
    flex-grow: 1;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--color-text-muted);
}

.empty-icon {
    font-size: 3.5rem;
    color: rgba(197, 168, 128, 0.15);
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.25rem;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.cart-item-price {
    color: var(--color-gold);
    font-weight: 600;
    margin-left: 1.5rem;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #cc3333;
    cursor: pointer;
    font-size: 0.95rem;
    margin-left: 1rem;
    padding: 0.5rem;
}

.cart-item-remove:hover {
    color: #ff5555;
}

.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--color-bg-deep);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.total-price {
    color: var(--color-gold);
    font-size: 1.4rem;
}

.cart-footer-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* --------------------------------------------------------------------------
   17. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-tagline {
        font-size: 1.8rem;
    }
    .grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4.5rem 0;
    }
    .grid-2col {
        grid-template-columns: 1fr;
    }
    .grid-3col {
        grid-template-columns: 1fr;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* Sticky Navigation Hamburger */
    .hamburger-menu {
        display: block;
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: var(--color-bg-dark);
        width: 100%;
        height: calc(100vh - var(--header-height));
        padding: 3rem 0;
        gap: 2.5rem;
        transition: 0.5s ease;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-cta-li {
        margin-top: 1rem;
    }
    
    /* About statistics badge adjustment */
    .experience-badge {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .main-about-img {
        height: 350px;
    }
    
    .about-images-wrapper {
        margin-bottom: 2rem;
    }
    
    .about-text-wrapper {
        text-align: center;
    }
    
    .about-description {
        text-align: justify;
    }
    
    .title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Form fields stack on mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .reservation-box-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    /* Contact Page split layout adjustment */
    .contact-info-panel {
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        padding: 3rem 1.5rem;
    }
    
    .contact-map-panel {
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        padding: 2rem 1.5rem;
    }
    
    .developer-sales-pitch {
        padding: 4.5rem 1.5rem;
    }
    
    .sales-main-heading {
        font-size: 2.2rem;
    }
    
    .sales-paragraph {
        font-size: 1rem;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .offer-desc {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .review-card-inner {
        padding: 3rem 1.5rem;
    }
    
    .review-text {
        font-size: 1.3rem;
    }
    
    .success-modal-box {
        padding: 2rem 1.5rem;
    }
    
    .success-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-tagline {
        font-size: 1.4rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}
