/* ============================================
   NEON DRIFT CAFÉ — MAIN STYLES
   Cyberpunk aesthetic with modern CSS
   ============================================ */

/* CSS Custom Properties (Variables) */
:root {
    --neon-pink: #ff006e;
    --neon-cyan: #00f5ff;
    --neon-purple: #9d00ff;
    --neon-yellow: #ffea00;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --border-glow: rgba(0, 245, 255, 0.3);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-cyan);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Focus visible styles for better accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

.nav-links a:focus-visible {
    outline-offset: -2px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
    animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    from { opacity: 1; }
    to { opacity: 0.8; }
}

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

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: var(--transition-fast);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--neon-cyan);
}

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

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.nav-links a.active {
    color: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3), inset 0 0 10px rgba(255, 0, 110, 0.1);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5rem 5rem;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        var(--dark-bg);
}

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

.glitch {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    position: relative;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: var(--neon-pink);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: var(--neon-cyan);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(3px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 3px); }
    80% { clip-path: inset(80% 0 0% 0); transform: translate(2px, -3px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(3px, -2px); }
    40% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 2px); }
    60% { clip-path: inset(0% 0 80% 0); transform: translate(2px, 3px); }
    80% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, -3px); }
}

/* Glitch active state - used by JS for random glitch triggers */
.glitch-active {
    animation: glitch-shake 0.1s ease-in-out !important;
}

@keyframes glitch-shake {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-2px, 1px); }
    50% { transform: translate(2px, -1px); }
    75% { transform: translate(-1px, 2px); }
}

.tagline {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin: 1.5rem 0 0.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.sub-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    position: relative;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-bg);
    background: var(--neon-cyan);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-medium);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    will-change: transform;
}

