/* ========================================
   BREW & BITES - Self-Catering Cafe
   Warm Coral & Terracotta Theme
======================================== */

/* CSS Variables - Warm Alive Colors */
:root {
    --primary: #E07B54;
    --primary-dark: #C45D3A;
    --primary-light: #F5A882;
    --secondary: #D4A574;
    --secondary-dark: #B8864E;
    --accent: #7C3F3F;
    --accent-light: #A66464;
    --background: #1A1410;
    --surface: #251C16;
    --surface-light: #352820;
    --text: #FDF7F4;
    --text-secondary: #D4C4B8;
    --text-muted: #9A8A7C;
    --gradient-primary: linear-gradient(135deg, #E07B54 0%, #D4A574 50%, #C45D3A 100%);
    --gradient-secondary: linear-gradient(135deg, #D4A574 0%, #B8864E 100%);
    --gradient-vibrant: linear-gradient(135deg, #E07B54 0%, #7C3F3F 100%);
    --gradient-warm: linear-gradient(135deg, #F5A882 0%, #E07B54 50%, #C45D3A 100%);
    --gradient-dark: linear-gradient(135deg, #1A1410 0%, #251C16 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-lg: 0 25px 80px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(224, 123, 84, 0.4);
    --shadow-glow-warm: 0 0 40px rgba(212, 165, 116, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--background) 0%, #1d1612 50%, var(--background) 100%);
    z-index: -2;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 123, 84, 0.1) 0%, rgba(212, 165, 116, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 18s infinite ease-in-out;
    box-shadow: 0 0 8px var(--primary);
}

.particle:nth-child(even) {
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}

.particle:nth-child(3n) {
    background: var(--accent-light);
    box-shadow: 0 0 8px var(--accent-light);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   PRELOADER
======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Preloader Logo Styles */
.preloader-logo {
    width: 150px;
    max-width: 50vw;
    animation: logoFloat 2s infinite ease-in-out;
}

.preloader-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

.loader-text {
    display: flex;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.loader-text span {
    animation: letterBounce 1.4s infinite ease-in-out;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-text span:nth-child(1) { animation-delay: 0s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.3s; }
.loader-text span:nth-child(5) { animation-delay: 0.4s; }
.loader-text span:nth-child(6) { animation-delay: 0.5s; }

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

.loader-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: var(--surface);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loadProgress 2s ease-in-out forwards;
}

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

/* ========================================
   WHATSAPP BUTTON - Enhanced & Responsive
======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.2);
    transition: all var(--transition-base);
    animation: whatsappFloat 3s ease-in-out infinite;
}

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

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 50px rgba(37, 211, 102, 0.3);
    animation: none;
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: waPulse 2s infinite;
    z-index: -1;
}

.whatsapp-pulse.delay {
    animation-delay: 1s;
}

@keyframes waPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(224, 123, 84, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
    transition: transform var(--transition-base), filter var(--transition-base);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.7));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Responsive Logo Image - Large & Readable */
.logo-img {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform var(--transition-base), filter var(--transition-base);
}

.navbar.scrolled .logo-img {
    height: 55px;
    max-width: 220px;
}

.logo:hover .logo-img {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-base);
    padding: 6px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Cart Button */
.header-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(224, 123, 84, 0.1);
    border: 1px solid rgba(224, 123, 84, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-base);
    position: relative;
}

.header-cart-btn svg {
    width: 18px;
    height: 18px;
}

.header-cart-btn:hover {
    background: rgba(224, 123, 84, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.header-cart-count {
    position: absolute;
    top: -6px;
    left: 22px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
}

.header-cart-total {
    color: var(--text);
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color var(--transition-base);
}

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

.phone-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--background);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(224, 123, 84, 0.35);
}

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

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

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--primary);
}

/* ========================================
   HERO SECTION - Enhanced with Visual Effects
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 40px;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 20, 16, 0.75) 0%,
        rgba(37, 28, 22, 0.65) 50%,
        rgba(26, 20, 16, 0.80) 100%
    );
}

/* Animated Floating Coffee Beans */
.hero-beans {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.coffee-bean {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, #8B4513 0%, #5D3A1A 50%, #3E2712 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    box-shadow: inset -3px -3px 6px rgba(0,0,0,0.4), inset 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.coffee-bean::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5), transparent);
    border-radius: 2px;
}

.bean-1 {
    top: 15%;
    left: 8%;
    animation: floatBean 12s ease-in-out infinite;
    animation-delay: 0s;
}

.bean-2 {
    top: 25%;
    right: 12%;
    width: 16px;
    height: 24px;
    animation: floatBean 15s ease-in-out infinite;
    animation-delay: 2s;
}

.bean-3 {
    bottom: 30%;
    left: 15%;
    width: 18px;
    height: 27px;
    animation: floatBean 10s ease-in-out infinite;
    animation-delay: 4s;
}

.bean-4 {
    top: 60%;
    right: 8%;
    animation: floatBean 14s ease-in-out infinite;
    animation-delay: 1s;
}

.bean-5 {
    bottom: 15%;
    right: 25%;
    width: 14px;
    height: 21px;
    animation: floatBean 11s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes floatBean {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-30px) rotate(15deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(-10deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-40px) rotate(20deg);
        opacity: 0.7;
    }
}

/* Animated Light Streaks */
.hero-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.light-streak {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(224, 123, 84, 0.4), rgba(212, 165, 116, 0.3), transparent);
    transform: rotate(25deg);
    opacity: 0;
    animation: lightStreak 8s ease-in-out infinite;
}

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

.streak-2 {
    top: -50px;
    left: 50%;
    height: 250px;
    animation-delay: 3s;
}

.streak-3 {
    top: -50px;
    right: 20%;
    animation-delay: 5s;
}

@keyframes lightStreak {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(25deg);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 100px)) rotate(25deg);
    }
}

/* Animated Steam Effect */
.hero-steam {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.steam-particle {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    animation: steamRise 6s ease-in-out infinite;
}

.steam-1 {
    left: 20%;
    animation-delay: 0s;
}

.steam-2 {
    left: 40%;
    width: 50px;
    height: 70px;
    animation-delay: 1.5s;
}

.steam-3 {
    left: 60%;
    width: 35px;
    height: 55px;
    animation-delay: 3s;
}

.steam-4 {
    left: 30%;
    width: 45px;
    height: 65px;
    animation-delay: 4.5s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-180px) scale(1.5);
        opacity: 0;
    }
}

