/* ==========================================================================
   CSS CUSTOM VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-dark: #0a0808;
    --bg-card: #141111;
    --bg-card-hover: #1e1a1a;
    --primary: #E89E19; /* Saffron Turmeric Gold */
    --primary-hover: #F6A91B;
    --primary-glow: rgba(232, 158, 25, 0.15);
    --secondary: #D23B19; /* Chili Tandoori Red */
    --secondary-hover: #E74521;
    --accent-green: #10B981; /* Fresh Herb Green */
    --text-light: #F8F6F0; /* Warm Cream White */
    --text-muted: #A39E93; /* Muted Gold-Gray */
    --glass-bg: rgba(20, 17, 17, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-cover: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(232, 158, 25, 0.3);
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

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

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

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

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

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(210, 59, 25, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(210, 59, 25, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), var(--secondary-hover));
}

.cta-button:active {
    transform: translateY(-1px);
}

.mini-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.badge-new {
    background: rgba(232, 158, 25, 0.1);
    border: 1px solid rgba(232, 158, 25, 0.3);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Store Badges */
.store-badge {
    background: #000;
    border: 1.5px solid #2b2626;
    border-radius: 12px;
    padding: 0.6rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    min-width: 175px;
}

.store-badge:hover {
    border-color: var(--primary);
    background: #0d0c0c;
    box-shadow: 0 10px 25px rgba(232, 158, 25, 0.15);
    transform: translateY(-3px);
}

.badge-icon {
    width: 28px;
    height: 28px;
    color: #fff;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.badge-main {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(20, 15, 15, 0.95) 0%, rgba(10, 8, 8, 1) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   APP SMARTPHONE MOCKUP
   ========================================================================== */
.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    width: 290px;
    height: 580px;
    background-color: #000;
    border-radius: 42px;
    border: 11px solid #1c1818;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8),
                0 0 0 2px rgba(255, 255, 255, 0.05),
                0 0 50px rgba(232, 158, 25, 0.15);
    position: relative;
    overflow: hidden;
    animation: floatPhone 6s ease-in-out infinite;
    z-index: 5;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.phone-notch {
    width: 130px;
    height: 25px;
    background: #1c1818;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 100;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0f0d0d;
    position: relative;
    overflow: hidden;
}

.phone-home-indicator {
    width: 110px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 100;
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(20, 17, 17, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 10;
    pointer-events: none;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    right: -10%;
    animation-delay: 0.8s;
}

.badge-3 {
    bottom: 12%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* ==========================================================================
   APP SCREENS INSIDE MOCKUP
   ========================================================================== */
.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 35px 12px 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.app-screen.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
}

.app-screen.prev {
    transform: translateX(-100%);
}

/* App Screen 1: Dashboard */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0 0.25rem;
}

.app-logo-area {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.app-logo {
    font-size: 1.1rem;
}

.app-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-light);
}

.app-cart-icon {
    font-size: 0.95rem;
    background: #221c1c;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.app-hero-banner {
    height: 135px;
    background-image: url('assets/dish_chicken_masala.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.app-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 8, 8, 0.9) 0%, rgba(10, 8, 8, 0.2) 100%);
    z-index: 1;
}

.app-banner-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.app-hero-banner h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #fff;
    z-index: 2;
    margin-bottom: 0.1rem;
}

.app-hero-banner p {
    font-size: 0.7rem;
    color: var(--text-muted);
    z-index: 2;
}

.app-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.app-categories::-webkit-scrollbar {
    display: none;
}

.app-cat-tag {
    background: #1a1515;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
}

.app-cat-tag.active {
    background: var(--primary);
    color: #000;
}

.app-item-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    overflow-y: auto;
    flex: 1;
}

.app-item-list::-webkit-scrollbar {
    display: none;
}

