/* -----------------------------------------
   Bhimavaram Ruchulu - Premium CSS System
-------------------------------------------- */

/* Variables & Base Styles */
:root {
    --bg-main: #0A0A0C;
    --bg-card: #121216;
    --bg-card-hover: #181820;
    --primary: #D4AF37; /* Metallic Gold */
    --primary-light: #F3E5AB;
    --primary-dark: #AA7C11;
    --accent: #E5A93B;
    --text-light: #F4F4F6;
    --text-muted: #A1A1AA;
    --glass-bg: rgba(18, 18, 22, 0.7);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-border-hover: rgba(212, 175, 55, 0.4);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-main);
    scroll-padding-top: 90px; /* offset for sticky header */
}

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

/* Scrollbar Customization */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: var(--bg-main);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
    border: 2px solid var(--bg-main);
}

/* Global Typography & Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Specific spacing overrides for adjacent sections with same background */
.catering-section {
    padding-bottom: 30px;
}
.contact-section {
    padding-top: 30px;
}

.section-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #000;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border-hover);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* -----------------------------------------
   Location Selection Overlay
-------------------------------------------- */
.location-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    opacity: 1;
    visibility: visible;
    padding: 24px 16px;
    overflow-y: auto;
}

.location-overlay.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay-content {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 48px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.15);
    animation: modalFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Location Overlay Floating Food Background */
.overlay-floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.floating-item img.floating-food-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.15; /* Elegant transparency for luxury dark overlay background integration */
    filter: brightness(0.65) contrast(1.1) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
}

.floating-item.item-1 {
    width: 200px;
    height: 200px;
    top: 12%;
    left: 4%;
    animation: drift-slow-1 30s ease-in-out infinite alternate;
}

.floating-item.item-2 {
    width: 180px;
    height: 180px;
    bottom: 12%;
    right: 4%;
    animation: drift-slow-2 35s ease-in-out infinite alternate;
}

.floating-item.item-3 {
    width: 190px;
    height: 190px;
    bottom: 15%;
    left: 6%;
    animation: drift-slow-3 28s ease-in-out infinite alternate;
}

.floating-item.item-4 {
    width: 170px;
    height: 170px;
    top: 10%;
    right: 6%;
    animation: drift-slow-4 40s ease-in-out infinite alternate;
}

@keyframes drift-slow-1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(30px, 40px) rotate(45deg) scale(1.05);
    }
    100% {
        transform: translate(-10px, 80px) rotate(90deg) scale(0.95);
    }
}

@keyframes drift-slow-2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.05);
    }
    50% {
        transform: translate(-30px, -40px) rotate(-60deg) scale(0.95);
    }
    100% {
        transform: translate(10px, -80px) rotate(-120deg) scale(1);
    }
}

@keyframes drift-slow-3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.95);
    }
    50% {
        transform: translate(40px, -30px) rotate(30deg) scale(1.05);
    }
    100% {
        transform: translate(80px, -10px) rotate(60deg) scale(1);
    }
}

@keyframes drift-slow-4 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-40px, 30px) rotate(-45deg) scale(1.1);
    }
    100% {
        transform: translate(-80px, 10px) rotate(-90deg) scale(0.9);
    }
}

@media (max-width: 1024px) {
    .overlay-floating-bg {
        display: none !important;
    }
}

.overlay-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.overlay-logo-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: #121216;
    display: block;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.overlay-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.overlay-brand-title {
    color: #F4F4F6;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.overlay-brand-subtitle {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

.branch-closed-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #FF4D4D;
    background: transparent;
    padding: 6px 14px;
    border-radius: 6px;
    margin-top: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    overflow: hidden;
    z-index: 1;
}

.branch-closed-badge::before {
    content: '';
    position: absolute;
    width: 250%;
    height: 250%;
    background: conic-gradient(
        transparent 50%,
        #FF3008 85%,
        #FF3008 100%
    );
    top: -75%;
    left: -75%;
    z-index: -2;
    animation: rotateBorder 4s linear infinite;
}

