@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Theme Colors */
    --bg-dark: #FAF4EC;             /* Light Cream / Beige from Logo */
    --bg-dark-secondary: #F0E6D8;   /* Slightly darker cream */
    --bg-card: #FFFFFF;             /* White cards */
    --bg-card-hover: #FDFBF8;
    --text-light: #3A2312;          /* Dark Coffee Brown */
    --text-muted: #7A5C46;          /* Medium Brown */
    --primary: #653520;             /* Rich Brown from Logo Text */
    --primary-hover: #4A2413;
    --primary-glow: rgba(101, 53, 32, 0.3);
    --secondary: #C48B60;           /* Caramel/Light Brown Accent */
    
    /* Food Codes */
    --veg-color: #00875A;     /* Veg Green */
    --nonveg-color: #D32F2F;  /* Non-Veg Red/Brown */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Global Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 153, 51, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 153, 51, 0.03) 0px, transparent 50%);
    background-attachment: fixed;
    padding-bottom: 0;
}

/* Background Dimming Overlay for Mobile Menu Drawer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.menu-open::after {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Preloader Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    animation: text-pulse 1.5s ease-in-out infinite alternate;
}

.preloader-logo-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 3px solid rgba(101, 53, 32, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(101, 53, 32, 0.1);
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary);
    text-shadow: none;
    animation: text-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes text-pulse {
    0% { opacity: 0.5; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #FF8000);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 8px rgba(255, 153, 51, 0.5);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 5;
}

section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Glow Spheres */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}
.glow-1 {
    width: 500px;
    height: 500px;
    background-color: var(--primary);
    top: 5%;
    left: -200px;
    animation: float-slow 25s ease-in-out infinite alternate;
}
.glow-2 {
    width: 400px;
    height: 400px;
    background-color: #ff5500;
    bottom: 15%;
    right: -150px;
    animation: float-slow 18s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.15); }
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--text-light) 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 15px rgba(101, 53, 32, 0.35), 0 0 35px rgba(101, 53, 32, 0.15);
}

/* Neon Sign Flickering Effect on Logo / Header */
.neon-flicker {
    animation: flicker 4s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 4px rgba(255, 153, 51, 0.5), 0 0 10px rgba(255, 153, 51, 0.3);
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(250, 244, 236, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(101, 53, 32, 0.08);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(250, 244, 236, 0.98);
    box-shadow: 0 10px 40px rgba(101, 53, 32, 0.1);
    border-bottom-color: rgba(101, 53, 32, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
    height: 75px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-light);
}

.logo-img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 18px var(--primary);
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.btn-header {
    background: linear-gradient(135deg, var(--primary), #FF8000);
    color: #000;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF8000, #ff5500);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-header:hover::before {
    opacity: 1;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 153, 51, 0.7);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 3px;
}

/* Hamburger Open Animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--primary);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(250, 244, 236, 0.8) 0%, rgba(250, 244, 236, 0.95) 100%),
                url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: left;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(101, 53, 32, 0.1);
    box-shadow: 0 20px 50px rgba(101, 53, 32, 0.1);
}

/* Real-time Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

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

.status-dot.closed {
    background-color: var(--nonveg-color);
    box-shadow: 0 0 8px var(--nonveg-color);
}

.hero-subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

/* Floating Visual Card (Right side of Hero) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Dynamic Tandoor Ember Sparks */
.ember-spark {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 20%, #ff5500 80%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    box-shadow: 0 0 8px var(--primary), 0 0 15px #ff5500;
}

.spark-1 {
    width: 6px;
    height: 6px;
    bottom: 10%;
    left: 15%;
    --drift: -35px;
    animation: rise-and-fade 4.5s infinite ease-in-out;
}
.spark-2 {
    width: 9px;
    height: 9px;
    bottom: 5%;
    right: 15%;
    --drift: 40px;
    animation: rise-and-fade 5.5s infinite ease-in-out 1.2s;
}
.spark-3 {
    width: 5px;
    height: 5px;
    bottom: 8%;
    left: 45%;
    --drift: -20px;
    animation: rise-and-fade 6s infinite ease-in-out 2.5s;
}
.spark-4 {
    width: 8px;
    height: 8px;
    bottom: 2%;
    right: 35%;
    --drift: 25px;
    animation: rise-and-fade 4.8s infinite ease-in-out 1.8s;
}

@keyframes rise-and-fade {
    0% {
        transform: translateY(20px) translateX(0) scale(0.5);
        opacity: 0;
    }
    25% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(-240px) translateX(var(--drift)) scale(1.3);
        opacity: 0;
    }
}

