/* ==========================================================================
   ICE BAR EXPERIENCE - System Stylesheet
   Design Language: Frost Glassmorphism, Dark Glacial, Neon Highlights
   ========================================================================== */

:root {
    --bg-dark: #050b14;
    --bg-card: rgba(12, 25, 46, 0.65);
    --bg-card-hover: rgba(20, 38, 68, 0.85);
    --border-ice: rgba(0, 242, 254, 0.25);
    --border-glow: rgba(0, 242, 254, 0.6);
    
    --color-primary: #00f2fe;
    --color-secondary: #4facfe;
    --color-accent-pink: #ff0055;
    --color-text-main: #f0f7ff;
    --color-text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-ice: 0 8px 32px 0 rgba(0, 242, 254, 0.15);
    --shadow-pink: 0 8px 32px 0 rgba(255, 0, 85, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Canvas Snow */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gap-sm {
    gap: 15px;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 3;
}

.subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-ice);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-ice);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #040914;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.7);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 11, 20, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-ice);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    line-height: 1;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section - CORREGIDO PARA HOSTING */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero_chicos_bar.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 140px 20px 80px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 11, 20, 0.25) 0%, rgba(5, 11, 20, 0.88) 85%);
    z-index: 1;
    animation: partyLights 8s ease-in-out infinite alternate;
}

@keyframes partyLights {
    0% {
        box-shadow: inset 0 0 100px rgba(0, 242, 254, 0.35);
    }
    33% {
        box-shadow: inset 0 0 120px rgba(255, 0, 85, 0.3);
    }
    66% {
        box-shadow: inset 0 0 130px rgba(79, 172, 254, 0.4);
    }
    100% {
        box-shadow: inset 0 0 110px rgba(0, 242, 254, 0.45);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
}

.hero-logo-box {
    margin-bottom: 25px;
}

.hero-bear-logo, .hero-typo-logo {
    height: 140px;
    max-width: 620px;
    width: auto;
    filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.9)) drop-shadow(0 0 70px rgba(0, 242, 254, 0.5));
    animation: floatLogo 4s ease-in-out infinite, sparklesGlow 2.5s ease-in-out infinite alternate;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sparklesGlow {
    0% {
        filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.8)) drop-shadow(0 0 45px rgba(255, 0, 85, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(0, 242, 254, 1)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 110px rgba(0, 242, 254, 0.7));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.85)) drop-shadow(0 0 55px rgba(255, 0, 85, 0.5));
    }
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid var(--border-glow);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

/* Pet Friendly Animated Badge */
.pet-friendly-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid var(--border-glow);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-top: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    animation: petPulse 3s ease-in-out infinite alternate;
}

.pet-friendly-badge .pet-icon {
    height: 38px;
    width: auto;
    animation: pawWiggle 2.5s ease-in-out infinite;
}

@keyframes petPulse {
    0% {
        transform: scale(1);
        border-color: rgba(0, 242, 254, 0.4);
        box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    }
    50% {
        transform: scale(1.04);
        border-color: rgba(0, 242, 254, 0.95);
        box-shadow: 0 0 35px rgba(0, 242, 254, 0.7), 0 0 15px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: scale(1);
        border-color: rgba(0, 242, 254, 0.4);
        box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    }
}

@keyframes pawWiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
}

.hero-title {
    font-size: 4.2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 242, 254, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(240, 247, 255, 0.9);
    max-width: 760px;
    margin: 0 auto 36px auto;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
    margin: -5px auto 36px auto;
}

.hero-features-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(12, 25, 46, 0.7);
    border: 1px solid var(--border-ice);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    text-align: left;
}

.feature-item .icon {
    font-size: 1.8rem;
}

.feature-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.feature-item small {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Timeline Cards */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.timeline-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-ice);
    border-radius: var(--radius-md);
    padding: 36px 24px 28px 24px;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-ice);
    background: var(--bg-card-hover);
}

.feature-card {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-ice);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #040914;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.timeline-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.timeline-card p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.glass-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-ice);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    object-fit: cover;
}

.museum-image-wrap .glass-img {
    border: 1px solid rgba(0, 242, 254, 0.5);
    filter: brightness(1.12) contrast(1.1) saturate(1.2);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.4), 0 16px 40px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.museum-image-wrap .glass-img:hover {
    transform: scale(1.025);
    filter: brightness(1.22) contrast(1.15) saturate(1.3);
    box-shadow: 0 0 55px rgba(0, 242, 254, 0.7), 0 20px 50px rgba(0, 0, 0, 0.85);
}

.drinks-image-wrap, .museum-image-wrap {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: rgba(5, 11, 20, 0.9);
    border: 1px solid var(--border-glow);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);
    backdrop-filter: blur(10px);
}

.drinks-list {
    list-style: none;
    margin: 24px 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drinks-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.drinks-list .check {
    background: rgba(0, 242, 254, 0.15);
    color: var(--color-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.museum-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.m-feat {
    background: var(--bg-card);
    border: 1px solid var(--border-ice);
    padding: 20px;
    border-radius: var(--radius-md);
}

.m-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.m-feat h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.m-feat p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Interactive Experience Card (Y LOVE ICE BAR) */
.qr-card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-top: 24px;
    padding: 22px 24px;
    border: 1px solid var(--border-glow);
    background: rgba(0, 242, 254, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.qr-card-box:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 35px rgba(0, 242, 254, 0.35);
    transform: translateY(-2px);
}

.qr-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-anchor: middle;
    text-align: center;
}

.qr-text .qr-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.qr-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 22px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: var(--radius-full);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.qr-link:hover {
    background: var(--color-primary);
    color: #050b14;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.7);
}

/* Reservation Section */
.reservation-card {
    padding: 50px;
}

.res-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.rh-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.rh-icon {
    font-size: 1.3rem;
}

.booking-form {
    background: rgba(5, 11, 20, 0.7);
    border: 1px solid var(--border-ice);
    padding: 30px;
    border-radius: var(--radius-md);
}

.booking-form h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text-main);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(12, 25, 46, 0.8);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.form-summary {
    background: rgba(0, 242, 254, 0.08);
    border: 1px dashed var(--border-glow);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-ice);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--color-text-muted);
    display: none;
}

.faq-item.active {
    border-color: var(--color-primary);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Location Section */
.loc-card {
    padding: 30px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loc-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.loc-icon {
    font-size: 1.5rem;
}

.map-wrap iframe {
    border-radius: var(--radius-md);
}

/* Footer */
.footer {
    background: #02050a;
    border-top: 1px solid var(--border-ice);
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-muted);
    max-width: 380px;
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 14px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.social-icons a:hover {
    background: rgba(0, 242, 254, 0.2);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    transform: translateX(4px);
}

.social-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 242, 254, 0.15);
    padding: 24px 0;
    background: rgba(3, 7, 14, 0.95);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright-text {
    color: rgba(240, 247, 255, 0.7);
}

.author-credit {
    color: rgba(240, 247, 255, 0.85);
    font-weight: 500;
}

.author-name {
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 11, 20, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .status-badge {
        display: none;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .reservation-card {
        padding: 24px;
    }
}