/* ============================================
   MEDDYS - Futuristic Mediterranean Experience
   ============================================ */

/* CSS Variables - Meddys Brand Colors (Exact Match) */
:root {
    --primary: #f47920;
    --primary-dark: #d96a1b;
    --primary-light: #ff9a4d;
    --secondary: #2c2c2c;
    --secondary-light: #3d3d3d;
    --accent: #f47920;
    --accent-glow: rgba(244, 121, 32, 0.4);
    --dark: #1a1a1a;
    --dark-overlay: rgba(26, 26, 26, 0.95);
    --light: #ffffff;
    --light-dim: #f8f8f8;
    --cream: #f5f0e8;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    
    /* Modern Gradients */
    --gradient-orange: linear-gradient(135deg, #f47920 0%, #ff6b35 50%, #f47920 100%);
    --gradient-orange-vibrant: linear-gradient(135deg, #ff6b35 0%, #f47920 50%, #ffb347 100%);
    --gradient-sunset: linear-gradient(135deg, #f47920 0%, #ff6b6b 100%);
    --gradient-warm: linear-gradient(135deg, #f47920 0%, #ffd93d 100%);
    --gradient-dark: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    --gradient-dark-radial: radial-gradient(ellipse at center, #3d3d3d 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-mesh: 
        radial-gradient(at 40% 20%, rgba(244, 121, 32, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(255, 107, 53, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(255, 154, 77, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(244, 121, 32, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 107, 53, 0.1) 0px, transparent 50%);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(244, 121, 32, 0.3);
    --shadow-glow-intense: 0 0 60px rgba(244, 121, 32, 0.5), 0 0 120px rgba(244, 121, 32, 0.2);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-full: 9999px;
}

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

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-orange);
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius-full);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

.section-tag::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.section-title .accent {
    color: var(--primary);
}

.light .section-title {
    color: var(--light);
}

.light .section-title .accent {
    color: var(--primary-light);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite ease-in-out;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

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

.logo img,
.logo-svg {
    height: 50px;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo img,
.navbar.scrolled .logo-svg {
    height: 40px;
}

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

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: var(--transition-fast);
}

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

.order-btn {
    padding: 12px 28px;
    background: var(--gradient-orange);
    background-size: 200% 200%;
    color: var(--light);
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: var(--transition-medium);
}

.order-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background-position: 100% 0;
    box-shadow: var(--shadow-glow-intense);
}

.order-btn:hover::before {
    transform: translateX(100%);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: var(--transition-fast);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--secondary);
}

/* ============================================
   AI ASSISTANT BUTTON
   ============================================ */
.ai-assistant {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-dark);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-strong), 0 0 30px rgba(244, 121, 32, 0.2);
    border: 1px solid rgba(244, 121, 32, 0.3);
}

.ai-assistant:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-strong), var(--shadow-glow-intense);
    border-color: var(--primary);
}

.ai-pulse {
    position: absolute;
    inset: -5px;
    border-radius: var(--border-radius-full);
    background: var(--gradient-orange);
    opacity: 0;
    animation: ai-pulse 2s infinite;
}

@keyframes ai-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.ai-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(244, 121, 32, 0.4);
}

.ai-icon svg {
    width: 20px;
    height: 20px;
    color: var(--light);
}

.ai-label {
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-layer-1 {
    background: radial-gradient(ellipse at 30% 50%, rgba(244, 121, 32, 0.15) 0%, transparent 50%);
}

.hero-layer-2 {
    background: radial-gradient(ellipse at 70% 30%, rgba(244, 121, 32, 0.1) 0%, transparent 40%);
}

.hero-layer-3 {
    background: radial-gradient(ellipse at 50% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 2rem;
    margin-left: 8%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: rgba(244, 121, 32, 0.1);
    border: 1px solid rgba(244, 121, 32, 0.3);
    border-radius: var(--border-radius-full);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(244, 121, 32, 0.1);
}

.badge-icon {
    color: var(--primary);
    font-size: 1rem;
}

.hero-badge span {
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

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

.hero-title .accent {
    color: var(--primary);
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-orange-vibrant);
    background-size: 200% 200%;
    color: var(--light);
    border: none;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    animation: gradient-shift 3s ease infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-slow);
}

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

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

.btn-primary svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary-light);
}

/* Hero 3D Element */
.hero-3d-element {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    perspective: 1000px;
}