.hero-visual-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 1rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    max-width: 420px;
    transition: var(--transition-smooth);
    animation: breathing-glow 5s ease-in-out infinite alternate;
}

@keyframes breathing-glow {
    0% {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 153, 51, 0.1);
        border-color: rgba(255, 255, 255, 0.06);
    }
    100% {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 153, 51, 0.3);
        border-color: rgba(255, 153, 51, 0.3);
    }
}

.hero-visual-card:hover {
    transform: translateY(-5px) rotate(1deg);
}

.hero-visual-img {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    height: 380px;
}

/* Floating ratings badge inside hero image */
.floating-badge {
    position: absolute;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 12;
}

.badge-top-left {
    top: -1.5rem;
    left: -1.5rem;
    animation: float-badge 6s ease-in-out infinite alternate;
}

.badge-bottom-right {
    bottom: -1.5rem;
    right: -1.5rem;
    animation: float-badge-rev 6s ease-in-out infinite alternate;
}

@keyframes float-badge {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes float-badge-rev {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(8px) rotate(-2deg); }
}

.badge-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.badge-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.1rem;
}

.badge-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shimmer reflection effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 25%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: none;
}

.btn:hover::after {
    left: 140%;
    transition: all 0.75s ease-in-out;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF8000);
    color: #000;
    border: none;
    box-shadow: 0 4px 22px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.75);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Dietary Distinction Ribbon */
.dietary-ribbon {
    background: rgba(240, 230, 216, 0.85);
    border-top: 1px solid rgba(101, 53, 32, 0.08);
    border-bottom: 1px solid rgba(101, 53, 32, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.ribbon-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: var(--transition-smooth);
}

.ribbon-item:hover {
    transform: translateY(-3px);
}

/* Veg / Non-Veg Symbols */
.indicator-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.indicator-box.veg {
    border: 2.5px solid var(--veg-color);
    box-shadow: 0 0 8px rgba(0, 135, 90, 0.2);
}

.indicator-box.veg::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--veg-color);
    box-shadow: 0 0 6px var(--veg-color);
}

.indicator-box.non-veg {
    border: 2.5px solid var(--nonveg-color);
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.2);
}

.indicator-box.non-veg::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--nonveg-color);
    box-shadow: 0 0 6px var(--nonveg-color);
}

.ribbon-item:hover .indicator-box {
    transform: scale(1.1) rotate(10deg);
}

.ribbon-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

/* Trust Badges Section & Perspective tilt effect */
.trust-badges {
    background: var(--bg-dark-secondary);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

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

.trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(101, 53, 32, 0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
    perspective: 1000px;
}

.trust-card:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(4deg);
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(101, 53, 32, 0.1);
}

.trust-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    color: #ff8000;
}

.trust-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.trust-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.section-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), #ff5500);
    margin: 0 auto;
    border-radius: 10px;
}

/* About Us Section */
.about {
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Shimmer Light Sheen Sweeping Effect */
.about-img-wrapper::after,
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 3;
    transition: none;
}

.about-img-wrapper:hover::after,
.gallery-item:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.06);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--primary);
    padding: 1.5rem 1.8rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover .about-badge {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 153, 51, 0.25);
}

.about-badge-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.about-feature-item:hover {
    background: rgba(255, 153, 51, 0.03);
    border-color: rgba(255, 153, 51, 0.1);
    transform: translateY(-2px);
}

.about-feature-icon {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 0.1rem;
}

.about-feature-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

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

/* Interactive Digital Menu */
.menu {
    background: var(--bg-dark-secondary);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), #FF8000);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 5px 20px var(--primary-glow);
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2.2rem;
}

/* Card Styling */
.menu-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition-smooth);
    opacity: 1;
    transform: translateY(0) scale(1);
    position: relative;
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

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

.menu-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--bg-card);
    z-index: 2;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(255, 0, 127, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 3;
}

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

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75), 0 0 20px var(--primary-glow);
}

.menu-card:hover::before {
    opacity: 1;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    padding-right: 1rem;
    transition: var(--transition-smooth);
}

