/* 
   3 Chillies Indo - Chinese Fusion Restaurant
   Premium Stylesheet (Vanilla CSS)
*/

/* ==========================================
   1. Root variables & Design Tokens
   ========================================== */
:root {
    --bg-primary: #06120e;
    --bg-secondary: #0c221b;
    --bg-tertiary: #040a08;
    --gold: #c5a880;
    /* Warm Gold from logo subtext */
    --gold-hover: #d4b285;
    --gold-rgb: 197, 168, 128;
    --red: #e23c3c;
    /* Chili Red from logo */
    --red-hover: #ff4d4d;
    --red-rgb: 226, 60, 60;
    --whatsapp: #25d366;
    --validation-red: #e23c3c;
    /* Standard validation red */

    --text-primary: #f4f6f5;
    --text-secondary: #a3b0ac;
    --text-muted: #64736f;

    --glass-bg: rgba(12, 34, 27, 0.65);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Urbanist', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

/* ==========================================
   2. Reset & General Options
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar customization for Webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
}

h1 {
    font-size: 80px;
    line-height: 96px;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ==========================================
   3. Utility Classes & Layouts
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Full screen containers for sections, header, and footer with 20px side margins */
#main-header .container,
section:not(.hero-section) .container,
footer .container {
    max-width: 100% !important;
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.py-section {
    padding: 100px 0;
}

.bg-dark-1 {
    background-color: var(--bg-primary);
}

.bg-dark-2 {
    background-color: var(--bg-secondary);
}

.bg-dark-3 {
    background-color: var(--bg-tertiary);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-gold {
    border: 1.5px solid var(--red);
    color: var(--red);
}

.btn-gold:hover {
    background-color: var(--red);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(var(--red-rgb), 0.4);
}

.btn-gold-filled {
    background-color: var(--red);
    color: var(--bg-primary);
    border: 1.5px solid var(--red);
}

.btn-gold-filled:hover {
    background-color: var(--red-hover);
    border-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--red-rgb), 0.4);
}

.btn-outline {
    border: 1.5px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #fff;
    border: 1.5px solid var(--whatsapp);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(var(--gold-rgb), 0.2);
}

/* Standard Section Labels (Sub-Headline) */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    display: none;
}

.text-left .section-title::after {
    display: none;
}

.section-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0 auto 50px;
}

.max-w-600 {
    max-width: 600px;
}

.w-full {
    width: 100%;
}

/* ==========================================
   4. Header & Navigation Menu
   ========================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    padding: 14px 0;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.logo-icon {
    color: #e23c3c;
    font-size: 28px;
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 4px rgba(226, 60, 60, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    line-height: 1.1;
    display: flex;
    align-items: center;
}

.logo-num {
    color: var(--text-primary);
    font-weight: 800;
    margin-right: 4px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--red);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-book-table {
    padding: 10px 20px;
    font-size: 12px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================
   5. Hero Section
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(rgba(4, 10, 8, 0.60), rgba(4, 10, 8, 0.70)),
        url('assets/images/interior-2.jpg') no-repeat center center / cover;
    overflow: hidden;
    padding-top: 140px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(6, 18, 14, 0.2) 0%, rgba(4, 10, 8, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Centered text block */
.hero-text-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 300;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease both;
    letter-spacing: -0.02em;
}

.highlight-text {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 32px;
    max-width: 480px;
    animation: fadeInUp 1.15s ease both;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1.3s ease both;
}

/* Outlined hero CTA button */
.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 4px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================
   Horizontal auto-scrolling arch marquee
   ========================================== */
.hero-arches-row {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    animation: fadeInUp 1.5s ease both;
    /* fade edges for a seamless feel */
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    margin-top: auto;
}

.hero-arches-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: heroScrollX 30s linear infinite;
    padding-bottom: 0;
}

.hero-arches-track:hover {
    animation-play-state: paused;
}

@keyframes heroScrollX {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-arch-card {
    position: relative;
    width: 210px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 120px 120px 16px 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    background: var(--bg-tertiary);
}

.hero-arch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-arch-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.22);
}

.hero-arch-card:hover img {
    transform: scale(1.07);
}

/* Responsive for scrolling strip */
@media (max-width: 992px) {
    .hero-arch-card {
        width: 170px;
        height: 240px;
        border-radius: 90px 90px 12px 12px;
    }
}

@media (max-width: 576px) {
    .hero-arch-card {
        width: 130px;
        height: 185px;
        border-radius: 70px 70px 10px 10px;
    }

    .hero-arches-track {
        gap: 12px;
    }
}


