/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #000000; /* Pure Black */
    --primary-dark: #111111; /* Soft Black */
    
    /* NEW BRAND COLORS (From Logo) */
    --brand-color: #00a8e8; /* Cyan Blue */
    --brand-dark: #003459; /* Deep Blue */
    --brand-gradient: linear-gradient(135deg, #0055ff 0%, #00d4ff 100%);
    
    --secondary: #1a1a1a; /* Very Dark Grey */
    --accent: #636e72; /* Grey */
    --light: #f0f8ff; /* Very Light Blue Tint */
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --shadow: 0 10px 30px rgba(0, 168, 232, 0.15); /* Blue tinted shadow */
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-text {
    color: var(--brand-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--brand-gradient);
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
    transform: translateY(-2px);
    border-color: transparent;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-gradient);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 2px solid transparent;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* UPDATED FOR SVG FILE */
.logo img, .footer-col .logo img {
    height: 32px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.nav-links a:hover {
    color: var(--brand-color);
}

.lang-toggle {
    font-size: 0.9rem;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600 !important;
}
.lang-toggle:hover {
    background: #f5f5f5;
    color: var(--brand-color) !important;
    border-color: var(--brand-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--secondary);
}

/* --- PAGE SECTIONS --- */
.page-content {
    display: none;
    padding-top: 80px;
    animation: fadeIn 0.5s ease;
    flex: 1;
}

.page-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header {
    background: linear-gradient(135deg, #023e8a 0%, #0096c7 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #023e8a, #00b4d8, #023e8a);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.content-block {
    padding: 0 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.content-block h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-left: 4px solid var(--brand-color);
    padding-left: 15px;
}

.content-block p {
    margin-bottom: 20px;
    color: #444;
}

/* --- HERO SECTION --- */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.mode-toggle-container {
    display: flex;
    align-items: center;
    background: #eee;
    width: fit-content;
    padding: 4px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.mode-btn {
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mode-btn.active {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-text h1 span {
    color: var(--brand-color);
    background: -webkit-linear-gradient(45deg, #0077b6, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 180, 216, 0.2);
    z-index: -1;
    transform: skewX(-10deg);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* --- BOOKING WIDGET --- */
.booking-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.1);
    border: 1px solid #e0f2fe;
}

.widget-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.widget-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.widget-tab.active {
    color: var(--brand-color);
    border-bottom-color: var(--brand-color);
}

.input-with-icon {
    position: relative;
    margin-bottom: 15px;
}

.input-with-icon svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--brand-color);
}

.widget-row {
    display: flex;
    gap: 15px;
}

/* --- COMPARISON TABLE --- */
.comparison-section {
    padding: 100px 0;
    background: var(--light);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    table-layout: fixed;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table th.highlight {
    background: var(--brand-gradient);
    color: white;
}

.comparison-table td {
    font-size: 1rem;
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: var(--brand-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cross-icon {
    color: #ff7675;
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- FEATURES SECTION --- */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--brand-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- CALCULATOR SECTION --- */
.calculator-section {
    padding: 100px 0;
    background: #f0f9ff;
}

.calc-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border: 1px solid #e0f2fe;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--brand-color);
}

.calc-result {
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--brand-color);
    opacity: 0.2;
    border-radius: 50%;
}

.calc-result h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.savings-amount {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 20px 0;
    color: var(--brand-color);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 100px 0;
    background: var(--light);
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    border: 2px solid var(--brand-color);
}

.step h3 {
    margin-bottom: 10px;
}

/* --- SAFETY SECTION --- */
.safety {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.safety::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.safety-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.safety-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.safety-text h2 span {
    color: var(--brand-color);
}

.safety-text p {
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.safety-list {
    list-style: none;
}

.safety-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.safety-list li svg {
    color: var(--brand-color) !important;
    stroke: var(--brand-color) !important;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 5px solid transparent;
    transition: var(--transition);
}

.review-card:hover {
    border-left-color: var(--brand-color);
    background: white;
    box-shadow: var(--shadow);
}

.stars {
    color: #fdcb6e;
    margin-bottom: 15px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    border-radius: 50%;
    background-image: linear-gradient(120deg, #d4d4d4 0%, #999999 100%);
}

/* --- NEWSLETTER SECTION --- */
.newsletter {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #eee;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 50px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--brand-color);
}

/* --- DOWNLOAD CTA --- */
.download-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);
    color: var(--white);
    position: relative;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, #023e8a, var(--brand-color), #023e8a);
}

.store-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-btn {
    background: var(--white);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.store-btn:hover {
    transform: scale(1.05);
    background: var(--brand-color);
    color: white;
}

/* --- FOOTER --- */
footer {
    background: #000000;
    color: #b2bec3;
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 1px solid #333;
    padding-bottom: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b2bec3;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--brand-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -100px; /* Start hidden off-screen */
    left: 0;
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    z-index: 10000; 
    display: flex; /* Changed from double display property */
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

/* This class moves it onto the screen */
.cookie-banner.show {
    bottom: 0; 
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-btn {
    background: var(--brand-color);
    border: none;
    padding: 8px 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    /* ... keep your other mobile styles ... */
    
    .nav-links {
        /* ... keep nav styles ... */
    }

    .mobile-sticky-bar { 
        display: flex; 
    } 

    /* FIX: Only apply 80px bottom IF the banner has the 'show' class */
    .cookie-banner.show { 
        bottom: 80px !important; 
    } 
    
    /* Ensure it hides correctly when 'show' is removed */
    .cookie-banner {
        bottom: -200px;
    }
}

/* --- MOBILE STICKY DOWNLOAD BAR --- */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: none; /* Hidden on Desktop */
    z-index: 1500;
    justify-content: space-between;
    align-items: center;
}
.sticky-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}
.sticky-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}
.sticky-btn {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* --- ADDITIONAL PAGE STYLES --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-color);
}

/* Interactive FAQ */
/* 1. Global Page Styling - Adds the light grey background */
body {
    background-color: #f4f6f8; /* Light grey background for depth */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 2. The Main White Card Container */
#faq-list-container {
    max-width: 800px;
    margin: 60px auto;
    background-color: #ffffff; /* White card */
    padding: 40px;
    border-radius: 12px;       /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft premium shadow */
}

/* 3. Category Headers (BOOKING, PAYMENTS) */
.category-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #888;          /* Grey text */
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

/* 4. The Individual Question Row */
.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

/* 5. The Question Clickable Area */
.faq-question {
    padding: 20px 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

/* Hover Effect - Makes it feel "alive" */
.faq-question:hover {
    color: #000;
    background-color: #f9f9f9;
    padding-left: 15px; /* Subtle slide effect */
}

/* 6. The Toggle Icon */
.faq-toggle-icon {
    font-size: 1.4rem;
    color: #007bff; /* ACCENT COLOR: Change this to your brand color */
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* 7. Active State (When Open) */
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: #000;
}

.faq-item.active .faq-question {
    font-weight: 600;
    color: #007bff; /* Highlights title in blue when open */
}

/* 8. The Answer Area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafafa; /* Slightly distinct background for answer */
    border-radius: 4px;
}

.answer-content {
    padding: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}
h1 {
    text-align: center;         /* Center the text */
    font-size: 2rem;            /* Smaller, cleaner size (was likely 3rem+) */
    font-weight: 700;           /* Bold but not heavy */
    color: #111;                /* Soft black */
    margin-top: 40px;           /* Space from top of browser */
    margin-bottom: 10px;        /* Pull it closer to the card */
    letter-spacing: -0.5px;     /* Modern tight spacing */
}

/* Optional: Add a small subtitle if you have one */
p.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { 
    box-shadow: var(--shadow); 
    transform: translateY(-5px);
}
.blog-img { height: 200px; background-color: #eee; width: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.3s; }
.blog-card:hover .blog-img { filter: grayscale(0%); }
.blog-content { padding: 20px; }

/* QR Code Modal for Desktop */
#qrModal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.qr-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    max-width: 400px;
}
.close-qr {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 968px) {
    .hero-text h1 { font-size: 2.8rem; }
    .calc-wrapper { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    /* Hide Comparison Table scroll on mobile */
    .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { left: 0; }
    .mobile-menu-btn { display: block; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .booking-widget { margin-top: 40px; }
    .safety-wrapper { grid-template-columns: 1fr; }
    .store-buttons { flex-direction: column; align-items: center; }
    .newsletter-form { flex-direction: column; }
    .mode-toggle-container { margin: 0 auto 25px auto; }
    .mobile-sticky-bar { display: flex; } /* Show bar on mobile */
    .cookie-banner { bottom: 80px; } /* Adjust for sticky bar */
}