html {
    scroll-behavior: smooth;
}

:root {
    /* Core Palette - HSL for granular control */
    --primary-h: 358;
    --primary-s: 85%;
    --primary-l: 52%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-glow: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.5);

    --secondary-h: 230;
    --secondary-s: 15%;
    --secondary-l: 12%;
    --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));

    --accent-h: 38;
    --accent-s: 96%;
    --accent-l: 62%;
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));

    --bg-deep: #050506;
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);

    /* Glassmorphism */
    --glass-bg: rgba(10, 10, 12, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

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

    /* Transitions */
    --ease-out: cubic-bezier(0.2, 0, 0, 1);
    --transition-slow: all 0.7s var(--ease-out);
    --transition-med: all 0.4s var(--ease-out);
    --transition-fast: all 0.2s var(--ease-out);

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 0% 0%, hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.03) 0%, transparent 50%);
}

/* --- Animated Background Elements --- */
.bg-rider-parallax {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    background: url('images/bg-bikes.png') repeat-x bottom;
    background-size: contain;
    animation: bikeScroll 40s linear infinite;
    transform: translateY(-50%);
}

@keyframes bikeScroll {
    from {
        background-position: 0 bottom;
    }

    to {
        background-position: 2627px bottom;
    }
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: var(--transition-medium);
}

header.scrolled {
    background: var(--glass-bg);
    padding: 1.2rem 8%;
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.logo img {
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

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

/* Mobile Toggle Styles */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 4000;
}

.mobile-nav-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: flex !important;
    }

    #nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-deep);
        backdrop-filter: blur(20px);
        display: flex;
        /* Reset from potential desktop block */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-medium);
        z-index: 3000;
        border-left: 1px solid var(--glass-border);
    }

    #nav-container.active {
        right: 0 !important;
    }

    .nav-links {
        flex-direction: column !important;
        text-align: center;
        gap: 3rem;
    }

    .nav-links a {
        font-size: 1.5rem !important;
    }

    .header-cta {
        display: none !important;
    }

    /* Active Animation for Hamburger */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: #000;
    /* Fallback */
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.6;
    /* Cinematic dimming */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    z-index: 3;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary);
    text-shadow: var(--shadow-glow);
    display: inline-block;
    position: relative;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 3.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition-med);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-glow);
    border: none;
}

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

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

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-deep);
    border-color: white;
    transform: translateY(-5px);
}

/* --- Section Global --- */
.section {
    padding: 10rem 5% 5rem;
    scroll-margin-top: 100px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 7rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
}

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

.tab-btn {
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-med);
    font-family: var(--font-heading);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

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

.food-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition-med);
    position: relative;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    transform: translateY(-20px);
    border-color: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.food-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: var(--transition-med);
}

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

.food-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
}

.food-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

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

.price {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

/* --- Branch Section --- */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.branch-card {
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-med);
    border: 1px solid var(--glass-border);
}

.branch-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.branch-img-container {
    overflow: hidden;
    position: relative;
}

.branch-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-deep), transparent);
}

.branch-card:hover img {
    opacity: 0.9;

}

.branch-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.branch-card-content {
    padding: 20px
}

.branch-card-content ul {
    padding: 15px 0 0;
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.branch-card-content a {
    color: #fff;
    text-decoration: none;
}

.branch-info {
    padding: 2.5rem;
}

.branch-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
}

.branch-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Chatbot Elements --- */
#foodie-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    font-family: 'Outfit', sans-serif;
}

.chat-bubble {
    width: 65px;
    height: 65px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-med);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-bubble:hover {
    transform: scale(1.1) translateY(-5px) rotate(5deg);
}

.chat-bubble svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.82);
    transform-origin: bottom right;
    animation: chatOpen 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes chatOpen {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-header {
    background: linear-gradient(90deg, hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.9) 0%, hsla(var(--primary-h), var(--primary-s), 40%, 0.9) 100%);
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.avatar-container {
    position: relative;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.chat-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.chat-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-header-info h4 {
    margin: 0;
    font-weight: 700;
}

.chat-header-info span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 10px;
    margin-top: 4px;
    display: inline-block;
}

.verified-badge {
    background: #0095f6;
    color: white;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: middle;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.typing-indicator {
    padding: 1rem 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: inline-flex;
    gap: 4px;
    align-self: flex-start;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.chat-msg {
    margin-bottom: 1.2rem;
    padding: 1rem 1.4rem;
    border-radius: 15px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: msgIn 0.4s ease-out;
}

.chat-msg.bot {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    background: var(--primary-color);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}

.chat-option {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-weight: 500;
}

.chat-option:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.chat-footer {
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 0.8rem;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.8rem 1.4rem;
    color: white;
    outline: none;
    transition: var(--transition);
}

.chat-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

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

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary);
    z-index: 2001;
    box-shadow: var(--shadow-glow);
    transition: width 0.1s linear;
}

@media (max-width: 992px) {
    header {
        padding: 1.5rem 5%;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 10vw, 5rem);
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
    }

    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }


    .hero-content p {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;

    }

    .section-title {
        margin-bottom: 2rem;
        ;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .menu-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 20px;
        padding: 0.8rem;
        -webkit-overflow-scrolling: touch;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        padding: 0.8rem 1.5rem;
    }

    .deal-card {
        padding: 0;
    }

    .deal-img-wrapper {
        height: 200px;
    }

    .deal-content {
        padding: 2rem;
    }

}