/* Sparkle Effects */
.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--secondary);
    animation: sparkleGlow 4s ease-in-out infinite;
}

.sparkle-1 { top: 20%; left: 25%; animation-delay: 0s; }
.sparkle-2 { top: 35%; right: 30%; animation-delay: 0.8s; }
.sparkle-3 { bottom: 40%; left: 18%; animation-delay: 1.6s; }
.sparkle-4 { top: 50%; left: 45%; animation-delay: 2.4s; width: 4px; height: 4px; }
.sparkle-5 { bottom: 25%; right: 35%; animation-delay: 3.2s; }
.sparkle-6 { top: 15%; right: 15%; animation-delay: 4s; width: 8px; height: 8px; }

@keyframes sparkleGlow {
    0%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero Decorative Elements */
.hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(224, 123, 84, 0.2);
    background: radial-gradient(circle, rgba(224, 123, 84, 0.05) 0%, transparent 70%);
}

.decor-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation: rotateDecor 35s linear infinite, pulseCircle 8s ease-in-out infinite;
}

.decor-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    animation: rotateDecor 28s linear infinite reverse, pulseCircle 10s ease-in-out infinite;
    animation-delay: 2s;
}

.decor-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 30%;
    border-color: rgba(212, 165, 116, 0.15);
    animation: rotateDecor 20s linear infinite, floatCircle 6s ease-in-out infinite;
}

.decor-line {
    position: absolute;
    width: 2px;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.4;
}

.decor-4 {
    top: 15%;
    left: 8%;
    animation: floatLine 7s ease-in-out infinite;
}

.decor-5 {
    bottom: 25%;
    right: 12%;
    height: 220px;
    animation: floatLine 9s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.decor-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 123, 84, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    animation: glowPulse 5s ease-in-out infinite;
}

.decor-6 {
    top: 20%;
    left: 30%;
}

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

@keyframes floatLine {
    0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scaleY(1.1); opacity: 0.7; }
}

@keyframes pulseCircle {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    50% { transform: rotate(180deg) scale(1.05); opacity: 0.8; }
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Hero Wrapper - Two Column Layout */
.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(224, 123, 84, 0.1);
    border: 1px solid rgba(224, 123, 84, 0.25);
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

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

.badge-icon svg {
    width: 18px;
    height: 18px;
}

.badge-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    filter: drop-shadow(0 0 20px rgba(224, 123, 84, 0.4));
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

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

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    flex-wrap: wrap;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--background);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 6px 24px rgba(224, 123, 84, 0.35);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid var(--secondary);
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    box-shadow: 0 0 16px rgba(212, 165, 116, 0.15);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    transition: transform var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(224, 123, 84, 0.1);
    box-shadow: 0 0 24px rgba(224, 123, 84, 0.3);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    flex-wrap: wrap;
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