.cta-button:hover {
    color: var(--text-primary);
    background: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

.cta-button:focus-visible {
    outline: 3px solid var(--neon-cyan);
    outline-offset: 4px;
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Secondary button variant */
.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.cta-button.secondary:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.cta-button.secondary:focus-visible {
    outline-color: var(--neon-pink);
}

/* Button loading state */
.cta-button.loading {
    position: relative;
    color: transparent;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
    color: var(--text-primary);
}

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

/* Success state for buttons */
.cta-button.success {
    background: #00ff64;
    color: var(--dark-bg);
    animation: btnSuccess 0.5s ease;
}

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

.btn-text {
    position: relative;
    z-index: 2;
}

/* Hero Visual - Coffee Cup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.coffee-cup {
    position: relative;
    width: 200px;
    height: 250px;
}

.steam {
    position: absolute;
    width: 20px;
    height: 60px;
    background: linear-gradient(to top, transparent, rgba(0, 245, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(4px);
    animation: steam-rise 3s ease-in-out infinite;
    will-change: transform, opacity;
}

.steam-1 { left: 60px; top: -40px; animation-delay: 0s; }
.steam-2 { left: 90px; top: -50px; animation-delay: 1s; }
.steam-3 { left: 120px; top: -35px; animation-delay: 2s; }

@keyframes steam-rise {
    0%, 100% { transform: translateY(0) scaleX(1); opacity: 0; }
    50% { transform: translateY(-30px) scaleX(1.5); opacity: 0.6; }
    80% { opacity: 0; }
}

.cup-body {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 120px;
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1a25 100%);
    border-radius: 0 0 70px 70px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.3),
        inset 0 0 20px rgba(0, 245, 255, 0.1);
}

.neon-ring {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background: var(--neon-pink);
    border-radius: 5px;
    box-shadow: 0 0 15px var(--neon-pink);
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 15px var(--neon-pink); }
    50% { opacity: 0.6; box-shadow: 0 0 25px var(--neon-pink), 0 0 40px var(--neon-pink); }
}

.cup-base {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: var(--card-bg);
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .particle-canvas {
    z-index: 0;
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem;
    background: var(--darker-bg);
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    will-change: transform;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--neon-cyan);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 245, 255, 0.1);
}

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

.feature-card:active {
    transform: translateY(-6px) scale(0.99);
}

.feature-card .feature-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.5));
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   SOUND TOGGLE BUTTON
   ============================================ */
.sound-toggle {
    background: none;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.sound-toggle:hover {
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: scale(1.1);
    background: rgba(0, 245, 255, 0.1);
}

.sound-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .sound-toggle {
        margin-left: 0;
        margin-right: 1rem;
        order: -1;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.social-links a {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

/* ============================================
   PAGE HEADERS (for sub-pages)
   ============================================ */
.page-header {
    text-align: center;
    padding: 10rem 2rem 4rem;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    border-bottom: 1px solid var(--border-glow);
}

.page-header .glitch {
    font-size: clamp(2rem, 6vw, 4rem);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    letter-spacing: 2px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
        min-height: 60px;
    }
    
    .nav-brand {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 1rem 1.5rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--border-glow);
        transform: translateY(-150%);
        transition: var(--transition-medium);
        opacity: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border: none;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.active {
        border: none;
        background: rgba(0, 245, 255, 0.1);
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
    }
    
    /* Hero Mobile */
    .hero {
        flex-direction: column;
        padding: 6rem 1rem 3rem;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .glitch {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .sub-tagline {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .hero-visual {
        margin-top: 2rem;
        transform: scale(0.85);
    }
    
    /* Features Mobile */
    .features {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 6rem 1rem 2rem;
    }
    
    .page-header .glitch {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Menu Grid Mobile */
    .menu-grid {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .item-icon {
        font-size: 2.5rem;
    }
    
    .item-price {
        font-size: 1.25rem;
    }
    
    .menu-item h3 {
        font-size: 1.2rem;
    }
    
    .menu-item p {
        font-size: 0.9rem;
    }
    
    .item-tag {
        padding: 0.35rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Dietary Info Mobile */
    .dietary-info {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .dietary-info h2 {
        font-size: 1.5rem;
    }
    
    .specs-list {
        grid-template-columns: 1fr;
    }
    
    .specs-list li {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Timeline Mobile */
    .timeline {
        padding: 2rem 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year,
    .timeline-content {
        width: 100%;
        text-align: left;
        padding-left: 50px;
    }
    
    .timeline-year {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Values Section Mobile */
    .values {
        padding: 3rem 1rem;
    }
    
    .values h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-number {
        font-size: 3rem;
    }
    
    /* Team Section Mobile */
    .team {
        padding: 3rem 1rem;
    }
    
    .team h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
    }
    
    /* Contact Page Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 0;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .location-info h2 {
        font-size: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-card address {
        font-size: 0.9rem;
    }
    
    .map-section {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .map-section h2 {
        font-size: 1.5rem;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 2rem 1rem;
    }
    
    .testimonials .section-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Newsletter Mobile */
    .newsletter {
        padding: 2rem 1rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-content > p {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .newsletter-form .cta-button {
        width: 100%;
        min-height: 44px;
    }
    
    /* Reservations CTA Mobile */
    .reservations-cta {
        padding: 3rem 1rem;
    }
    
    .reservations-cta h2 {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-feature {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Sound Toggle Mobile */
    .sound-toggle {
        width: 44px;
        height: 44px;
        margin-left: 0;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .glitch {
        letter-spacing: 1px;
        font-size: clamp(1.75rem, 12vw, 2.5rem);
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .sub-tagline {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
    
    .coffee-cup {
        transform: scale(0.7);
    }
    
    .hero {
        padding: 5rem 0.75rem 2rem;
    }
    
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 5rem 0.75rem 1.5rem;
    }
    
    .page-header .glitch {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }
    
    .features {
        padding: 1.5rem 0.75rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .menu-grid {
        padding: 1.5rem 0.75rem;
    }
    
    .contact-container {
        padding: 1.5rem 0.75rem;
    }
    
    .testimonials {
        padding: 1.5rem 0.75rem;
    }
    
    .newsletter {
        padding: 1.5rem 0.75rem;
    }
    
    .footer {
        padding: 1.5rem 0.75rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 1rem 2rem;
    }
    
    .hero-content {
        max-width: 60%;
    }
    
    .hero-visual {
        transform: scale(0.6);
        margin-top: 0;
    }
    
    .glitch {
        font-size: 2rem;
    }
    
    .nav-links {
        max-height: calc(100vh - 50px);
        padding: 1rem;
    }
    
    .nav-links a {
        padding: 0.5rem 0;
        min-height: 36px;
    }
}

/* Large tablets and small laptops */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 7rem 2rem 4rem;
    }
    
    .hero-content {
        max-width: 50%;
    }
    
    .features {
        padding: 3rem 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch device optimizations */
@media (pointer: coarse) {
    /* Increase tap targets on touch devices */
    .nav-links a,
    .cta-button,
    .submit-btn,
    .filter-btn,
    .category-btn,
    .add-to-cart,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch */
    .feature-card:hover,
    .menu-item:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    /* Add active states for touch feedback */
    .feature-card:active,
    .menu-item:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
    
    /* Disable cursor glow on touch */
    .cursor-glow {
        display: none !important;
    }
}

/* ============================================
   MENU PAGE STYLES
   ============================================ */
.menu-page {
    background: var(--dark-bg);
    padding-bottom: 5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 3rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    transition: var(--transition-medium);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    will-change: transform;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.25), 0 0 30px rgba(255, 0, 110, 0.1);
}

.menu-item:active {
    transform: translateY(-4px) scale(0.99);
}

.menu-item .item-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-item:hover .item-icon {
    transform: scale(1.15) rotate(5deg);
}

.menu-item .item-price {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu-item:hover .item-price {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.item-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.item-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

.item-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.menu-item h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.menu-item p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.item-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.item-tag.warning {
    background: rgba(255, 0, 110, 0.1);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.item-tag.premium {
    background: rgba(157, 0, 255, 0.1);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    animation: premium-glow 2s ease-in-out infinite;
}

@keyframes premium-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(157, 0, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(157, 0, 255, 0.8); }
}

.dietary-info {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.dietary-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
}

.specs-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.specs-list li {
    padding: 1rem;
    background: var(--card-bg);
    border-left: 3px solid var(--neon-cyan);
    color: var(--text-secondary);
    text-align: left;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-page {
    background: var(--dark-bg);
    padding-bottom: 5rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    top: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    width: 50%;
    text-align: center;
    padding: 0 2rem;
    opacity: 0.6;
}

.timeline-content {
    width: 50%;
    padding: 0 2rem;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.values {
    background: var(--darker-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.values h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.value-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
}

.value-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
}

.team {
    padding: 5rem 2rem;
    text-align: center;
}

.team h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--card-bg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.team-member:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    padding: 3px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.team-member h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--neon-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-page {
    background: var(--dark-bg);
    padding-bottom: 5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-form-section {
    background: var(--card-bg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--neon-pink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: var(--transition-medium);
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.submit-btn {
    display: inline-block;
    position: relative;
    padding: 1.2rem 3rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-bg);
    background: var(--neon-cyan);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-medium);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    margin-top: 1rem;
    will-change: transform;
}

.submit-btn:hover {
    color: var(--text-primary);
    background: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.submit-btn:focus-visible {
    outline: 3px solid var(--neon-cyan);
    outline-offset: 4px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
}

.submit-btn.success {
    background: #00ff64;
    color: var(--dark-bg);
    animation: btnSuccess 0.5s ease;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 600;
    display: none;
    border-radius: 4px;
    animation: formStatusSlide 0.3s ease;
}

@keyframes formStatusSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid #00ff64;
    color: #00ff64;
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.1);
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.1);
}

.location-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
}

.location-card {
    background: var(--card-bg);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--neon-cyan);
    transition: var(--transition-fast);
}

.location-card:hover {
    transform: translateX(10px);
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.location-card address {
    color: var(--text-secondary);
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.location-hours strong {
    color: var(--neon-pink);
}

.contact-methods {
    list-style: none;
}

.contact-methods li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.location-card.emergency {
    border-left-color: var(--neon-pink);
    background: rgba(255, 0, 110, 0.05);
}

.emergency-number {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-pink);
    animation: emergency-pulse 1s ease-in-out infinite;
}

@keyframes emergency-pulse {
    0%, 100% { text-shadow: 0 0 5px var(--neon-pink); }
    50% { text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink); }
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.map-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.map-point .pulse {
    display: block;
    width: 20px;
    height: 20px;
    background: var(--neon-pink);
    border-radius: 50%;
    position: relative;
}

.map-point .pulse::before,
.map-point .pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--neon-pink);
    animation: pulse-ring 2s ease-out infinite;
}

.map-point .pulse::after {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.map-point.active .pulse {
    background: var(--neon-cyan);
}

.map-point.active .pulse::before,
.map-point.active .pulse::after {
    background: var(--neon-cyan);
}

.point-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    background: var(--dark-bg);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--neon-cyan);
}

.map-note {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 5rem;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials .section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.testimonials .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    margin: 1rem auto 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    transition: var(--transition-medium);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 245, 255, 0.1);
}

.testimonial-card.featured {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.2);
}

.testimonial-card.featured:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(157, 0, 255, 0.4);
    border-color: var(--neon-purple);
}

.testimonial-card .author-avatar {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.testimonial-stars {
    color: var(--neon-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 1rem;
}

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

.author-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
}

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

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    padding: 5rem;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 245, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.newsletter-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2), inset 0 0 10px rgba(0, 245, 255, 0.05);
}

.newsletter-form input:not(:placeholder-shown):valid {
    border-color: #00ff64;
    box-shadow: 0 0 10px rgba(0, 255, 100, 0.2);
}

.newsletter-form input:not(:placeholder-shown):invalid {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .cta-button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

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

/* ============================================
   ADDITIONAL RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year,
    .timeline-content {
        width: 100%;
        text-align: left;
        padding-left: 60px;
    }
    
    .timeline-year {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-grid {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 1.5rem 3rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .location-card:hover {
        transform: none;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .testimonials {
        padding: 3rem 1.5rem;
    }
    
    .testimonials .section-title {
        font-size: 1.5rem;
    }
    
    .newsletter {
        padding: 3rem 1.5rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .cta-button {
        width: 100%;
    }
}

/* ============================================
   PAGE TRANSITIONS & LOADING
   ============================================ */

/* Page load animation - subtle fade only */
body {
    opacity: 0;
    animation: pageLoad 0.3s ease-out forwards;
}

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

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    body {
        animation: none;
        opacity: 1;
    }
    
    .glitch::before,
    .glitch::after {
        animation: none;
        display: none;
    }
    
    .neon-text {
        animation: none;
    }
    
    .steam {
        animation: none;
        opacity: 0.3;
    }
    
    .cursor-glow {
        display: none !important;
    }
}

/* Page transition overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--card-bg) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        var(--card-bg) 75%
    );
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 245, 255, 0.2);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

/* Fade in up */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children > *:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s forwards; }
.stagger-children > *:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s forwards; }
.stagger-children > *:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s forwards; }
.stagger-children > *:nth-child(4) { animation: fadeInUp 0.5s ease 0.4s forwards; }
.stagger-children > *:nth-child(5) { animation: fadeInUp 0.5s ease 0.5s forwards; }
.stagger-children > *:nth-child(6) { animation: fadeInUp 0.5s ease 0.6s forwards; }

/* Pulse glow */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    }
}

/* Shake animation for errors */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Bounce */
.bounce {
    animation: bounce 1s ease infinite;
}

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

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Touch action optimization */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly focus states */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

/* Smooth scrolling with reduced motion respect */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Form input zoom prevention on iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
    font-size: 16px;
}

@media (min-width: 769px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    textarea,
    select {
        font-size: 1.1rem;
    }
}

/* ============================================
   RESERVATIONS CTA SECTION
   ============================================ */
.reservations-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(189, 0, 255, 0.05) 100%);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    position: relative;
    overflow: hidden;
}

.reservations-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

.reservations-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    animation: borderGlow 3s ease-in-out infinite reverse;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reservations-cta h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.cta-feature:hover {
    background: rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Responsive for Reservations CTA */
@media (max-width: 768px) {
    .reservations-cta {
        padding: 3rem 1.5rem;
    }
    
    .reservations-cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .cta-feature {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}