.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 35%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero-container-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-glass-card {
    background: rgba(12, 34, 27, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    width: 100%;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
    animation: fadeInDown 1s ease both;
}

/* .hero-title styled at top */

.highlight-text {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 auto 28px;
    text-align: center;
    max-width: 560px;
    animation: fadeInUp 1.2s ease both;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 1.4s ease both;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator .mouse {
    width: 22px;
    height: 38px;
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

.scroll-indicator .arrow-down {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
}

/* Animations */
@keyframes scrollMouse {
    0% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 15px;
        opacity: 0.2;
    }

    100% {
        top: 6px;
        opacity: 1;
    }
}

@keyframes scrollArrow {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(5px) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.2;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   6. About Us & Our Story
   ========================================== */

/* Centered label row above the heading */
.about-label-row {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 24px;
}

/* Full-width centered heading wrapper */
.about-heading-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

/* Large centered title with inline food images */
.about-main-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

@media (max-width: 1100px) {

    .about-main-title,
    .section-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {

    .about-main-title,
    .section-title {
        font-size: 34px;
    }
}

/* 2-column grid for body content */
.about-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-content {
    padding-right: 10px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    text-align: left;
}

.about-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Inline images in section title */
.inline-heading-img {
    display: inline-block;
    vertical-align: middle;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin: 0 6px;
    position: relative;
    top: -4px;
}

@media (max-width: 768px) {
    .inline-heading-img {
        width: 38px;
        height: 38px;
    }
}

/* 2-column features block */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.about-feature-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.about-feature-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: left;
}

/* Booking request row */
.about-booking-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
    margin-top: 15px;
}

.about-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.booking-phone-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.phone-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.phone-number:hover {
    color: var(--gold-hover);
}

/* Large circular image (right column) */
.about-circle-wrapper {
    position: relative;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(197, 168, 128, 0.35);
    box-shadow: 0 0 0 12px rgba(197, 168, 128, 0.07),
        0 20px 50px rgba(0, 0, 0, 0.6);
    animation: floatCircle 7s ease-in-out infinite alternate;
    flex-shrink: 0;
}

.about-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-circle-wrapper:hover .about-circle-img {
    transform: scale(1.05);
}

@keyframes floatCircle {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-16px);
    }
}

@media (max-width: 1100px) {
    .about-circle-wrapper {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 900px) {
    .about-circle-wrapper {
        width: 300px;
        height: 300px;
    }
}


/* ==========================================
   7. Our Menu Section
   ========================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

/* ==========================================
   7. Sleek Underline Category Tabs & 2-Column Split Layout
   ========================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 35px 0 55px;
}

.menu-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.menu-tab-btn:hover {
    color: var(--gold);
}

.menu-tab-btn.active {
    color: #ffffff;
    border-bottom: 2px solid var(--gold);
}

.menu-tab-separator {
    color: var(--gold);
    font-size: 11px;
    user-select: none;
    opacity: 0.85;
}

.menu-split-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 55px;
    align-items: center;
    text-align: left;
    min-height: 520px;
}

.menu-items-pane {
    display: none;
    width: 100%;
    animation: fadeIn 0.45s ease both;
}

.menu-items-pane.active {
    display: block;
}

.menu-items-grid-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-item-card-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-fast);
}

.menu-item-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.menu-item-card-row:hover .menu-item-thumb {
    transform: scale(1.06) rotate(4deg);
}

.menu-item-details-block {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-item-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-item-header-row .item-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item-badge {
    background: var(--gold);
    color: #0c221b;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.item-dots-spacer {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(197, 168, 128, 0.4);
    margin: 0 16px;
    position: relative;
    top: 3px;
}

.menu-item-header-row .item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-main);
}

.item-description-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.menu-spotlight-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.menu-spotlight-arch-card {
    width: 100%;
    max-width: 440px;
    height: 500px;
    border-radius: 220px 220px 16px 16px;
    overflow: hidden;
    position: relative;
    border: 1.5px solid rgba(197, 168, 128, 0.65);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    background: #0a0b0d;
    margin: 0 auto;
}

.menu-spotlight-arch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-spotlight-arch-card:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .menu-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-spotlight-visual {
        display: none;
    }

    .menu-tab-separator {
        display: none;
    }

    .menu-tabs {
        gap: 16px;
    }
}

/* ==========================================
   8. Popular Special Dishes
   ========================================== */
.specials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    padding: 0 50px;
}

