/* 
   style.css 
   Modern Premium CSS - "Neon Play" Theme
   High-conversion aesthetic design with bento-box layout and glassmorphism.
*/

:root {
    --primary: #FF5E3A;
    --primary-gradient: linear-gradient(135deg, #FF5E3A 0%, #E11D48 100%);
    --primary-dark: #E11D48;
    --primary-light: rgba(255, 94, 58, 0.15);

    --secondary: #F8FAFC;
    --text-color: #94A3B8;
    --background: #0F172A;
    --bg-light: #1E293B;

    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;

    --shadow-neon: 0 0 20px rgba(255, 94, 58, 0.3);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll, MUST not be on html for iOS */
}

body.dark-theme {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
.logo,
.display-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--secondary);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-neon {
    color: var(--primary);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-300 {
    color: #d1d5db;
}

.font-bold {
    font-weight: 700;
}

.font-mono {
    font-family: monospace;
}

.text-sm {
    font-size: 0.875rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.w-full {
    width: 100%;
}

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

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.italic {
    font-style: italic;
}

/* Dynamic Background Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: floatOrb 20s infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 58, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    top: 40%;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
    bottom: 50px;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Glassmorphism Elements */
.glass-header {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
}

.glass-element {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.glass-input {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.glass-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 94, 58, 0.25);
}

.border-top-glass {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.border-bottom-glass {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn-neon {
    position: relative;
    background: transparent;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: -2;
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #0F172A;
    border-radius: 50px;
    z-index: -1;
    transition: var(--transition);
}

.btn-neon:hover::after {
    background: transparent;
}

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

.btn-neon-sm {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-ghost {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-solid-success {
    background: var(--success);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.btn-solid-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Header & Nav */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    letter-spacing: -0.5px;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--secondary);
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 16px;
}

.hamburger-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--secondary);
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    text-align: center;
}

.mobile-menu-list li {
    margin-bottom: 30px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

/* Hero Section */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px 120px;
    min-height: 80vh;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.display-title {
    font-size: 4.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta-group {
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
}

.trust-indicators {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: #94A3B8;
}

.trust-icon {
    color: #FCD34D;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.image-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 10px;
    z-index: 2;
}

.image-showcase img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 8px);
    display: block;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

.floating-stat {
    position: absolute;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    z-index: 3;
    animation: bounceSlow 4s infinite alternate;
}

.float-1 {
    top: 10%;
    right: -20px;
}

.float-2 {
    bottom: 10%;
    left: -20px;
    animation-delay: -2s;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes bounceSlow {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* Bento Grid Features */
.section-bento {
    padding: 100px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 48px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minMax(200px, auto);
    gap: 24px;
}

.bento-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.bento-card:hover {
    border-color: rgba(255, 94, 58, 0.3);
    transform: translateY(-4px);
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.large-icon {
    font-size: 4rem;
    margin: 0;
    opacity: 0.8;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-color);
}

.flex-row-bento {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bento-graphic {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 150px;
    background: radial-gradient(circle at bottom right, rgba(255, 94, 58, 0.2), transparent);
}

/* Gallery Marquee */
.section-gallery {
    padding: 80px 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.gallery-item {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-overlay span {
    color: white;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* Pricing Deck */
.section-pricing {
    padding: 100px 24px;
}

.pricing-deck {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    position: relative;
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.price-type {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
}

.price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 4px;
}

.period {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.price-req {
    font-size: 0.9rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
    margin-top: 8px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.check {
    color: var(--success);
    font-weight: bold;
}

.premium-pricing {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.glow-border {
    border-color: rgba(255, 94, 58, 0.4);
    box-shadow: 0 0 40px rgba(255, 94, 58, 0.1);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.glass-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #94A3B8;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: #94A3B8;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    color: #64748B;
    font-size: 0.9rem;
}

/* Booking Wizard Modal Overrides */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    margin: 20px auto;
    width: 95%;
    max-width: 1100px;
    max-height: 90vh; /* Fallback */
    max-height: 90dvh;
    padding-bottom: 20px;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slim-modal {
    max-width: 600px;
    padding: 40px;
    margin: 5vh auto;
    max-height: 90vh;
}

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

.close,
.close-wizard {
    color: var(--text-color);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close:hover,
.close-wizard:hover {
    color: var(--primary);
}

.wizard-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wizard-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.wizard-title-area h2 {
    margin: 0;
    font-size: 1.8rem;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.5;
}

.step-indicator.active {
    color: var(--secondary);
    opacity: 1;
}

.step-num {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.step-indicator.active .step-num {
    background: var(--primary);
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 16px;
}

.wizard-body {
    padding: 20px 40px 30px;
}

.step-desc {
    color: var(--text-color);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Grid Forms */
.grid-2-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* Delivery Options Cards */
.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.option-card {
    padding: 24px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    border-radius: var(--radius);
}

.option-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.option-card.active {
    border-color: var(--primary);
    background: rgba(255, 94, 58, 0.05);
}

.opt-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.option-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.option-card p {
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.custom-checkbox input {
    margin-top: 4px;
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.custom-checkbox label {
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1.5;
}

.hover-line:hover {
    text-decoration: underline;
}

/* Alerts */
.error-txt {
    color: var(--danger);
    font-size: 0.9rem;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #FBBF24;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 0.9rem;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #FCA5A5;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
}

/* Kalender Specifics */
.kalender-wrapper {
    margin: 0 auto;
    max-width: 320px;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cal-btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-btn-glass:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.cal-day:hover:not(.disabled):not(.booked) {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.cal-day.disabled {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: transparent;
}

.cal-day.booked {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.2);
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-day.selected {
    background: var(--primary-gradient);
    color: white !important;
    border-color: transparent;
    font-weight: bold;
    box-shadow: var(--shadow-neon);
    transform: scale(1.05);
    z-index: 2;
}

.cal-day.in-range {
    background: rgba(255, 94, 58, 0.15);
    color: var(--primary) !important;
    border-color: rgba(255, 94, 58, 0.3);
}

.cal-legend {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--text-color);
    justify-content: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot.available {
    background: rgba(16, 185, 129, 0.4);
    border: 1px solid #10B981;
}

.dot.booked {
    background: rgba(239, 68, 68, 0.3);
    border: 1px solid #EF4444;
}

.dot.selected-dot {
    background: var(--primary);
    box-shadow: 0 0 5px var(--primary);
}

.live-price-preview {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .floating-stat {
        transform: scale(0.8);
    }
    .float-1 { right: 0; }
    .float-2 { left: 0; }

    .hero-cta-group {
    flex-wrap: wrap;
        justify-content: center;
    }

    .display-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .trust-indicators {
    flex-wrap: wrap;
    justify-content: center;
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-span-2 {
        grid-column: span 1;
    }

    .flex-row-bento {
        flex-direction: column;
        text-align: center;
    }

    .pricing-deck {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-controls {
        display: flex;
    }

    .step-txt {
        display: none;
    }
}

@media (max-width: 600px) {
    .modal-content {
        margin: 10px auto 0 auto;
        width: 100%;
        max-height: 95vh; /* Safe for mobile browsers */
        max-height: 95dvh;
        border-radius: 12px 12px 0 0;
    }

    .grid-2-form {
        grid-template-columns: 1fr;
    }

    .delivery-options {
        grid-template-columns: 1fr;
    }

    .wizard-body {
        padding: 20px 20px 150px 20px; /* Extra bottom padding for mobile scroll */
    }

    .wizard-header {
        padding: 20px 20px 10px;
    }

    .step-indicator {
        gap: 4px;
    }

    .step-line {
        margin: 0 8px;
    }
}

/* --- Improved Lightbox Styles --- */
.glass-modal {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.85);
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 5000;
    transition: transform 0.3s ease;
}

.close-lightbox:hover {
    transform: scale(1.2);
    color: var(--primary);
}

.lightbox-nav-btns {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 30px;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 5000;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.lightbox-container {
    max-width: 85%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: calc(85vh - 40px);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .nav-btn {
        padding: 10px 15px;
        font-size: 20px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .close-lightbox {
        right: 15px;
        top: 10px;
        font-size: 40px;
    }

    .lightbox-container {
        max-width: 95%;
    }
}