/* --- Branch Specific Pages --- */
.branch-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.branch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-deep) 100%),
        rgba(0, 0, 0, 0.6);
}

.branch-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.branch-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.branch-details-section {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .branch-details-section {
        grid-template-columns: 1fr;
    }
}

.branch-info-wrapper {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.branch-info-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--primary);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.map-container {
    height: 500px;
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;

}

.map-placeholder {
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--bg-deep), #1a1a1a);
    color: var(--text-muted);
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.branch-features {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    text-align: center;
}

.feature-item h4 {
    margin: 1rem 0;
    color: var(--accent);
}

/* --- Phase 5: Content Modernization Components --- */

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.menu-tab {
    padding: 1rem 2.5rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.menu-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.menu-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Deal Cards */
.deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    display: none;
    /* Controlled by JS */
}

.deal-grid.active {
    display: grid;
    animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.menu-section {
    padding: 15px;
    text-align: center;
}

.menu-content {
    margin-bottom: 50px;
}

.menu-section h1 {
    margin-bottom: 50px;
}


.deal-card {
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.deal-img-wrapper {
    height: 270px;
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(235, 28, 36, 0.1), transparent 70%);
}

.deal-img-wrapper img {
    border-radius: 10px;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    transition: var(--transition-medium);
}

.deal-card:hover .deal-img-wrapper img {
    opacity: 0.9;
}

.deal-content {
    padding: 0 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.deal-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--bg-deep);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
}

.deal-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.deal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.deal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.deal-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.deal-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.5rem;
}

/* Luxury Pricing List */
.luxury-pricing-container {
    padding: 6rem 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.pricing-category h4 {
    color: var(--primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.pricing-item:hover {
    color: var(--accent);
}

.pricing-item .price {
    font-weight: 700;
    color: white;
}

/* Gourmet Review Section */
.review-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* --- Phase 8: Legacy Bento Modernization --- */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 2rem;
}

.legacy-card {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-med);
}

.legacy-card-main {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legacy-card-main h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legacy-card-main p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 90%;
}

.legacy-card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.legacy-card-feature.accent-red {
    background: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.05);
    border-color: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.2);
}

.legacy-card-feature.accent-gold {
    background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.05);
    border-color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.2);
}

.legacy-icon-box {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition-med);
}

.legacy-card-feature:hover .legacy-icon-box {
    transform: translateY(-10px) scale(1.1);
    filter: drop-shadow(0 0 20px currentColor);
}

.legacy-card-feature h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: white;
}

.legacy-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- FINAL RESPONSIVE CLEANUP --- */

@media (max-width: 992px) {
    header {
        padding: 1rem 5%;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }

    .bento-grid,
    .presence-grid,
    .pricing-grid,
    .review-bento {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 2rem !important;
    }

    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        padding: 2rem !important;
    }

    .branch-details-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 5%;

    }

    .branch-info-wrapper h2 {
        font-size: 1.8rem !important;
    }


    .deal-img-wrapper img {
        max-height: 160px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .legacy-grid {
        display: block;
    }

    .legacy-card {
        padding: 20px;
        margin: 0 0 15px;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .menu-tabs {
        justify-content: center;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 20px;
        padding: 0.5rem;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        margin: 0 0 20px;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        padding: 0.6rem 0.6rem;
        font-size: 0.70rem;
    }

    .deal-card {
        padding: 0;
    }

    .deal-img-wrapper {
        height: 180px;
    }

    .deal-content {
        padding: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-card:nth-child(even) {
        transform: translateY(0);
    }

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

    /* Branch Responsive Overrides */
    .branch-details-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding-bottom: 4rem !important;
    }

    .branch-hero {
        height: 50vh !important;
    }

    .branch-hero h1 {
        font-size: 2.22rem !important;
    }

    .branch-info-wrapper {
        padding: 2.5rem 1.5rem !important;
        margin: -4rem 0 0 !important;
        border-radius: 25px !important;
    }

    .branch-features {
        grid-template-columns: 1fr !important;
        padding: 4rem 1rem !important;
        gap: 1rem !important;
    }

    .branch-hero-content {
        padding-top: 120px !important;
    }

    .branch-details-section {
        display: block !important;
    }
}

/* --- Branch Pages Core Support --- */
.branch-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -100px;
    /* Account for header */
}

.branch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.4), var(--bg-deep));
}

.branch-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.branch-hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.branch-hero p {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: var(--font-heading);
}

.branch-details-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5% 8rem;
    position: relative;
    z-index: 5;
}

.branch-info-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.branch-info-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    color: var(--text-muted);
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.branch-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 10rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.review-stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.review-user h5 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.review-user .time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Footer Enhancements --- */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    opacity: 0.6;
}

.footer-social-icons a:hover {
    opacity: 1;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transform: scale(1.1);
}

.delivery-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    margin: 2rem auto;
    max-width: 500px;
    line-height: 1.6;
}

.delivery-note a.down {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.delivery-note a.down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition-medium);
}

.delivery-note a.down:hover::after {
    width: 100%;
}

.chat-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
    padding: 0 0.5rem;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-medium);
    font-family: var(--font-body);
}

.category-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.chat-msg.bot {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 5px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.03);
    line-height: 1.6;
    font-size: 0.95rem;
}

.chat-msg.user {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 5px;
    align-self: flex-end;
    box-shadow: 0 5px 15px rgba(var(--primary-h), var(--primary-s), var(--primary-l), 0.2);
}