.specials-slider-window {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar */
    scroll-behavior: smooth;
}

.specials-slider-window::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar on Chrome/Safari/Webkit */
}

.specials-slider-track {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.special-oval-card {
    width: 320px;
    height: 520px;
    border-radius: 160px;
    background: rgba(12, 34, 27, 0.4);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.special-oval-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(197, 168, 128, 0.25);
}

.oval-card-img-wrapper {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.special-oval-card:hover .oval-card-img-wrapper {
    transform: scale(1.04) rotate(4deg);
}

.oval-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oval-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.oval-card-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 700;
}

.oval-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.oval-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
    max-width: 90%;
    height: 60px;
    /* fixed size for text alignment */
    overflow: hidden;
}

.oval-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 22px;
    background-color: var(--gold);
    color: var(--bg-primary);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 15px;
    transition: var(--transition-smooth);
}

.oval-card-btn:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--gold-rgb), 0.4);
}

.specials-slider-btn {
    display: none !important;
}

.specials-cta {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .specials-slider-wrapper {
        padding: 0;
        margin: 30px 0;
    }

    .specials-slider-btn {
        display: none;
    }

    .specials-slider-window {
        padding: 10px 16px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
    }

    .specials-slider-track {
        justify-content: flex-start;
        gap: 18px;
    }

    .special-oval-card {
        width: 235px;
        min-width: 235px;
        max-width: 235px;
        height: 435px;
        border-radius: 118px;
        padding: 24px 16px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .special-oval-card .oval-card-img-wrapper {
        width: 145px;
        height: 145px;
        margin-bottom: 18px;
    }

    .special-oval-card .oval-card-title {
        font-size: 19px;
    }

    .special-oval-card .oval-card-desc {
        font-size: 12px;
        line-height: 1.4;
        height: 52px;
    }

    .special-oval-card .oval-card-btn {
        font-size: 11px;
        padding: 6px 16px;
        margin-top: 8px;
    }
}

/* ==========================================
   9. Order Now Banner
   ========================================== */
.order-banner-section {
    position: relative;
    background: linear-gradient(rgba(10, 11, 13, 0.9), rgba(10, 11, 13, 0.85)), url('assets/images/interior-4.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 1;
}

.order-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner-sub {
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-desc {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 35px;
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.delivery-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.delivery-partners span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.partner-logos {
    display: flex;
    gap: 20px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

/* ==========================================
   10. virtual Tour (Street View)
   ========================================== */
.streetview-container {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
}

.streetview-iframe-wrapper {
    position: relative;
    border-radius: calc(var(--border-radius) - 4px);
    overflow: hidden;
    height: 550px;
    background-color: #000;
}

.streetview-iframe-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
}

.streetview-actions {
    padding: 20px 0;
}

/* ==========================================
   11. Photo Gallery (Horizontal Auto-Scrolling Marquee)
   ========================================== */
.gallery-scroll-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    padding: 10px 0 35px;
    /* Soft fade on left and right edges for a seamless infinite feel */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.gallery-scroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: galleryScrollX 38s linear infinite;
    will-change: transform;
}

.gallery-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes galleryScrollX {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-card {
    position: relative;
    width: 310px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    background: var(--bg-tertiary);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 16, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: var(--gold);
    font-size: 36px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75), 0 0 20px rgba(197, 168, 128, 0.3);
    z-index: 5;
}

.gallery-card:hover .instagram-img {
    transform: scale(1.08);
}

.gallery-card:hover .instagram-hover-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-card {
        width: 260px;
        height: 340px;
        border-radius: 16px;
    }

    .gallery-scroll-track {
        gap: 16px;
        animation-duration: 32s;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        width: 220px;
        height: 300px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 7, 9, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 2px solid rgba(var(--gold-rgb), 0.2);
    border-radius: 4px;
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 20px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-secondary);
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

/* ==========================================
/* ==========================================
   12. Customer Reviews & Testimonials
   ========================================== */

.reviews-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(4, 10, 8, 0.78), rgba(4, 10, 8, 0.78)),
        url('assets/images/interior-4.jpg') no-repeat center center / cover;
    overflow: hidden;
}

/* Header */
.reviews-header {
    margin-bottom: 50px;
}

.reviews-header .section-title {
    margin-bottom: 14px;
}

/* Row layout: stat | ✦ | oval | ✦ | stat */
.reviews-row-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    min-height: 380px;
    padding-bottom: 85px;
    /* Room for avatars & name straddling bottom */
}