.branch-closed-badge::after {
    content: '';
    position: absolute;
    inset: 1.5px; /* Border thickness */
    border-radius: 5px;
    z-index: -1;
    background: #0A0A0C; /* Dark luxury matching core backdrop */
}

@media (max-width: 480px) {
    .overlay-brand {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 20px;
    }
    .overlay-brand-text {
        align-items: center;
        text-align: center;
    }
    .overlay-brand-title {
        font-size: 22px;
    }
    .overlay-brand-subtitle {
        font-size: 10px;
    }
}

.overlay-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-light);
}

.overlay-content p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.branch-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.branch-card {
    position: relative;
    border-radius: 16px;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.branch-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(1.5) contrast(1.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.branch-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 20%, rgba(10, 10, 12, 0.0) 100%);
    transition: var(--transition-smooth);
}

.branch-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.branch-card:hover .card-bg {
    transform: scale(1.08);
    filter: brightness(1.3) contrast(1.05);
}

.branch-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(10, 10, 12, 0.95) 25%, rgba(10, 10, 12, 0.0) 100%);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 36px;
    text-align: left;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.branch-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.card-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.card-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-select {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-quick);
}

.btn-select::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.branch-card:hover .btn-select {
    color: var(--text-light);
}

.branch-card:hover .btn-select::after {
    transform: translateX(5px);
}

/* -----------------------------------------
   Header & Navigation
-------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 8px 0;
    background-color: rgba(6, 6, 8, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

/* Header Logo Section styling matching image */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    background-color: #121216;
    display: block;
    transition: transform var(--transition-quick), box-shadow var(--transition-quick);
}

.logo-wrapper:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: #F4F4F6;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-subtext {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-emblem {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, #252528 20%, #121216 100%);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.logo-letters {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.logo-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-light);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin: 1px 0;
}

.logo-cuisine {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 36px;
    margin-left: auto;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-quick);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions-clean {
    display: flex;
    align-items: center;
    margin-left: 24px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* -----------------------------------------
   Hero Carousel
-------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

/* Active slide Zoom Effect (Ken Burns) */
.hero-slide.active .slide-bg {
    animation: kenburns 15s ease-out forwards;
}

@keyframes kenburns {
    0% {
        transform: scale(1.02) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-1%, -1%);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.4) -10%, rgba(10, 10, 12, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    margin-top: 60px;
}

.slide-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(30px);
}

.slide-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
}

.slide-actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(35px);
}

/* Active Slide Contents Entrance */
.hero-slide.active .slide-badge {
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-slide.active .slide-title {
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.hero-slide.active .slide-description {
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.hero-slide.active .slide-actions {
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 5;
    display: flex;
    gap: 12px;
}

.indicator-dot {
    width: 32px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-quick);
}

.indicator-dot.active {
    background-color: var(--primary);
    width: 48px;
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator .scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

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

/* -----------------------------------------
   Promo Highlights Bar
-------------------------------------------- */
.promo-bar {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--glass-border);
    padding: 36px 0;
    position: relative;
    z-index: 4;
}

.promo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-icon {
    font-size: 36px;
}

.promo-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.promo-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* -----------------------------------------
   Menu Section & Cards
-------------------------------------------- */
.menu-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    fill: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-quick);
}

.search-box input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 16px 20px 16px 50px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-quick);
}

.search-box input:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.search-box input:focus + .search-icon {
    fill: var(--primary);
}

.filter-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-quick);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.filter-btn.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Menu Grid & Food Card UI */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.menu-grid.fade-out {
    opacity: 0;
}

.food-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.food-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.card-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.food-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 34px;
}

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

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.spice-rating {
    display: flex;
    gap: 3px;
}

.spice-icon {
    font-size: 14px;
    opacity: 0.3;
}

.spice-icon.active {
    opacity: 1;
}

