/* 
   HAVELI RESTAURANT - Design System
   Premium Glassmorphism & Royal Theme
   Built by BeatLabs
*/

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

:root {
    /* Color Palette */
    --bg-dark: #070608;
    --bg-darker: #040305;
    
    /* Royal Gold */
    --primary: #d4af37;
    --primary-light: #f3e5ab;
    --primary-hover: #bda02b;
    --primary-glow: rgba(212, 175, 55, 0.3);
    
    /* Secondary/Accent colors */
    --accent: #ff4757;
    --accent-glow: rgba(255, 71, 87, 0.3);
    --success: #2ed573;
    
    /* Text colors */
    --text-light: #f5f5f7;
    --text-muted: #a1a1a6;
    --text-dark: #121212;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-focus: rgba(212, 175, 55, 0.4);
    --glass-shadow: rgba(0, 0, 0, 0.6);
    --glass-blur: 16px;
    
    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-genie: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Glassmorphism Class */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    border-radius: 16px;
}

/* Live Interactive Backdrop */
.backdrop-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: var(--bg-darker);
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    mix-blend-mode: screen;
    pointer-events: none;
}

.orb-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(212,175,55,0) 70%);
    animation: float-slow 20s infinite ease-in-out;
}

.orb-2 {
    bottom: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8a2be2 0%, rgba(138,43,226,0) 70%);
    animation: float-reverse 25s infinite ease-in-out;
}

.orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(255,71,87,0) 70%);
    animation: float-pulse 15s infinite ease-in-out;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 80px) scale(1.2); }
    66% { transform: translate(-50px, 150px) scale(0.9); }
}

@keyframes float-reverse {
    0%, 100% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(-120px, -100px) scale(0.8); }
}

@keyframes float-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.55; }
}

/* Scroll Interactive Canvas Overlay */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Premium Sticky Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-medium);
}

header.scrolled {
    background: rgba(7, 6, 8, 0.75);
    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);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand svg {
    fill: var(--primary);
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
}

.brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    margin-top: -3px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
    color: var(--text-muted);
}

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

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

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

.nav-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #bda02b 100%);
    color: var(--text-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-medium);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* Mobile Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-medium);
}

/* Page Loading Screen */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    margin-bottom: 20px;
    animation: pulse-glow 2s infinite ease-in-out;
}

.loader-logo svg {
    width: 80px;
    height: 80px;
    fill: var(--primary);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: loading-slide 1.5s infinite linear;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(212,175,55,0.2)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(212,175,55,0.7)); }
}

@keyframes loading-slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-subtitle-badge span {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 30%, var(--primary-light) 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
}

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

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glass {
    position: relative;
    padding: 12px;
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

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

/* Floating Badges in Hero */
.floating-card {
    position: absolute;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: float-badge 6s infinite ease-in-out;
}

.fc-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 3s;
}

.fc-icon {
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.fc-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Headings */
.section {
    padding: 7rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto;
}

/* About / Story Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-img-box {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.about-img-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-box:hover img {
    transform: scale(1.1);
}

.about-img-box.tall {
    grid-row: span 2;
    height: 100%;
}

.about-img-box.tall img {
    height: 100%;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.feat-card {
    padding: 1.5rem;
    text-align: left;
}

.feat-card h4 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-light);
}

.feat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-medium);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

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

.gallery-category {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2px;
}

/* Lightbox Modal (For viewing gallery images zoom) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 15px;
    font-family: 'Cinzel', serif;
}

/* Featured Menu Cards on Home Page */
.menu-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.menu-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.menu-card-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    margin-bottom: 1.2rem;
}

.menu-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.menu-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-card-tag.veg {
    background: rgba(46, 213, 115, 0.15);
    border: 1px solid var(--success);
    color: var(--success);
}

.menu-card-tag.non-veg {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
}

.menu-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cinzel', serif;
}

.menu-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

/* Map & Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
}

.map-wrapper {
    height: 450px;
    padding: 10px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.contact-info-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.contact-item-details p, .contact-item-details a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-item-details a:hover {
    color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-medium);
}

.social-circle:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Floating Genie Lamp Button (FAB) */
.genie-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #bda02b 100%);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 998;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.genie-fab:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.7);
}

.genie-fab svg {
    width: 32px;
    height: 32px;
    fill: var(--text-dark);
}