.app-food-card {
    background: #141111;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.app-food-info h5 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.app-food-info p {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.app-food-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.app-add-btn {
    background: #251e1e;
    color: var(--primary);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.app-add-btn:hover {
    background: var(--primary);
    color: #000;
}

/* App Screen 2: Cart */
.app-back-btn {
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
}

.app-cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cart-item-qty {
    background: rgba(232, 158, 25, 0.1);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.cart-item-details {
    display: flex;
    justify-content: space-between;
    flex: 1;
    align-items: center;
}

.cart-item-details h6 {
    font-size: 0.78rem;
    font-weight: 600;
}

.cart-item-price {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

.cart-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 1rem 0;
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.totals-row.highlight {
    color: var(--accent-green);
    font-weight: 600;
}

.free-text {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.checkout-footer {
    margin-top: auto;
    padding-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(210, 59, 25, 0.2);
}

/* App Screen 3: Tracking */
.app-tracking {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
}

.tracking-map {
    height: 200px;
    background-color: #1a1616;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.tracking-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2c2222 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.3;
}

.map-chef-icon {
    font-size: 1.5rem;
    position: absolute;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
    animation: cookPulse 2s ease-in-out infinite alternate;
}

@keyframes cookPulse {
    0% { transform: translate(-50%, -50%) scale(0.9); }
    100% { transform: translate(-50%, -50%) scale(1.15); }
}

.map-dot-pulse {
    position: absolute;
    top: 45%;
    left: 48%;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: mapPulse 2.5s infinite;
}

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.tracking-status {
    text-align: center;
    padding: 0 0.5rem;
}

.tracking-status h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.tracking-status p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.progress-bar-container {
    height: 6px;
    background: #201a1a;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    width: 65%;
    border-radius: 10px;
    animation: loadProgress 3s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 65%; }
}


/* ==========================================================================
   CONCEPT SECTION
   ========================================================================== */
.concept-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4.5rem;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.concept-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.concept-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-card-hover);
    border-color: rgba(232, 158, 25, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 158, 25, 0.03);
}

.card-icon-wrapper {
    background: rgba(232, 158, 25, 0.08);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.concept-card:hover .card-icon-wrapper {
    background: var(--primary);
    color: #000;
    transform: scale(1.08);
}

.card-icon {
    width: 30px;
    height: 30px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

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

/* ==========================================================================
   APP SHOWCASE SECTION (3 STEPS)
   ========================================================================== */
.app-showcase-section {
    padding: 100px 0;
    background-color: #0e0b0b;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.015);
}

.step-item.active {
    background: rgba(20, 17, 17, 0.6);
    border-color: var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-num {
    background: #1c1818;
    color: var(--text-muted);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.step-item.active .step-num {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(232, 158, 25, 0.3);
}

.step-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
}

.step-item.active .step-text h4 {
    color: var(--primary);
}

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

/* Glass Showcase container on right side */
.showcase-visual {
    display: flex;
    justify-content: center;
}

.glass-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2rem;
    max-width: 460px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.showcase-dish-img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.glass-container:hover .showcase-dish-img {
    transform: scale(1.03);
}

.glass-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.glass-card-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   MENU PREVIEW GALLERY SECTION
   ========================================================================== */
.menu-gallery-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

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

.menu-tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-tab-btn:hover {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.15);
}

.menu-tab-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(232, 158, 25, 0.25);
}

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

.menu-grid.active {
    display: grid;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 158, 25, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(10, 8, 8, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.card-header-row h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.diet-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.diet-badge.spicy {
    background: rgba(210, 59, 25, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(210, 59, 25, 0.2);
}

.diet-badge.halal {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.diet-badge.popular {
    background: rgba(232, 158, 25, 0.1);
    color: var(--primary);
    border: 1px solid rgba(232, 158, 25, 0.2);
}

.diet-badge.veggie {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ==========================================================================
   POSTCODE CHECKER SECTION
   ========================================================================== */
.delivery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0c0c 100%);
}

.delivery-container {
    display: flex;
    justify-content: center;
}

.delivery-box {
    background: linear-gradient(135deg, #181414, #120e0e);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    width: 100%;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.delivery-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 158, 25, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.delivery-box h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.delivery-box p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 2rem;
}

.checker-input-wrapper {
    display: flex;
    max-width: 440px;
    margin: 0 auto 1rem;
    background: #080606;
    border: 1px solid #2b2525;
    border-radius: 50px;
    padding: 0.35rem;
    transition: var(--transition-smooth);
}

.checker-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(232, 158, 25, 0.15);
}

.postcode-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.postcode-input::placeholder {
    color: #575249;
    text-transform: none;
}

.check-btn {
    background: var(--primary);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    outline: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.check-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 5px 15px rgba(232, 158, 25, 0.2);
}

.checker-feedback {
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 24px;
    margin-top: 0.5rem;
    transition: var(--transition-smooth);
}

.checker-feedback.success {
    color: var(--accent-green);
}

.checker-feedback.error {
    color: var(--secondary);
}

/* ==========================================================================
   APP DOWNLOAD CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 90px 0;
    background: radial-gradient(circle at center, #1b1616 0%, var(--bg-dark) 100%);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.cta-container h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.cta-container p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #050404;
    padding: 70px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 320px;
}

.footer-contact h4, .footer-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact p, .footer-hours p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.halal-disclaimer {
    color: var(--accent-green) !important;
    font-weight: 600;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.8rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #4b453e;
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-container {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
        padding-top: 40px;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero-bg-overlay {
        width: 100%;
        opacity: 0.1;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .showcase-visual {
        order: -1;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.25rem;
    }
    .main-header {
        position: relative;
        background: var(--bg-dark);
    }
    .header-container {
        height: 70px;
    }
    .main-nav {
        display: none; /* Hide desktop nav links on small mobile screens */
    }
    .hero-section {
        padding: 60px 0 80px;
    }
    .hero-title {
        font-size: 2.3rem;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .store-badge {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
    .delivery-box {
        padding: 2rem 1.25rem;
    }
    .checker-input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 0.75rem;
    }
    .postcode-input {
        background: #080606;
        border: 1px solid #2b2525;
        border-radius: 50px;
        height: 50px;
        width: 100%;
        text-align: center;
    }
    .check-btn {
        width: 100%;
        height: 50px;
    }
    .section-title {
        font-size: 2rem;
    }
}