.card-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-quick);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-btn svg {
    fill: currentColor;
    transition: transform 0.3s;
}

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

.card-btn:hover svg {
    transform: translateX(4px);
}

/* -----------------------------------------
   Food Detail Modal
-------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background-color: rgba(6, 6, 8, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    overflow-y: auto;
    padding: 24px 10px;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.open .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: var(--transition-quick);
}

.close-modal:hover {
    background: var(--primary);
    color: #000;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
}

.modal-image-container {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-branch-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 4px;
}

.modal-details {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.modal-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.modal-spice {
    display: flex;
    gap: 4px;
    align-items: center;
}

.modal-spice span {
    font-size: 12px;
    color: var(--text-muted);
    margin-right: 8px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.modal-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
}

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

.spec-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.spec-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.modal-action-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.availability-notice {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

/* -----------------------------------------
   About Us Section (Parallax Background)
-------------------------------------------- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_seafood.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 1;
}

.about-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 6, 8, 0.95) 40%, rgba(6, 6, 8, 0.8) 100%);
    z-index: 2;
}

.about-container {
    position: relative;
    z-index: 3;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 44px);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.experience-card {
    position: relative;
    width: 280px;
    height: 280px;
    background: rgba(18, 18, 22, 0.8);
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    z-index: 2;
}

.experience-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.exp-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 8px;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--text-light);
    line-height: 1;
}

.exp-years {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* -----------------------------------------
   Testimonials Section
-------------------------------------------- */
.testimonials-section {
    background-color: #0D0D11;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 96px;
    color: rgba(212, 175, 55, 0.1);
    line-height: 0.3;
    margin-top: 40px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3.5vw, 24px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 36px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.slider-btn svg {
    fill: currentColor;
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

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

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* -----------------------------------------
   Booking & Contact Section
-------------------------------------------- */
.contact-section {
    background-color: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

/* Booking Form styling */
.booking-form {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 16px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.04);
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-light);
}

.success-message {
    margin-top: 20px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    color: #2ecc71;
    padding: 16px;
    border-radius: 8px;
    font-size: 13px;
    display: none;
    text-align: center;
}

/* Branch Detail Card & Maps styling */
.branch-detail-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.branch-timings-list {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.branch-timings-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
    gap: 16px;
}

.branch-timings-list li span:last-child {
    color: var(--text-light);
    text-align: right;
}

.branch-timings-list li span.closed {
    color: #C20017;
    font-weight: 700;
}

.detail-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.status-indicator {
    font-size: 11px;
    font-weight: 700;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
}

.detail-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 20px;
    color: var(--primary);
    line-height: 1;
}

.info-row p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Custom premium map frame styling */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 220px;
    width: 100%;
    /* Luxury CSS Map Filter to match Dark Gold Branding */
    filter: grayscale(1) invert(0.92) sepia(0.2) saturate(1.5) hue-rotate(330deg);
    transition: var(--transition-smooth);
}

.map-container:hover {
    filter: grayscale(0.5) invert(0) sepia(0) saturate(1);
    border-color: var(--primary);
}

/* -----------------------------------------
   Footer Section
-------------------------------------------- */
.main-footer {
    background-color: #060608;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.footer-info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-info-row .info-icon {
    color: var(--primary);
}

.footer-location-control {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.btn-switch-location {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    transition: var(--transition-quick);
}

.btn-switch-location:hover {
    color: var(--text-light);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

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

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-quick);
}

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

.footer-hours {
    list-style: none;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    gap: 16px;
}

.footer-hours li span:last-child {
    color: var(--text-light);
    text-align: right;
}

.footer-hours li span.closed {
    color: #C20017;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition-quick);
}

.bottom-links a:hover {
    color: var(--primary);
}

/* -----------------------------------------
   Scroll Trigger Animations (Observer)
-------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* -----------------------------------------
   Order Online Section & Phone Mockup
-------------------------------------------- */
.order-online-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, #0d0d12 100%);
    overflow: hidden;
    padding: 60px 0 100px 0;
}