.floating-plate {
    width: 500px;
    height: 500px;
    position: relative;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

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

.plate-ring {
    position: absolute;
    border: 2px solid rgba(244, 121, 32, 0.3);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
}

.ring-1 {
    inset: 0;
    animation-direction: normal;
}

.ring-2 {
    inset: 40px;
    animation-direction: reverse;
    animation-duration: 15s;
}

.ring-3 {
    inset: 80px;
    animation-duration: 25s;
}

@keyframes rotate-ring {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}

.plate-center {
    position: absolute;
    inset: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.1) 0%, transparent 70%);
}

.plate-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: plate-rotate 30s linear infinite;
}

@keyframes plate-rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

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

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

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
    z-index: 10;
    margin-top: -4rem;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sunset);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: var(--transition-medium);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium), 0 0 40px rgba(244, 121, 32, 0.1);
    border-color: rgba(244, 121, 32, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-sunset);
    border-radius: 50%;
    opacity: 0.15;
    transition: var(--transition-medium);
}

.feature-card:hover .feature-icon-bg {
    transform: scale(1.3);
    opacity: 0.3;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1.2); opacity: 0.25; }
    50% { transform: scale(1.4); opacity: 0.35; }
}

.feature-icon {
    position: relative;
    font-size: 2.5rem;
    line-height: 80px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-parallax-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #fff 100%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-image {
    position: absolute;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

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

.about-image-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-image-2 {
    width: 250px;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-image-stack:hover .about-image-1 {
    transform: translateX(-10px) translateY(-10px);
}

.about-image-stack:hover .about-image-2 {
    transform: translateX(10px) translateY(10px);
}

.floating-badge {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-sunset);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-medium), 0 0 30px rgba(244, 121, 32, 0.3);
    animation: badge-float 3s ease-in-out infinite;
}

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

.badge-text {
    display: block;
    font-size: 0.7rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    font-family: 'Playfair Display', serif;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    padding: 8rem 0;
    background: var(--light-dim);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.menu-card {
    perspective: 1000px;
    height: 400px;
}

.menu-card-large {
    height: 450px;
}

.menu-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
    transform-style: preserve-3d;
}

.menu-card:hover .menu-card-inner {
    transform: rotateY(180deg);
}

.menu-card-front, .menu-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.menu-card-front {
    background: var(--light);
    box-shadow: var(--shadow-soft);
}

.menu-card-back {
    background: var(--gradient-dark);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--light);
}

.menu-card-image {
    height: 65%;
    overflow: hidden;
}

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

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

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-content h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.menu-card-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.menu-card-back h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.menu-card-back ul {
    list-style: none;
    margin-bottom: 2rem;
}

.menu-card-back li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.btn-view-menu {
    padding: 12px 24px;
    background: var(--gradient-orange);
    color: var(--light);
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

.btn-view-menu:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(244, 121, 32, 0.5);
}

/* ============================================
   AI FEATURES SECTION
   ============================================ */
.ai-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.ai-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.ai-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation: orb-float 10s ease-in-out infinite;
}

.ai-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -150px;
    right: -150px;
    animation: orb-float 15s ease-in-out infinite reverse;
}

.ai-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    animation: orb-float 12s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(0, 50px) scale(0.9); }
    75% { transform: translate(-50px, -25px) scale(1.05); }
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ai-feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(244, 121, 32, 0.2);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.ai-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-sunset);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 121, 32, 0.15);
}

.ai-feature:hover::before {
    transform: scaleX(1);
}

.ai-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(244, 121, 32, 0.3);
    transition: var(--transition-medium);
}

.ai-feature:hover .ai-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(244, 121, 32, 0.4);
}

.ai-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--light);
}

.ai-feature h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.ai-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.ai-demo {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ai-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: rgba(244, 121, 32, 0.1);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-full);
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.ai-demo-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-orange);
    opacity: 0;
    transition: var(--transition-medium);
}

.ai-demo-btn:hover {
    color: var(--light);
    box-shadow: var(--shadow-glow-intense);
    border-color: transparent;
}

.ai-demo-btn:hover::before {
    opacity: 1;
}

.ai-demo-btn span,
.ai-demo-btn .ai-demo-visual {
    position: relative;
    z-index: 1;
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}

.sound-wave span {
    width: 4px;
    height: 100%;
    background: currentColor;
    border-radius: 2px;
    animation: sound-wave 1s ease-in-out infinite;
}

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

@keyframes sound-wave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* ============================================
   HAPPY HOUR SECTION
   ============================================ */