/* Hero Image */
.hero-image {
    flex: 0 0 380px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(224, 123, 84, 0.2);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(224, 123, 84, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
}

.scroll-indicator {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(224, 123, 84, 0.25);
    border-radius: 11px;
    position: relative;
}

.scroll-line {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(224, 123, 84, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}

/* ========================================
   ANIMATION CLASSES
======================================== */
.animate-pop {
    animation: pop 0.5s ease forwards;
}

@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(25px);
    animation: slideUp 0.8s ease forwards;
}

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

.animate-fade {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ========================================
   MARQUEE SECTION
======================================== */
.marquee-section {
    padding: 20px 0;
    background: var(--surface);
    overflow: hidden;
    border-top: 1px solid rgba(224, 123, 84, 0.1);
    border-bottom: 1px solid rgba(224, 123, 84, 0.1);
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.marquee-item:hover {
    color: var(--primary);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========================================
   SECTION STYLES
======================================== */
.section-header {
    margin-bottom: 40px;
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(224, 123, 84, 0.1);
    border: 1px solid rgba(224, 123, 84, 0.2);
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 60px 0;
    background: var(--background);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(224, 123, 84, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.5), transparent);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--background);
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--gradient-primary);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.float-anim {
    animation: float 3s ease-in-out infinite;
}

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

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--background);
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    color: var(--background);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 10px 14px;
    background: rgba(224, 123, 84, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(224, 123, 84, 0.1);
    transition: all var(--transition-base);
}

.about-feature:hover {
    background: rgba(224, 123, 84, 0.1);
    border-color: rgba(224, 123, 84, 0.25);
    transform: translateX(4px);
}

.about-feature svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* ========================================
   MENU SECTION
======================================== */
.menu-section {
    padding: 60px 0;
    background: var(--surface);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    position: relative;
    background: var(--surface-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(224, 123, 84, 0.1);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(224, 123, 84, 0.25);
}

.menu-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.item-count {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    padding: 5px 10px;
    background: rgba(224, 123, 84, 0.2);
    border-radius: 50px;
}

.menu-card-content {
    padding: 24px;
}

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 123, 84, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    color: var(--primary);
    transition: all var(--transition-base);
}

.menu-card:hover .card-icon {
    background: var(--gradient-primary);
    color: var(--background);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.menu-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.menu-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap var(--transition-base);
}

.card-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-base);
}

.card-link:hover {
    gap: 10px;
}

.card-link:hover svg {
    transform: translateX(3px);
}

/* ========================================
   ORDER SECTION
======================================== */
.order-section {
    padding: 60px 0;
    background: var(--background);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 22px;
    background: var(--surface);
    border: 1px solid rgba(224, 123, 84, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.menu-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-tab.active {
    background: var(--gradient-primary);
    color: var(--background);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(224, 123, 84, 0.3);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.order-card {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(224, 123, 84, 0.1);
}

.order-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(224, 123, 84, 0.25);
}

.order-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: var(--gradient-primary);
    color: var(--background);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-card-badge.hot {
    background: linear-gradient(135deg, #C45D3A 0%, #A64730 100%);
}

.order-card-badge.new {
    background: linear-gradient(135deg, #7C3F3F 0%, #A66464 100%);
}

.order-card-img {
    height: 150px;
    overflow: hidden;
}

.order-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.order-card:hover .order-card-img img {
    transform: scale(1.1);
}

.order-card-content {
    padding: 16px;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 8px;
}

.order-card-header h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.order-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
}

.order-card-content > p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-light);
    border-radius: var(--radius-sm);
    padding: 3px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    transition: all var(--transition-base);
}

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

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--background);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.add-to-cart-btn svg {
    width: 16px;
    height: 16px;
}

.add-to-cart-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(224, 123, 84, 0.35);
}

/* Cart Summary */
.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(224, 123, 84, 0.15);
    gap: 16px;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 123, 84, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.cart-icon svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
}

.cart-details {
    display: flex;
    flex-direction: column;
}

.cart-items {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.checkout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-base);
}

.checkout-btn svg {
    width: 20px;
    height: 20px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    padding: 60px 0;
    background: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(224, 123, 84, 0.1);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    border-color: rgba(224, 123, 84, 0.3);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 60px 0;
    background: var(--background);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 32px;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    margin-bottom: 24px;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-quote svg {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    color: var(--background);
    font-size: 1rem;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    color: var(--primary);
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.nav-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(224, 123, 84, 0.2);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(224, 123, 84, 0.1);
}

.nav-btn svg {
    width: 18px;
    height: 18px;
}

.testimonial-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(224, 123, 84, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot:hover {
    background: rgba(224, 123, 84, 0.4);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--primary);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.93), rgba(37, 28, 22, 0.88));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-base);
}