.order-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start; /* Align columns to the top starting point */
}

.order-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Start content from top */
    height: 585px; /* Equal height to smartphone mockup */
    padding-top: 15px; /* Align tagline exactly with top of phone frame */
    padding-right: 40px;
}

.delivery-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
    max-width: 320px;
    width: 100%;
}

.btn-delivery {
    color: #fff;
    border-radius: 50px;
    padding: 15px 32px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    z-index: 1;
}

/* Conic gradient border travelling effect */
.btn-delivery::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 350%;
    background: conic-gradient(
        transparent 50%,
        var(--border-glow-color, var(--primary)) 85%,
        var(--border-glow-color, var(--primary)) 100%
    );
    top: -125%;
    left: -25%;
    z-index: -2;
    animation: rotateBorder 3s linear infinite;
}

/* Inner overlay (creates the border gap and solid back color) */
.btn-delivery::after {
    content: '';
    position: absolute;
    inset: 1.5px; /* Border thickness */
    border-radius: 50px;
    z-index: -1;
    transition: background 0.3s ease;
}

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

/* Brand specific configurations for travelling border */
.btn-delivery.btn-ubereats {
    --border-glow-color: #06C167;
    box-shadow: 0 4px 15px rgba(6, 193, 103, 0.15);
}

.btn-delivery.btn-ubereats::after {
    background: linear-gradient(135deg, #100b0c 0%, #061e13 100%);
}

.btn-delivery.btn-ubereats:hover {
    color: #000 !important;
    box-shadow: 0 10px 25px rgba(6, 193, 103, 0.45), 0 0 10px rgba(6, 193, 103, 0.25);
    transform: translateY(-4px) scale(1.02);
}

.btn-delivery.btn-ubereats:hover::after {
    background: #06C167;
}

.btn-delivery.btn-grubhub {
    --border-glow-color: #F6343F;
    box-shadow: 0 4px 15px rgba(246, 52, 63, 0.15);
}

.btn-delivery.btn-grubhub::after {
    background: linear-gradient(135deg, #100b0c 0%, #220b0c 100%);
}

.btn-delivery.btn-grubhub:hover {
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(246, 52, 63, 0.45), 0 0 10px rgba(246, 52, 63, 0.25);
    transform: translateY(-4px) scale(1.02);
}

.btn-delivery.btn-grubhub:hover::after {
    background: #F6343F;
}

.btn-delivery.btn-doordash {
    --border-glow-color: #FF3008;
    box-shadow: 0 4px 15px rgba(255, 48, 8, 0.15);
}

.btn-delivery.btn-doordash::after {
    background: linear-gradient(135deg, #100b0c 0%, #250b0c 100%);
}

.btn-delivery.btn-doordash:hover {
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(255, 48, 8, 0.45), 0 0 10px rgba(255, 48, 8, 0.25);
    transform: translateY(-4px) scale(1.02);
}

.btn-delivery.btn-doordash:hover::after {
    background: #FF3008;
}

.phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 620px;
}

/* Background blob accents */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.blob-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(194, 0, 23, 0.4) 0%, rgba(194, 0, 23, 0) 70%);
    top: 15%;
    left: 20%;
    animation: floatBlob 8s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
    bottom: 15%;
    right: 15%;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

/* 3D Angled Phone mockup */
.smartphone {
    width: 290px;
    height: 585px;
    border-radius: 40px;
    border: 12px solid #1E1E22;
    background: #121216;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.8), 
                -5px 10px 20px rgba(0, 0, 0, 0.4), 
                inset 0 0 10px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform: rotate(-6deg) skew(2deg);
    animation: floatPhone 6s ease-in-out infinite;
}

/* Phone screen dark layout */
.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0A0A0C;
    color: var(--text-light);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Speaker notch */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    background: #1E1E22;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 5;
}

/* App Header Brand style inside the phone screen */
.app-header-brand {
    padding: 26px 20px 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #121216;
    border-bottom: 1px solid var(--glass-border);
}