/* Genie Interactive Modal / Drawer Container */
.genie-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.genie-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.genie-drawer {
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    transform: scale(0.2) translate(100px, 100px);
    opacity: 0;
    transform-origin: bottom right;
    transition: var(--transition-genie), opacity var(--transition-medium);
    border: 1px solid var(--glass-border-focus);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.genie-drawer-overlay.active .genie-drawer {
    transform: scale(1) translate(0, 0);
    opacity: 1;
    border-radius: 24px;
}

.genie-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.genie-drawer-title {
    font-size: 1.6rem;
    color: var(--primary);
}

.genie-drawer-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.genie-drawer-close:hover {
    color: var(--accent);
}

/* Genie Reservation Form */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #bda02b 100%);
    color: var(--text-dark);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Scroll-to-Reveal Animation Classes */
.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-fade {
    /* base opacity 0 */
}

.reveal.reveal-up {
    transform: translateY(40px);
}

.reveal.reveal-scale {
    transform: scale(0.92);
}

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

/* Footer Section */
footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .brand-name {
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 8px;
}

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

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

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

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

.footer-contact-item {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.footer-contact-item span {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-credit a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* MENU PAGE STYLE SPECIFICS */
.menu-page-header {
    padding-top: 150px;
    padding-bottom: 4rem;
    text-align: center;
}

.menu-search-wrapper {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    position: relative;
}

.menu-search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border-radius: 50px;
    font-size: 1rem;
}

.menu-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.menu-tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.menu-tabs-wrapper::-webkit-scrollbar {
    height: 4px;
}

.menu-tabs-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.menu-tabs {
    display: flex;
    gap: 0.8rem;
}

.menu-tab {
    white-space: nowrap;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-medium);
}

.menu-tab.active, .menu-tab:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.menu-sub-section {
    margin-bottom: 4rem;
}

.menu-sub-section-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.menu-list-item {
    padding: 1.2rem;
    display: flex;
    gap: 15px;
    position: relative;
    transition: transform var(--transition-medium);
}

.menu-list-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.menu-item-content {
    flex-grow: 1;
}

.menu-item-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0.3rem;
}

.menu-item-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    height: 1px;
}

.menu-item-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cinzel', serif;
    flex-shrink: 0;
}

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

.menu-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.menu-item-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.menu-item-badge.veg {
    background: rgba(46, 213, 115, 0.1);
    color: var(--success);
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.menu-item-badge.non-veg {
    background: rgba(255, 71, 87, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.menu-item-badge.pcs {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

/* DEVELOPER PAGE STYLE SPECIFICS */
.dev-page-container {
    padding-top: 150px;
    padding-bottom: 7rem;
    min-height: calc(100vh - 120px);
}

.dev-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.dev-subtitle {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dev-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.dev-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 5rem;
    justify-content: center;
}

.dev-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.dev-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.dev-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.dev-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-dark);
}

.dev-name {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.dev-role {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.dev-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

.dev-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dev-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-medium);
}

.dev-social-link:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.dev-tech-stack {
    margin-top: 5rem;
    text-align: center;
}

.dev-tech-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.dev-tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.tech-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tech-badge span {
    color: var(--primary);
}


/* RESPONSIVE DESIGN - MOBILE FIRST */
}

/* New CSS Variables for Zomato & Premium Features */
:root {
    --zomato-red: #cb202d;
    --zomato-red-hover: #a91722;
    --zomato-glow: rgba(203, 32, 45, 0.4);
    --gold-glow-intense: rgba(212, 175, 55, 0.6);
}

/* Pulsing Red Zomato Nav Button */
.nav-btn-zomato {
    background: linear-gradient(135deg, var(--zomato-red) 0%, #a91722 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--zomato-glow);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: button-pulse-zomato 3s infinite ease-in-out;
}

.nav-btn-zomato:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 32, 45, 0.6);
    background: linear-gradient(135deg, #ff3f4f 0%, var(--zomato-red) 100%);
    color: white;
}

@keyframes button-pulse-zomato {
    0%, 100% { box-shadow: 0 4px 15px var(--zomato-glow); }
    50% { box-shadow: 0 4px 25px rgba(203, 32, 45, 0.8); }
}

/* Floating Zomato Order Button (FAB on bottom-left) */
.zomato-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zomato-red) 0%, #a91722 100%);
    color: white;
    box-shadow: 0 10px 30px var(--zomato-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 998;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    animation: float-zomato-fab 6s infinite ease-in-out;
}

.zomato-fab:hover {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(203, 32, 45, 0.7);
}

.zomato-fab svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes float-zomato-fab {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Typing Caret Animation */
.typing-cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary);
    margin-left: 5px;
    animation: caret-blink 0.8s infinite;
}

@keyframes caret-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* 1. Specialties / Why Dine With Us Section */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.spec-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