.btn-outline svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

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

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

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: 60px 0;
    background: var(--surface);
}

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

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--surface-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(224, 123, 84, 0.1);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: rgba(224, 123, 84, 0.25);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 123, 84, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-text a {
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

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

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    border: 1px solid rgba(224, 123, 84, 0.1);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--background);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(224, 123, 84, 0.1);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid rgba(224, 123, 84, 0.1);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--transition-base);
}

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

.form-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-base);
}

.form-group textarea + label {
    top: 18px;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(224, 123, 84, 0.05);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--primary);
    background: var(--background);
    padding: 0 6px;
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    transform: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
    left: 0;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: var(--background);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   FOOD SLIDER SECTION
======================================== */
.food-slider-section {
    padding: 50px 0;
    background: var(--background);
    overflow: hidden;
}

.food-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.food-slider-track {
    display: flex;
    gap: 20px;
    animation: foodSliderScroll 25s linear infinite;
    width: max-content;
}

.food-slider-track:hover {
    animation-play-state: paused;
}

@keyframes foodSliderScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.food-slide {
    flex: 0 0 auto;
    width: 220px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(224, 123, 84, 0.1);
    transition: all var(--transition-base);
}

.food-slide:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(224, 123, 84, 0.25);
}

.food-slide-img {
    height: 140px;
    overflow: hidden;
}

.food-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-slide:hover .food-slide-img img {
    transform: scale(1.1);
}

.food-slide-info {
    padding: 16px;
    text-align: center;
}

.food-slide-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.food-slide-info span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    position: relative;
    background: var(--background);
    padding-top: 60px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--surface);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(224, 123, 84, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
  
.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition-base);
  }

.footer-logo-img:hover {
  transform: scale(1.02);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid rgba(224, 123, 84, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--transition-base);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--background);
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(224, 123, 84, 0.35);
}

.newsletter-form button svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--background);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 30px;
    }
    
    .hero-image {
        flex: 0 0 320px;
    }
    
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 160px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
/* Responsive Logo for Tablet */
  .logo-img {
  height: 55px;
  max-width: 200px;
  }
  
  .navbar.scrolled .logo-img {
  height: 45px;
  max-width: 180px;
  }
  
  .preloader-logo {
    width: 100px;
  }
  
  .loader-text {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }
  
  .loader-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  
.footer-logo-img {
  height: 65px;
  max-width: 220px;
  }
  
  .hero {
  padding: 100px 0 40px;
  }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        height: 300px;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .order-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 160px);
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .checkout-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* WhatsApp Button - Tablet Portrait */
    .whatsapp-btn {
        bottom: 80px;
        right: 16px;
        padding: 12px 14px;
        border-radius: 50px;
        gap: 8px;
    }
    
    .whatsapp-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-pulse {
        border-radius: 50px;
    }
    
    /* Hide some hero effects on tablet */
    .hero-steam {
        display: none;
    }
    
    .coffee-bean {
        opacity: 0.4;
    }
    
    .food-slide {
        width: 180px;
    }
    
    .food-slide-img {
        height: 120px;
    }
}

/* Portrait Mode Specific Fixes */
@media (max-width: 768px) and (orientation: portrait) {
    .whatsapp-btn {
        bottom: 85px;
        right: 12px;
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    
    .whatsapp-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-pulse {
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
/* Responsive Logo for Mobile */
  .logo-img {
  height: 60px;
  max-width: 160px;
  }
  
  .navbar.scrolled .logo-img {
  height: 38px;
  max-width: 140px;
  }
  
  .preloader-logo {
    width: 80px;
  }
  
  .loader-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  .loader-tagline {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  
  .loader-progress {
    width: 160px;
  }
  
.footer-logo-img {
  height: 55px;
  max-width: 180px;
  }
  
  /* WhatsApp Button - Mobile */
  .whatsapp-btn {
    bottom: 75px;
    right: 10px;
    width: 52px;
    height: 52px;
    padding: 12px;
    border-radius: 50%;
  }
  
  .whatsapp-icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* Hide complex hero effects on mobile */
  .hero-beans,
  .hero-lights,
  .hero-steam {
    display: none;
  }
  
  .hero-sparkles .sparkle {
    width: 4px;
    height: 4px;
  }
  
  .decor-circle {
    opacity: 0.5;
  }
  
  .hero-title {
  font-size: 2.2rem;
  }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .experience-badge {
        left: 16px;
        top: 16px;
        padding: 12px 18px;
    }
    
    .exp-number {
        font-size: 1.6rem;
    }
    
    .menu-tabs {
        flex-direction: column;
    }
    
    .menu-tab {
        width: 100%;
        text-align: center;
    }
    
    .order-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .add-to-cart-btn {
        justify-content: center;
    }
    
    .header-cart-total {
        display: none;
    }
}