.happy-hour {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.happy-hour-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.happy-hour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.happy-card {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.happy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-sunset);
}

.happy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(244, 121, 32, 0.3);
}

.happy-card.featured {
    background: var(--gradient-dark);
    color: var(--light);
}

.happy-card.featured .happy-price {
    color: var(--primary);
}

.happy-price {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.happy-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.happy-card.featured .happy-item {
    color: var(--light);
}

.happy-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.happy-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: var(--transition-medium);
}

.happy-card:hover .happy-glow {
    opacity: 0.2;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    padding: 8rem 0;
    background: var(--light);
    overflow: hidden;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: rgba(244, 121, 32, 0.1);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(244, 121, 32, 0.2);
}

.review-stars {
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--secondary);
}

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

/* ============================================
   HASHTAG SECTION
   ============================================ */
.hashtag-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hashtag-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.hashtag-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: -0.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.social-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition-medium);
}

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

.social-icon {
    color: #ff3b5c;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-handle {
    color: var(--light);
    font-size: 0.85rem;
    font-weight: 500;
}

.social-card.large {
    grid-column: span 1;
    background: rgba(244, 121, 32, 0.1);
    border: 2px dashed rgba(244, 121, 32, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hashtag-cta {
    text-align: center;
    padding: 1rem;
}

.hashtag-main {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hashtag-count {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hashtag-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: var(--gradient-orange);
    color: var(--light);
    text-decoration: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.hashtag-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   CAREERS SECTION
   ============================================ */
.careers {
    padding: 8rem 0;
    background: var(--light-dim);
    overflow: hidden;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.careers-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.careers-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.perk {
    font-weight: 500;
    color: var(--secondary);
    font-size: 0.95rem;
}

.btn-careers {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 32px;
    background: var(--gradient-orange);
    color: var(--light);
    text-decoration: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-glow);
}

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

.btn-careers svg {
    transition: var(--transition-fast);
}

.btn-careers:hover svg {
    transform: translateX(5px);
}

.careers-visual {
    position: relative;
}

.careers-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.careers-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.careers-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--gradient-orange);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-medium);
    animation: badge-float 3s ease-in-out infinite;
}

.careers-badge .badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
}

.careers-badge .badge-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations {
    padding: 8rem 0;
    background: var(--light);
}

.locations-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.location-tab {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.location-tab.active {
    background: var(--gradient-orange);
    border-color: transparent;
    color: var(--light);
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    display: none;
}

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

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.location-card-header h3 {
    font-size: 1.2rem;
    color: var(--secondary);
}

.location-status {
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.location-status.open {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.location-address, .location-hours, .location-phone {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.location-address::before {
    content: '📍 ';
}

.location-hours::before {
    content: '🕐 ';
}

.location-phone::before {
    content: '📞 ';
}

.location-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-directions, .btn-reserve {
    flex: 1;
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-directions {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
}

.btn-directions:hover {
    background: rgba(244, 121, 32, 0.1);
}

.btn-reserve {
    background: var(--gradient-orange);
    border: none;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.btn-reserve::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: var(--transition-medium);
}

.btn-reserve:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.4);
}

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

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
    padding: 8rem 0;
    background: var(--light-dim);
    overflow: hidden;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-store-btn {
    transition: var(--transition-fast);
}

.app-store-btn:hover {
    transform: translateY(-3px);
}

.app-store-btn img {
    height: 50px;
}

.app-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
}

.phone-screen {
    position: relative;
    z-index: 2;
}

.phone-screen img {
    max-width: 300px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    animation: phone-float 4s ease-in-out infinite;
}

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

.phone-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-orange);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Phone Frame Mockup */
.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d2d44 0%, #1a1a2e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    animation: phone-float 4s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #0f0f1a;
    border-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
    border-radius: 32px;
    overflow: hidden;
}

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