/* Left / right stat columns */
.review-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    flex-shrink: 0;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
}

.stat-lbl {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: center;
}

/* Gold star separators between stats and oval */
.review-star-separator {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    opacity: 0.75;
}

/* Center oval pill box */
.review-oval-container {
    flex: 1;
    max-width: 620px;
    background: rgba(6, 22, 16, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(197, 168, 128, 0.55);
    border-radius: 220px;
    padding: 56px 54px 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
}

/* Quoted review text inside the pill */
.active-review-pane {
    transition: opacity 0.35s ease, transform 0.35s ease;
    width: 100%;
}

.review-quote-text {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.8;
    color: #e8ede9;
    font-style: italic;
    margin-bottom: 0;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlapping circular avatar photos straddling bottom border */
.reviewer-avatar-triggers {
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.avatar-trigger {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), z-index 0s;
    position: relative;
    z-index: 1;
}

.avatar-trigger:hover {
    z-index: 15;
    transform: translateY(-4px) scale(1.1);
}

/* Circular photo frame */
.avatar-img-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: var(--bg-tertiary);
}

.avatar-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Gold ring + glow on active */
.avatar-trigger.active {
    z-index: 20;
    transform: translateY(-6px);
}

.avatar-trigger.active .avatar-img-circle {
    border-color: var(--gold);
    box-shadow: 0 0 0 3.5px rgba(197, 168, 128, 0.35), 0 10px 25px rgba(0, 0, 0, 0.8);
    width: 76px;
    height: 76px;
}

/* Reviewer name & role below the oval */
.active-reviewer-name-wrapper {
    position: absolute;
    bottom: -72px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    z-index: 5;
}

.active-reviewer-name-wrapper::before,
.active-reviewer-name-wrapper::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(197, 168, 128, 0.45);
}

.active-reviewer-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

#active-role-text {
    position: absolute;
    bottom: -92px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 10.5px;
}

/* Mobile horizontal track hidden on desktop */
.mobile-reviews-track {
    display: none;
}

/* Responsive */
@media (max-width: 950px) {
    .mobile-reviews-track {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 16px 25px;
        scrollbar-width: none;
        margin: 25px 0;
        width: 100%;
    }

    .mobile-reviews-track::-webkit-scrollbar {
        display: none;
    }

    .mobile-review-card {
        width: 245px;
        min-width: 245px;
        max-width: 245px;
        scroll-snap-align: start;
        flex-shrink: 0;
        border-radius: 24px;
        padding: 24px;
        border: 1px solid rgba(197, 168, 128, 0.25);
        background: rgba(12, 34, 27, 0.5);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        gap: 14px;
        text-align: left;
    }

    .mobile-rev-header {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .mobile-rev-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--gold);
        flex-shrink: 0;
    }

    .mobile-rev-name {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
    }

    .mobile-rev-role {
        font-size: 11px;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .mobile-rev-stars {
        color: var(--gold);
        font-size: 14px;
        letter-spacing: 2px;
    }

    .mobile-rev-text {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
        font-style: italic;
        margin: 0;
    }

    .reviews-row-layout {
        flex-wrap: wrap;
        gap: 24px;
        padding-bottom: 40px;
        justify-content: center;
    }

    .review-oval-container {
        display: none;
    }

    .review-star-separator {
        display: none;
    }

    .reviews-header .section-title {
        font-size: 42px;
    }

    .review-stat-col {
        flex: 1 1 40%;
    }
}

@media (max-width: 576px) {
    .stat-num {
        font-size: 40px;
    }

    .reviews-header .section-title {
        font-size: 34px;
    }

    .review-oval-container {
        border-radius: 32px;
        padding: 32px 20px 48px;
    }

    .avatar-img-circle {
        width: 48px;
        height: 48px;
    }

    .avatar-trigger.active .avatar-img-circle {
        width: 64px;
        height: 64px;
    }

    .reviewer-avatar-triggers {
        gap: 4px;
    }
}




.google-badge {
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 15px;
}

.inline-flex {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.google-rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
}

.google-stars {
    color: #fbbc05;
    margin-bottom: 2px;
}

.google-reviews-text {
    color: var(--text-secondary);
}

.reviews-grid-wrapper {
    width: 100%;
}