.menu-card:hover .card-title {
    color: var(--primary);
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-top: auto;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-order-item {
    background: rgba(255, 153, 51, 0.08);
    color: var(--primary);
    border: 1px solid rgba(255, 153, 51, 0.15);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-order-item:hover {
    background: linear-gradient(135deg, var(--primary), #FF8000);
    color: #000;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Chef Specials / Highlight Section */
.specials {
    background: var(--bg-card);
}

.specials-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.specials-content h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.specials-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.specials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.special-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(250, 244, 236, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(101, 53, 32, 0.05);
    transition: var(--transition-smooth);
}

.special-item:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    background: rgba(250, 244, 236, 0.9);
}

.special-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.special-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.special-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-dark-secondary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 2.2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 153, 51, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.2rem;
    font-size: 2.5rem;
    color: rgba(255, 153, 51, 0.08);
}

.stars {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.client-details h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.15rem;
}

.client-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Visual Grid / Gallery */
.gallery {
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(101, 53, 32, 0.15);
    border: 1px solid rgba(101, 53, 32, 0.05);
    cursor: pointer;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(101, 53, 32, 0.85) 0%, rgba(101, 53, 32, 0.1) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    transition: var(--transition-smooth);
}

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

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

.gallery-title {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

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

/* Contact & Footer Section */
.contact {
    background: var(--bg-dark-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4.5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.2rem;
}

.detail-item {
    display: flex;
    gap: 1.1rem;
    transition: var(--transition-smooth);
}

.detail-item:hover {
    transform: translateX(4px);
}

.detail-icon {
    font-size: 1.6rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 153, 51, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 153, 51, 0.1);
}

.detail-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.detail-val {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-wrapper {
    width: 100%;
    height: 270px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) contrast(120%);
}

/* Reservation / Connect Form */
.reservation-form {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(101, 53, 32, 0.05);
    height: fit-content;
    box-shadow: 0 20px 40px rgba(101, 53, 32, 0.1);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(250, 244, 236, 0.5);
    border: 1px solid rgba(101, 53, 32, 0.1);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 12px rgba(101, 53, 32, 0.1);
}

textarea.form-control {
    resize: none;
    height: 110px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #FF8000);
    color: #000;
    border: none;
    font-weight: 700;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
    margin-top: 1.25rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 25%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.btn-submit:hover::after {
    left: 140%;
    transition: all 0.75s ease-in-out;
    opacity: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.75);
}

/* Upgraded 4-Column Footer */
footer {
    background: var(--bg-dark-secondary);
    padding: 5rem 0 3rem 0;
    border-top: 1px solid rgba(101, 53, 32, 0.08);
    position: relative;
    z-index: 10;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
    text-align: left;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-link-item a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.footer-hours-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.footer-hours-card i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-hours-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-hours-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.social-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-icon:hover {
    color: var(--primary);
    background: rgba(255, 153, 51, 0.05);
    border-color: rgba(255, 153, 51, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2.2rem;
    left: 2.2rem;
    width: 46px;
    height: 46px;
    background: rgba(250, 244, 236, 0.9);
    border: 1px solid rgba(101, 53, 32, 0.3);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px rgba(101, 53, 32, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(101, 53, 32, 0.2);
}

/* Unified Mobile Bottom Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.action-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.bar-btn-call {
    background: linear-gradient(135deg, var(--primary), #FF8000);
    color: #000;
}

.bar-btn-call:active {
    background: #e67300;
}

.bar-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.bar-btn-whatsapp:active {
    background: #1ebea5;
}

/* Mobile Floating Action Button */
.mobile-fab-container {
    display: none;
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 999;
    flex-direction: column;
    gap: 0.9rem;
}

.fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
    color: #fff;
    font-size: 1.6rem;
}

.fab-call {
    background: linear-gradient(135deg, var(--primary), #FF8000);
    color: #000;
}

.fab-whatsapp {
    background: #25D366;
}

.fab:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}

/* --- Core Scroll Reveal Animation Settings --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Custom keyframes for hero */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Media Queries (Mobile First) --- */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 62px;
    }

    /* Reduce navbar height on mobile to look compact and sleek */
    .nav-wrapper {
        height: 65px;
    }
    header.scrolled .nav-wrapper {
        height: 58px;
    }

    /* Sleek Slide-out Drawer Navigation Panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px; /* Hide completely offscreen */
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background: rgba(250, 244, 236, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-left: 1px solid rgba(101, 53, 32, 0.15);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 3rem 2rem;
        gap: 2.2rem;
        z-index: 1050;
        transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 40px rgba(101, 53, 32, 0.15);
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
    }
    
    /* Drawer Header Title */
    .nav-menu::before {
        content: 'NAVIGATION';
        position: absolute;
        top: 2.2rem;
        left: 2.2rem;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: var(--primary);
        text-shadow: none;
    }

    .nav-menu.open {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .btn-header {
        width: 80%;
        text-align: center;
        padding: 0.8rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-socials {
        justify-content: center;
    }

    /* Hero Split Layout on Mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.6rem;
        text-shadow: none;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-ctas {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }

    .btn {
        width: auto;
        flex: 1;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Stack Visual Card Below Text Content */
    .hero-visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 1.5rem 1rem;
    }

    .hero-visual-card {
        width: 100%;
        max-width: 310px; /* Constrained to perfectly fit smaller screens with badges */
        border-radius: 24px;
        padding: 0.75rem;
        background: rgba(20, 20, 20, 0.75);
        border: 1px solid rgba(255, 153, 51, 0.25);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(255, 153, 51, 0.15);
        animation: breathing-glow 5s ease-in-out infinite alternate;
    }
    
    .hero-visual-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.1 / 1;
        object-fit: cover;
        border-radius: 18px;
    }

    /* Shrink and reposition badges on mobile to prevent viewport overflow */
    .badge-top-left {
        top: -0.85rem;
        left: -0.85rem;
        padding: 0.5rem 0.8rem;
        transform: scale(0.9);
    }

    .badge-bottom-right {
        bottom: -0.85rem;
        right: -0.85rem;
        padding: 0.5rem 0.8rem;
        transform: scale(0.9);
    }

    /* Dietary Ribbon spacing */
    .dietary-ribbon {
        padding: 1.25rem 0;
    }

    .ribbon-container {
        flex-direction: column;
        gap: 0.85rem;
        align-items: flex-start;
        padding-left: 0.5rem;
    }
    
    .ribbon-text {
        font-size: 0.95rem;
    }

    /* Trust cards spacing */
    .trust-card {
        padding: 1.5rem 1.25rem;
    }

    /* Swiggy-style horizontal scrolling menu filters on mobile */
    .menu-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem 1.5rem;
        margin-bottom: 2.2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.6rem;
        width: calc(100% + 3rem);
        margin-left: -1.5rem; /* Break container padding */
    }
    
    .menu-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        flex: 0 0 auto;
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }

    /* Sections Layout */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-img {
        height: 330px;
    }

    /* Stack features vertically to fix squeezed text wrapping */
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .specials-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .special-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .special-img {
        width: 70px;
        height: 70px;
    }
    
    .special-info h4 {
        font-size: 1.05rem;
    }
    
    .special-info p {
        font-size: 0.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    /* Redesigned Centered Premium Footer Dashboard Layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        text-align: center;
    }

    .footer-link-item a {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 0.5rem;
        width: 100%;
        display: block;
        transition: var(--transition-smooth);
    }

    .footer-link-item a:hover {
        border-color: var(--primary);
        background: rgba(255, 153, 51, 0.04);
        transform: translateY(-2px);
    }
    
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        width: 100%;
        align-items: center;
    }
    
    .footer-contact-item {
        display: flex;
        align-items: center;
        text-align: left;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 14px;
        padding: 0.85rem 1.2rem;
        width: 100%;
        max-width: 420px;
        transition: var(--transition-smooth);
        justify-content: flex-start;
    }

    .footer-contact-item:hover {
        border-color: var(--primary);
        background: rgba(255, 153, 51, 0.05);
    }

    .footer-contact-item i {
        font-size: 1.25rem;
        margin-top: 0;
        margin-right: 0.5rem;
    }
    
    /* Modern Hours horizontal card */
    .footer-hours-card {
        background: linear-gradient(135deg, rgba(255, 153, 51, 0.03), rgba(255, 128, 0, 0.03));
        border: 1px dashed rgba(255, 153, 51, 0.3);
        box-shadow: 0 5px 15px rgba(255, 153, 51, 0.05);
        padding: 1.25rem;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-hours-card i {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Mobile Bottom Action Bar displayed */
    .mobile-action-bar {
        display: flex;
        box-sizing: border-box;
    }
    
    .back-to-top {
        bottom: 5.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4.5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 42px;
        width: 42px;
    }
    
    .nav-wrapper {
        height: 60px; /* Reduced to match compact look */
    }
    
    .nav-menu {
        top: 0;
        height: 100vh;
    }
    
    .reservation-form {
        padding: 2rem;
    }
}