.app-header-brand .logo-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary);
    display: block;
}

.app-brand-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-brand-text {
    color: #F4F4F6;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.app-brand-subtext {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1px;
    line-height: 1;
}

/* App Video Container taking full remaining space */
.app-video-container {
    flex-grow: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.app-video-overlay {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.btn-app-order {
    background: var(--primary);
    color: #000 !important;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition-quick);
    border: 1px solid var(--primary);
}

.btn-app-order:hover {
    background: transparent;
    color: var(--primary) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.app-video-container .phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.app-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 16px;
    height: 10px;
}

.app-hamburger span {
    width: 100%;
    height: 2px;
    background-color: #222;
    border-radius: 1px;
}

.app-body {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-food-img-wrapper {
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-food-img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: rotateFood 25s linear infinite;
}

@keyframes rotateFood {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.discount-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #C20017;
    color: #fff;
    font-weight: 800;
    font-size: 9px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 30px;
}

.app-food-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #000;
    margin-top: 4px;
}

.app-food-sub {
    font-size: 9px;
    font-weight: 700;
    color: #C20017;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.app-food-desc {
    font-size: 9px;
    color: #6c757d;
    line-height: 1.4;
    text-align: center;
}

.app-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 6px;
}

.app-btn {
    border-radius: 30px;
    padding: 8px 10px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s;
}

.btn-shop {
    background: #C20017;
    color: #fff;
}

.btn-shop:hover {
    background: #9E0012;
}

.btn-learn {
    background: #121216;
    color: #fff;
}

.btn-learn:hover {
    background: #25252b;
}

/* Floating leaves animations */
.leaf {
    position: absolute;
    font-size: 26px;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
}

.leaf-1 {
    top: 20%;
    right: 15%;
    animation: driftLeaf 6s ease-in-out infinite;
}

.leaf-2 {
    bottom: 25%;
    left: 10%;
    animation: driftLeaf 8s ease-in-out infinite alternate;
}

.leaf-3 {
    top: 65%;
    right: 8%;
    animation: driftLeaf 5s ease-in-out infinite 1s;
}

/* Animations */
@keyframes floatPhone {
    0% {
        transform: rotate(-6deg) skew(2deg) translateY(0px);
    }
    50% {
        transform: rotate(-4deg) skew(1deg) translateY(-15px);
    }
    100% {
        transform: rotate(-6deg) skew(2deg) translateY(0px);
    }
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-15px, 15px) scale(1.08);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes driftLeaf {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(20deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* -----------------------------------------
   Menu Pagination Controls
-------------------------------------------- */
.menu-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 50px auto 0 auto !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.pagination-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-quick);
    user-select: none;
    text-decoration: none;
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.pagination-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: var(--text-muted);
    font-weight: 600;
    width: 30px;
    text-align: center;
    user-select: none;
}

.pagination-arrow {
    padding: 0 18px;
    border-radius: 30px;
    width: auto;
    gap: 8px;
}

.pagination-arrow svg {
    fill: currentColor;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pagination-arrow.prev-btn:hover svg {
    transform: translateX(-4px);
}

.pagination-arrow.next-btn:hover svg {
    transform: translateX(4px);
}

/* -----------------------------------------
   Location Dropdown Switcher (Header)
-------------------------------------------- */
.location-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.location-dropbtn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-quick);
}

.location-dropbtn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
}

.location-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 8px;
    background-color: var(--bg-card);
    min-width: 170px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    z-index: 1001;
    overflow: hidden;
}

.location-dropdown-content.show {
    display: block;
    animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-dropdown-content a {
    color: var(--text-muted);
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-quick);
}

.location-dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--primary);
}

/* -----------------------------------------
   Catering Section Checkboxes & Error States
-------------------------------------------- */
.checkbox-group-container {
    margin-bottom: 24px;
}