.app-header-preview {
    background: var(--cream);
    padding: 50px 20px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.app-logo-mini {
    width: 100px;
    height: auto;
}

.app-content-preview {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.app-welcome {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 600;
}

.app-points {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
}

.points-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.points-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.app-order-btn {
    background: var(--primary);
    color: var(--light);
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    margin-bottom: 30px;
}

/* Store Badges */
.store-badge {
    height: 45px;
    width: auto;
    transition: var(--transition-fast);
}

.app-store-btn:hover .store-badge {
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: var(--light);
}

.footer-top {
    padding: 5rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo,
.footer-logo-svg {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--light);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

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

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

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

/* ============================================
   AI RESERVATION MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

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

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    background: var(--gradient-dark);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    transform: translateY(50px) scale(0.9);
    transition: var(--transition-medium);
    border: 1px solid rgba(244, 121, 32, 0.2);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
}

.modal-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
}

.ai-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(244, 121, 32, 0.4);
}

.ai-avatar svg {
    color: var(--light);
    width: 36px;
    height: 36px;
}

.ai-avatar-ring {
    position: absolute;
    inset: -5px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.ai-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--secondary);
}

.modal-header h2 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.modal-body {
    padding: 0 2rem 2rem;
}

.chat-container {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chat-message.ai .message-content {
    background: rgba(244, 121, 32, 0.15);
    border: 1px solid rgba(244, 121, 32, 0.3);
    border-radius: var(--border-radius) var(--border-radius) var(--border-radius) 4px;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-message.user .message-content {
    background: var(--primary);
    border-radius: var(--border-radius) var(--border-radius) 4px var(--border-radius);
}

.chat-message.user .message-content p {
    color: var(--secondary);
}

.message-content {
    padding: 1rem 1.25rem;
    max-width: 85%;
}

.message-content p {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.voice-input {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(244, 121, 32, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.voice-input.active {
    display: flex;
}

.voice-visualizer {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 50px;
    margin-bottom: 1rem;
}

.voice-visualizer span {
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    animation: voice-wave 0.5s ease-in-out infinite alternate;
}

.voice-visualizer span:nth-child(1) { animation-delay: 0s; }
.voice-visualizer span:nth-child(2) { animation-delay: 0.1s; }
.voice-visualizer span:nth-child(3) { animation-delay: 0.2s; }
.voice-visualizer span:nth-child(4) { animation-delay: 0.3s; }
.voice-visualizer span:nth-child(5) { animation-delay: 0.4s; }
.voice-visualizer span:nth-child(6) { animation-delay: 0.5s; }
.voice-visualizer span:nth-child(7) { animation-delay: 0.4s; }
.voice-visualizer span:nth-child(8) { animation-delay: 0.3s; }
.voice-visualizer span:nth-child(9) { animation-delay: 0.2s; }
.voice-visualizer span:nth-child(10) { animation-delay: 0.1s; }

@keyframes voice-wave {
    from { height: 10px; }
    to { height: 40px; }
}

.voice-status {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.chat-input {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: var(--light);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-input input:focus {
    border-color: var(--primary);
}

.voice-btn, .send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.voice-btn {
    background: rgba(255, 255, 255, 0.1);
}

.voice-btn.active {
    background: var(--accent);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.voice-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.voice-btn svg, .send-btn svg {
    width: 20px;
    height: 20px;
    color: var(--light);
}

.send-btn {
    background: var(--gradient-orange);
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

.send-btn svg {
    color: var(--light);
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 121, 32, 0.5);
}

.quick-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.quick-actions button {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.quick-actions button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--gradient-dark);
    z-index: 9999;
    padding: 5rem 2rem;
    transition: var(--transition-medium);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--primary-light);
}

.order-btn.mobile {
    width: 100%;
    margin-top: 2rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-3d-element {
        width: 400px;
        right: 2%;
    }
    
    .floating-plate {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-3d-element {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card, .menu-card-large {
        height: 350px;
    }
    
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .happy-hour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-card.large {
        grid-column: span 1;
    }
    
    .careers-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .careers-visual {
        order: -1;
    }
    
    .careers-perks {
        justify-content: center;
    }
    
    .btn-careers {
        justify-content: center;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-visual {
        order: -1;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-assistant {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .ai-label {
        display: none;
    }
    
    .about-image-stack {
        height: 350px;
    }
    
    .about-image-1 {
        width: 200px;
        height: 250px;
    }
    
    .about-image-2 {
        width: 180px;
        height: 220px;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
        border-radius: 30px;
    }
    
    .phone-screen {
        border-radius: 24px;
    }
    
    .app-header-preview {
        padding: 40px 15px 15px;
    }
    
    .app-logo-mini {
        width: 80px;
    }
    
    .points-value {
        font-size: 28px;
    }
    
    .happy-hour-grid {
        grid-template-columns: 1fr;
    }
    
    .happy-price {
        font-size: 3rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .careers-perks {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .careers-badge {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .quick-actions {
        padding: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--light);
}