.spec-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-focus);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

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

.spec-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
    transition: transform var(--transition-medium);
}

.spec-card:hover .spec-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(212, 175, 55, 0.15);
}

.spec-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* 2. Signature Dishes Showcase */
.signature-slider-container {
    margin-top: 1rem;
}

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

.sig-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.sig-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.sig-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sig-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.sig-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(4, 3, 5, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sig-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.95);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.sig-info {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sig-type-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sig-type-tag.veg { color: var(--success); }
.sig-type-tag.non-veg { color: var(--accent); }

.sig-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

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

.sig-order-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sig-card:hover .sig-order-btn {
    border-color: var(--zomato-red);
    background: rgba(203, 32, 45, 0.05);
    color: #ff4d5a;
}

.sig-order-btn:hover {
    background: var(--zomato-red) !important;
    color: white !important;
    border-color: var(--zomato-red) !important;
    box-shadow: 0 4px 15px var(--zomato-glow);
}

/* 3. Zomato Online Delivery Promo Section */
.delivery-promo-card {
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.delivery-promo-card::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 32, 45, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.promo-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.promo-badge {
    background: rgba(203, 32, 45, 0.1);
    border: 1px solid rgba(203, 32, 45, 0.25);
    color: #ff4d5a;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promo-badge span {
    width: 6px;
    height: 6px;
    background-color: #ff2a3b;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff2a3b;
}

.promo-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 40%, #ff6b76 80%, var(--zomato-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.promo-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2.5rem;
}

.high-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.high-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.high-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0;
}

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

.btn-zomato-huge {
    background: linear-gradient(135deg, var(--zomato-red) 0%, #a91722 100%);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--zomato-glow);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-zomato-huge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(203, 32, 45, 0.7);
    background: linear-gradient(135deg, #ff3f4f 0%, var(--zomato-red) 100%);
}

.btn-zomato-huge svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.promo-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-glass-card {
    padding: 15px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    position: relative;
    max-width: 350px;
    width: 100%;
}

.delivery-glass-card img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    filter: brightness(0.9) contrast(1.05);
}

.floating-delivery-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 15px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    animation: float-badge 5s infinite ease-in-out;
}

/* 4. Royal Guest Testimonials Section */
.testimonial-slider {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    padding: 3rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 40px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.08);
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.stars-rating {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 350;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #bda02b 100%);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1.5px solid var(--primary-light);
}

.reviewer-details {
    text-align: left;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

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

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

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

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 0 8px var(--primary);
}

/* 5. Menu Page Sticky Zomato Ribbon Banner */
.zomato-sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(7, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border-focus);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.zomato-sticky-banner.active {
    transform: translateY(0);
}

.sticky-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-banner-icon {
    font-size: 1.8rem;
    animation: bounce-slow 2s infinite ease-in-out;
}

.sticky-banner-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.sticky-banner-text p span {
    color: var(--primary);
    font-weight: 600;
}

.sticky-banner-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0 10px;
}

.sticky-banner-close:hover {
    color: var(--accent);
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Enhanced Scroll Reveal Classes */
.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

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

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
        margin-top: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        order: 2;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        order: 2;
        height: 350px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Specialties & Signature Grid Stacking */
    .specs-grid, .signature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .promo-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .delivery-promo-card {
        padding: 2.5rem 1.8rem;
    }
    
    .floating-delivery-badge {
        bottom: -10px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(4, 3, 5, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 100;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hamburger Active State */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 5rem 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
    
    .genie-drawer {
        padding: 1.8rem;
    }
    
    .dev-title {
        font-size: 2.2rem;
    }

    /* Menu Tabs Alignment */
    .menu-tabs-wrapper {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .sticky-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 12px;
    }
    
    .sticky-banner-text {
        flex-direction: column;
        gap: 6px;
    }
    
    /* FAB Sizing Adjustments for Mobile */
    .genie-fab, .zomato-fab {
        width: 55px;
        height: 55px;
        bottom: 20px;
    }
    .genie-fab { right: 20px; }
    .zomato-fab { left: 20px; }
    
    .genie-fab svg { width: 26px; height: 26px; }
    .zomato-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-btns button, .hero-btns a {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Menu Grid and Items Polishing */
    .menu-list-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-list-item {
        padding: 1rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .menu-item-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 0.5rem;
    }
    
    .menu-item-dots {
        display: none;
    }
    
    .promo-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sig-img-box {
        height: 200px;
    }
    
    .delivery-glass-card {
        max-width: 280px;
    }
}