.checkbox-group-container > label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--glass-border-hover);
    border-radius: 4px;
    background: transparent;
    display: inline-block;
    position: relative;
    transition: var(--transition-quick);
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Form Error Validation States */
.form-error-msg {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.form-group.has-error input {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.03) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1) !important;
}

.form-group.has-error .form-error-msg {
    display: block;
    animation: shakeError 0.3s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Adjustments on mobile viewports for header dropdown */
@media (max-width: 768px) {
    .location-dropdown {
        margin-right: 12px;
    }
    
    .location-dropbtn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Styling for Native Calendar & Time Inputs and Phone Video */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(100%);
    cursor: pointer;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -----------------------------------------
   Responsive Media Queries
-------------------------------------------- */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .catering-section {
        padding-bottom: 20px;
    }

    .contact-section {
        padding-top: 20px;
    }

    .main-footer {
        padding: 60px 0 0 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .catering-section {
        padding-bottom: 15px;
    }

    .contact-section {
        padding-top: 15px;
    }

    .main-footer {
        padding: 50px 0 0 0;
    }

    /* Responsive Menu Header */
    .main-nav {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-header.scrolled .main-nav {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-actions {
        margin-right: 48px;
    }

    .btn-reserve {
        display: none; /* Hide on mobile header to save space */
    }

    /* Modal Grid Stack */
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-image-container {
        height: 250px;
        min-height: auto;
    }

    .modal-details {
        padding: 30px;
    }

    /* Layout tweaks */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .carousel-indicators {
        right: 50%;
        transform: translateX(50%);
    }

    /* Location Overlay responsive tweaks */
    .location-overlay {
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .overlay-content {
        padding: 30px 16px;
        margin: auto 0;
    }
    .branch-cards {
        gap: 16px;
    }
    .branch-card {
        height: 260px;
    }
    .card-info {
        padding: 20px;
    }
    .card-info p {
        margin-bottom: 12px;
    }

    /* Modal layout responsive tweaks */
    .modal {
        align-items: flex-start;
    }
    .modal-content {
        margin-top: 20px;
        margin-bottom: 20px;
        max-height: none;
        width: 95%;
    }

    /* Form & Cards Padding adjustments */
    .booking-form {
        padding: 30px 16px;
    }
    .branch-detail-card {
        padding: 24px 16px;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .modal-spec-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    /* Order Online responsive tweaks */
    .order-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .order-text {
        height: auto;
        padding-right: 0;
    }
    .delivery-buttons {
        margin: 32px auto 0 auto;
    }
    .phone-container {
        min-height: 500px;
    }
    .smartphone {
        width: 260px;
        height: 520px;
        transform: none !important; /* Reset 3D rotation on mobile */
        animation: floatPhoneMobile 6s ease-in-out infinite !important; /* Safe mobile animation */
        margin: 0 auto;
        border-width: 8px; /* Thinner bezel on mobile */
        border-radius: 36px;
    }

    /* Center Footer Content on Mobile */
    .main-footer {
        text-align: center;
    }
    .brand-col {
        align-items: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-info-row {
        justify-content: center;
        text-align: center;
    }
    .footer-location-control {
        align-items: center;
    }
    .footer-links-list {
        align-items: center;
    }
    .footer-hours li {
        justify-content: space-between;
        max-width: 320px;
        margin: 0 auto 12px auto;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom-content {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .bottom-links {
        justify-content: center;
    }

    /* Hide redundant scroll mouse down indicator on touch viewports */
    .scroll-indicator {
        display: none !important;
    }
}

/* Pagination perfect sizing for one-line mobile layout */
@media (max-width: 480px) {
    .section-padding {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .catering-section {
        padding-bottom: 10px;
    }

    .contact-section {
        padding-top: 10px;
    }

    .main-footer {
        padding: 40px 0 0 0;
    }

    .logo-text {
        font-size: 14px;
    }
    .logo-subtext {
        font-size: 7.5px;
        letter-spacing: 1px;
    }
    .pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .pagination-arrow {
        padding: 0 10px !important;
    }
    .pagination-arrow span {
        display: none !important; /* Hide 'Prev'/'Next' text to save space */
    }
    .menu-pagination {
        gap: 6px !important;
        flex-wrap: nowrap !important;
    }
}

/* Height-based responsive layout fixes for landscape/short viewports */
@media (max-height: 720px) {
    .location-overlay {
        align-items: flex-start;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .modal {
        align-items: flex-start;
    }
    .modal-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Safe vertical-only floating animation for mobile phone mockup */
@keyframes floatPhoneMobile {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Delivery Route Container styles */
.delivery-route-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
    margin-top: 40px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    position: relative;
    user-select: none;
}

/* Icons on endpoints */
.route-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    flex-shrink: 0;
}

.route-point .point-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #121216;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.route-point:hover .point-icon {
    transform: scale(1.08);
}

.route-point .point-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.route-point:hover .point-label {
    color: var(--text-light);
}

/* Route SVG Path Wrapper */
.route-svg-wrapper {
    position: relative;
    flex-grow: 1;
    height: 60px;
    margin: 0 10px;
    overflow: visible;
}

.route-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Scooter Element positioning and pivot alignment */
.delivery-scooter {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
    transform: translate(-12px, -12px); /* Correct anchor offset to path point */
}

/* Scooter vibration animation */
.scooter-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
    animation: scooterVibe 0.12s linear infinite alternate;
}

@keyframes scooterVibe {
    0% { transform: translateY(0.3px) rotate(-0.5deg); }
    100% { transform: translateY(-0.3px) rotate(0.5deg); }
}

/* Gold headlight beam glow */
.headlight-beam {
    position: absolute;
    top: 8px;
    left: 18px;
    width: 35px;
    height: 20px;
    background: radial-gradient(ellipse at left, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 80%);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 60%);
    pointer-events: none;
}

/* Sparkle particles trailing behind */
.sparkle-particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    width: 2.5px;
    height: 2.5px;
    opacity: 0.8;
    filter: blur(0.5px) drop-shadow(0 0 2px var(--primary));
    pointer-events: none;
    animation: fadeOutParticle 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeOutParticle {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.1) translateY(8px);
        opacity: 0;
    }
}

/* Responsive constraints */
@media (max-width: 991px) {
    .delivery-route-container {
        max-width: 320px;
        margin: 40px auto 0 auto;
    }
}

@media (max-width: 480px) {
    .delivery-route-container {
        max-width: 280px;
        margin: 30px auto 0 auto;
        padding: 10px 12px;
    }
}

/* Accessibility and reduced motion settings */
@media (prefers-reduced-motion: reduce) {
    .delivery-scooter, .headlight-beam {
        display: none !important;
    }
    #delivery-path-glow {
        stroke-dasharray: none;
        stroke: var(--primary);
        opacity: 0.6;
    }
}

/* Accessibility Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* Menu Grid Loading Spinner */
.menu-loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    padding: 80px 20px;
    color: var(--primary);
    text-align: center;
}

.menu-loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.menu-loading-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    padding: 60px 20px;
    color: var(--text-muted);
    text-align: center;
}

.menu-loading-error svg {
    fill: #F6343F;
    margin-bottom: 16px;
}

.menu-loading-error h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
}

.menu-loading-error p {
    font-size: 14px;
    margin-bottom: 16px;
}

.menu-loading-error .btn-retry {
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #000;
    border: 1px solid var(--primary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.menu-loading-error .btn-retry:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

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


/* Footer Social Links Styling */
.footer-social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    align-items: center;
    justify-content: flex-start; /* Start position for desktop */
}

@media (max-width: 768px) {
    .footer-social-links {
        justify-content: center; /* Center-align below the contact details on mobile */
    }
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-quick);
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.social-icon {
    transition: transform var(--transition-quick);
    display: block;
}

.social-link:hover .social-icon {
    transform: scale(1.05);
}