.testimonial-central-box {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 50px 40px;
    position: relative;
    background: linear-gradient(rgba(6, 18, 14, 0.85), rgba(4, 10, 8, 0.95)), url('assets/images/interior-4.jpg') no-repeat center center/cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.testimonial-stats-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.stat-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.active-review-pane {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-stars-wrapper {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.active-review-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 25px;
    max-width: 680px;
}

.active-reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.active-reviewer-role {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviewer-avatar-triggers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.avatar-trigger {
    cursor: pointer;
    transition: var(--transition-fast);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.av-red {
    background: var(--red);
}

.av-gold {
    background: var(--gold);
    color: var(--bg-primary);
}

.av-white {
    background: #fff;
    color: var(--bg-primary);
}

.avatar-trigger.active .avatar-circle {
    border-color: var(--gold);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
}

@media (max-width: 576px) {
    .testimonial-central-box {
        padding: 30px 20px;
    }

    .active-review-quote {
        font-size: 15px;
    }

    .testimonial-stats-row {
        gap: 15px;
    }

    .stat-number {
        font-size: 22px;
    }
}

/* ==========================================
   13. FAQ (Accordion)
   ========================================== */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 14px;
    color: var(--gold);
    transition: transform var(--transition-fast) ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 15px;
}

/* ==========================================
   14. Google Map & Location Details
   ========================================== */
.map-info-panel {
    padding: 40px;
}

.map-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 20px;
    color: var(--gold);
    background: rgba(197, 168, 128, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 15px;
    color: var(--text-secondary);
}

.hover-underline:hover {
    text-decoration: underline;
    color: var(--gold);
}

.map-iframe-container {
    height: 100%;
    padding: 10px;
}

.map-iframe-container iframe {
    border-radius: calc(var(--border-radius) - 4px);
}

/* ==========================================
   15. Contact Us Form
   ========================================== */
/* ==========================================
   16. Reservation & Flanked Form
   ========================================== */
.booking-flanked-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.centered-form {
    max-width: 680px;
    width: 100%;
    flex-grow: 1;
    padding: 40px;
    background: rgba(12, 34, 27, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
}

.flank-circle {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
    animation: floatCircle 8s ease-in-out infinite alternate;
    z-index: 1;
}

.flank-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-left {
    animation-delay: 0s;
}

.circle-right {
    animation-delay: 2s;
}

@keyframes floatCircle {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-15px) scale(1.02);
    }
}

.highlight-gold-text {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.highlight-gold-text:hover {
    color: var(--gold-hover);
}

.form-panel-title {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.form-panel-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 992px) {
    .booking-flanked-layout {
        flex-direction: column;
        gap: 20px;
    }

    .flank-circle {
        display: none;
    }
}



.form-group {
    margin-bottom: 24px;
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-align: left;
}

.required {
    color: var(--validation-red);
}

.input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    border: 1.5px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0 15px;
    transition: var(--transition-fast);
}

.input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.input-icon {
    color: var(--text-muted);
    margin-right: 12px;
    font-size: 16px;
}

.input-icon.pad-top {
    align-self: flex-start;
    margin-top: 15px;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 14px 0;
    font-family: inherit;
    font-size: 14px;
}

.input-wrapper textarea {
    height: 120px;
    resize: none;
}

.form-row {
    gap: 20px;
}

/* Error validation styling */
.form-group.has-error .input-wrapper {
    border-color: var(--validation-red);
    animation: shake 0.3s ease;
}

.error-msg {
    display: none;
    color: var(--validation-red);
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
}

.form-group.has-error .error-msg {
    display: block;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    75% {
        transform: translateX(6px);
    }
}

.form-success-alert {
    display: none;
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--whatsapp);
    color: var(--whatsapp);
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
}

/* ==========================================
   16. Footer Styles
   ========================================== */
/* ==========================================
   16. Split Luxury Footer (Restoria Style)
   ========================================== */
.footer-split-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    background: #0a0b0d;
}

.footer-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 400px;
    align-items: stretch;
}

.footer-split-photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0b0d;
    padding: 0;
}

.footer-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.8s ease;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.footer-split-photo-wrapper:hover .footer-split-img {
    transform: scale(1.03);
}

.footer-split-content-wrapper {
    background-color: #0b1f18;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(17, 49, 39, 0.88) 0%, rgba(8, 23, 18, 0.95) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80' viewBox='0 0 160 80'%3E%3Cg fill='none' stroke='%231f5642' stroke-width='1.2' stroke-opacity='0.45'%3E%3Cpath d='M0 80 a 80 80 0 0 1 160 0 M0 80 a 64 64 0 0 1 160 0 M0 80 a 48 48 0 0 1 160 0 M0 80 a 32 32 0 0 1 160 0 M0 80 a 16 16 0 0 1 160 0 M-80 80 a 80 80 0 0 1 160 0 M-80 80 a 64 64 0 0 1 160 0 M-80 80 a 48 48 0 0 1 160 0 M-80 80 a 32 32 0 0 1 160 0 M-80 80 a 16 16 0 0 1 160 0 M80 80 a 80 80 0 0 1 160 0 M80 80 a 64 64 0 0 1 160 0 M80 80 a 48 48 0 0 1 160 0 M80 80 a 32 32 0 0 1 160 0 M80 80 a 16 16 0 0 1 160 0 M-40 0 a 80 80 0 0 1 160 0 M-40 0 a 64 64 0 0 1 160 0 M-40 0 a 48 48 0 0 1 160 0 M-40 0 a 32 32 0 0 1 160 0 M-40 0 a 16 16 0 0 1 160 0 M40 0 a 80 80 0 0 1 160 0 M40 0 a 64 64 0 0 1 160 0 M40 0 a 48 48 0 0 1 160 0 M40 0 a 32 32 0 0 1 160 0 M40 0 a 16 16 0 0 1 160 0'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover, 160px 80px;
    background-position: center, 0 0;
    padding: 25px 45px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-split-main-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 460px;
    margin: auto 0;
}

.footer-split-logo {
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-split-badge {
    background: transparent;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.28em;
    padding: 0;
    border: none;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(197, 168, 128, 0.3);
}

.footer-split-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.footer-contact-line {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

.footer-contact-line a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-line a:hover {
    color: var(--gold);
}

.footer-split-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin: 8px 0 12px;
}

.divider-v-line {
    width: 1px;
    height: 12px;
    background: var(--gold);
    opacity: 0.65;
}

.divider-star {
    color: var(--gold);
    font-size: 10px;
    line-height: 1;
}

.footer-newsletter-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 2px;
    font-weight: 700;
}

.newsletter-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    height: 38px;
    transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.newsletter-icon {
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    padding: 0 6px;
    height: 100%;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit-btn {
    background: #e2b46d;
    color: #0c211a;
    border: none;
    padding: 0 24px;
    height: 100%;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit-btn:hover {
    background: #ebd8a0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-split-bottom-bar {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-split-bottom-bar .copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-social-circles {
    display: flex;
    gap: 8px;
}

.footer-social-circles a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-social-circles a:hover {
    background: var(--gold);
    color: #0c221b;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-credits {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-credits a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

.footer-scroll-top {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-scroll-top:hover {
    background: var(--gold);
    color: #0c221b;
    border-color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-split-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .footer-split-photo-wrapper {
        width: 100%;
        height: 300px;
        padding: 0;
    }

    .footer-split-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-split-content-wrapper {
        padding: 30px 20px 20px;
        height: auto;
    }

    .footer-split-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsappPulse 2.5s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.12);
    background-color: #20BD5A;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.65);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 576px) {
    .floating-whatsapp-btn {
        bottom: 22px;
        right: 22px;
        width: 54px;
        height: 54px;
        font-size: 30px;
    }
}

/* ==========================================
   17. Responsive Media Queries
   ========================================== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    /* Reset custom layouts for simpler tablets views */
    .gallery-grid .gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .gallery-grid .gallery-item:nth-child(4) {
        grid-row: span 1;
    }

    .gallery-grid .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .py-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .text-left .section-title::after {
        margin-left: auto;
    }

    .text-left {
        text-align: center;
    }

    .about-media {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Navigation responsive menu */
    .hamburger-menu {
        display: flex;
    }

    #navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        z-index: 1000;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--glass-border);
    }

    #navbar.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
    }

    .nav-link {
        font-size: 18px;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero size adjustments */
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Map layout flip */
    .map-section .grid-2 {
        display: flex;
        flex-direction: column-reverse;
    }

    .map-iframe-container {
        height: 350px;
        width: 100%;
    }

    /* Contact layout adjust */
    .contact-content-info {
        padding-right: 0;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }

    /* Footer layout flip */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .btn-book-table {
        display: none;
        /* Hide in nav for tiny screens to save space */
    }

    .banner-actions {
        flex-direction: column;
        padding: 0 10px;
}

/* ==========================================
   Footer Social Media Circles
   ========================================== */

.footer-social-circles {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.footer-social-circles a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-circles a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-split-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #888888;
}

@media (max-width: 768px) {
    .footer-split-bottom-bar {
        flex-direction: column;
        gap: 15px;
    }
}