/**
 * Letter Left Behind — modern landing + booking shell
 * Colours align with brand: #1a1a2e, #e94560, #ffd700, purple accents
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Cinzel:wght@600;700&display=swap');

:root {
    --exo-ink: #0a0b14;
    --exo-surface: rgba(255, 255, 255, 0.055);
    --exo-surface-2: rgba(255, 255, 255, 0.09);
    --exo-border: rgba(255, 255, 255, 0.12);
    --exo-glow: rgba(233, 69, 96, 0.35);
    --exo-violet: #8b7cf6;
}

/* -------- Shared page background (landing + booking) -------- */
body.landing-page,
body.booking-page {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

body.landing-page::before,
body.booking-page::before {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(233, 69, 96, 0.12), transparent 50%),
        radial-gradient(ellipse 50% 35% at 0% 80%, rgba(102, 126, 234, 0.15), transparent 45%),
        linear-gradient(165deg, #0c0d18 0%, #141528 40%, #0f1022 100%);
}

/* -------- Landing header -------- */
.landing-header {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(12, 13, 24, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--exo-border);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.landing-brand:hover {
    background: rgba(255, 215, 0, 0.15);
}

.landing-brand .logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.landing-brand .logo-img-hover {
    display: none;
}

.landing-brand:hover .logo-img-default {
    display: none;
}

.landing-brand:hover .logo-img-hover {
    display: block;
}

.landing-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.landing-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.landing-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.landing-nav a[href='booking.html'] {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 18px var(--exo-glow);
}

.landing-nav a[href='booking.html']:hover {
    background: #ffd700;
    color: var(--primary-color);
}

.hamburger-btn {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--exo-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 12px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.landing-nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 21, 40, 0.96);
    backdrop-filter: blur(12px);
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--exo-border);
    min-width: 200px;
    z-index: 100;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.landing-nav-dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.92) !important;
}

.landing-nav-dropdown a:hover {
    background: rgba(255, 215, 0, 0.12);
}

.landing-nav-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .landing-nav {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .landing-nav-dropdown.open {
        display: block;
    }
}

/* -------- Full-bleed video hero (first block) -------- */
.landing-video-hero {
    position: relative;
    width: 100%;
    margin: 0;
}

/*
 * Explicit height + absolute layers: <video> often composites above in-flow siblings.
 * Stack: .landing-video-hero__bg (0) → scrim (1) → overlay (2), all position:absolute inset:0.
 */
.landing-video-hero__media {
    position: relative;
    width: 100%;
    /* Definite block size so absolute children fill the box (min-height alone can fail with only abs children) */
    height: min(88vh, 920px);
    min-height: 28rem;
    max-height: min(92vh, 960px);
    overflow: hidden;
    background: #0a0b14;
}

.landing-video-hero__bg {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.landing-video-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.landing-video-hero__scrim {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(6, 7, 14, 0.92) 0%, rgba(6, 7, 14, 0.45) 38%, rgba(6, 7, 14, 0.2) 55%, rgba(6, 7, 14, 0.35) 100%),
        radial-gradient(ellipse 90% 70% at 50% 40%, transparent 30%, rgba(10, 11, 20, 0.55) 100%);
}

.landing-video-hero__overlay {
    position: absolute;
    z-index: 10;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(24px, 6vw, 56px) clamp(18px, 4vw, 32px) clamp(32px, 7vw, 72px);
    box-sizing: border-box;
    pointer-events: none;
    transform: translateZ(0);
}

.landing-video-hero__inner {
    width: min(100%, 640px);
    text-align: center;
    pointer-events: auto;
}

.landing-video-hero__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.95);
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.75);
}

.landing-video-hero__title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.1rem, 6vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.65rem;
    color: #fff;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.85), 0 0 1px rgba(0, 0, 0, 0.9);
}

.landing-video-hero__tagline {
    font-size: clamp(0.98rem, 2.4vw, 1.12rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.35rem;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.landing-video-hero__price {
    display: block;
    margin-top: 0.35rem;
    font-weight: 700;
    color: #ffd700;
    font-size: 0.95em;
    letter-spacing: 0.02em;
}

.landing-video-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .landing-video-hero__media {
        height: min(78vh, 720px);
        min-height: 22rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-video-hero__video {
        opacity: 0.35;
    }
}

/* -------- Hero -------- */
.landing-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 18px 48px;
}

.landing-hero {
    margin-bottom: 2.5rem;
}

.landing-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0 1rem;
}

@media (max-width: 900px) {
    .landing-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .landing-hero__visual {
        order: -1;
    }
}

.landing-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.85);
    margin-bottom: 0.75rem;
}

.landing-hero__mark {
    max-width: 200px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.landing-hero__title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.65rem;
    background: linear-gradient(135deg, #ffeaa7 0%, #ffd700 40%, #fff8dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero__lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    max-width: 34rem;
    margin-bottom: 1.35rem;
    font-weight: 400;
}

.landing-hero__lead strong {
    color: #ffd700;
    font-weight: 600;
}

.landing-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

@media (max-width: 900px) {
    .landing-hero__cta {
        justify-content: center;
    }
    .landing-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }
}

.btn-ghost {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid var(--exo-border);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.landing-hero__figure {
    position: relative;
    margin: 0;
    text-align: center;
}

.landing-hero__character {
    max-width: min(100%, 340px);
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(233, 69, 96, 0.25));
    border-radius: 20px;
}

.landing-hero__caption {
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

.landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(233, 69, 96, 0.15);
    border: 1px solid rgba(233, 69, 96, 0.35);
    color: #ffb3c0;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Video placeholder */
.landing-media {
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    border-radius: 24px;
    background: var(--exo-surface);
    border: 1px solid var(--exo-border);
    text-align: center;
}

.landing-media > .section-title {
    margin-bottom: 0.35rem;
}

.landing-media__sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.landing-media__sub code {
    font-size: 0.85em;
    color: rgba(255, 215, 0, 0.7);
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-placeholder__inner {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    max-width: 320px;
}

.video-placeholder__play {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    font-size: 1.25rem;
    color: #ffd700;
    margin-bottom: 12px;
}

.video-placeholder__inner p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.45;
}

.video-placeholder__hint {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: ui-monospace, monospace;
}

/* Sections */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.feature-section {
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.section-accent {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.14), rgba(118, 75, 162, 0.1));
    color: #fff;
    border: 1px solid var(--exo-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.section-accent .section-title {
    color: #fff;
}

.section-card {
    background: var(--exo-surface);
    color: var(--text-light);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    margin-bottom: 1.5rem;
    border: 1px solid var(--exo-border);
    backdrop-filter: blur(8px);
}

.section-card .section-title {
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 1.25rem;
}

.feature-card {
    text-align: left;
    padding: 1.35rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    font-size: 0.92rem;
}

#why-choose .feature-card {
    background: rgba(255, 255, 255, 0.06);
}

.section-accent .about-intro {
    color: rgba(255, 255, 255, 0.78) !important;
}

.section-accent .about-subsection h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.12rem;
    color: #fff;
    margin: 1.35rem 0 0.55rem;
    font-weight: 600;
}

.section-accent .about-subsection:first-child h3 {
    margin-top: 0;
}

/* Who is it for? — flex row: copy left, guide right (narrow phones stack) */
#about .about-split {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    margin-top: 1.25rem;
    text-align: left;
    width: 100%;
}

.about-split__copy {
    flex: 1 1 0;
    min-width: 0;
}

.about-split__guide {
    flex: 0 0 clamp(220px, 30vw, 360px);
    width: clamp(220px, 30vw, 360px);
    max-width: 360px;
    position: sticky;
    top: 5.5rem;
    align-self: flex-start;
}

.about-guide-figure {
    margin: 0;
}

.about-archibald-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    filter: drop-shadow(0 16px 40px rgba(233, 69, 96, 0.28));
}

.about-split__caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    text-align: center;
}

@media (max-width: 480px) {
    #about .about-split {
        flex-direction: column;
        align-items: center;
    }

    .about-split__guide {
        position: static;
        flex: 1 1 auto;
        width: 100%;
        max-width: 320px;
    }

    .about-archibald-img {
        margin-left: auto;
        margin-right: auto;
    }
}

.section-accent .about-subsection p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0 0 0.25rem;
}

.section-accent .about-subsection p strong {
    color: #ffd700;
    font-weight: 600;
}

.section-accent .about-highlight-soft .about-letter-aside {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(245, 245, 250, 0.95) !important;
}

.section-accent .about-highlight-soft .about-letter-aside strong {
    color: #fff;
    font-weight: 600;
}

.about-highlight-soft .about-highlight-lead {
    color: #f5f5f5;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.about-highlight-soft {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    margin: 1.25rem 0;
}

.about-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 1.25rem;
}

.about-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-bullet-text {
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.5;
    font-size: 0.9rem;
}

.about-text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-size: 0.98rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-text strong {
    color: #ffd700;
}

.testimonials-section {
    background: var(--exo-surface);
    border: 1px solid var(--exo-border);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    margin-bottom: 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 1.25rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 16px;
    border-left: 3px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    font-size: 0.92rem;
}

.testimonial-author {
    font-weight: 600;
    color: #ffd700;
    font-size: 0.88rem;
    margin-top: 10px;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.faq-question {
    font-weight: 600;
    font-size: 0.98rem;
    padding: 16px 48px 16px 18px;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.06);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.75;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 32em;
    padding: 4px 18px 16px;
}

.cta-section {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    background: var(--exo-surface);
    border: 1px solid var(--exo-border);
    margin-bottom: 2rem;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.25rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.btn-booking {
    font-family: 'Outfit', sans-serif;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 28px var(--exo-glow);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn-booking:hover {
    transform: translateY(-2px);
    background: #ffd700;
    color: var(--primary-color);
    box-shadow: 0 10px 32px rgba(255, 215, 0, 0.25);
}

.btn-booking:focus,
.btn-booking:active {
    outline: none;
}

.support-links {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

.support-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}

.support-links a:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .hero-title,
    .landing-hero__title {
        font-size: 2rem;
    }
}

/* -------- Booking page shell -------- */
body.booking-page .booking-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 18px 56px;
}

body.booking-page .booking-header {
    margin-bottom: 28px;
}

body.booking-page .booking-header .booking-logo-link img {
    max-width: min(280px, 88vw);
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

body.booking-page .booking-intro {
    background: var(--exo-surface);
    border: 1px solid var(--exo-border);
    border-radius: 20px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    font-size: 0.98rem;
}

body.booking-page .booking-form {
    border-radius: 24px;
    padding: 2rem 1.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.booking-page .form-section h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

body.booking-page .form-group input,
body.booking-page .form-group select,
body.booking-page .form-group textarea {
    border-radius: 12px;
    border: 1px solid #e2e6ef;
    padding: 13px 14px;
}

body.booking-page .form-section {
    border-bottom-color: #eceff4;
}

.booking-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.booking-topbar a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--exo-border);
    transition: background 0.2s;
}

.booking-topbar a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffd700;
}

.support-links-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-links-fixed a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(20, 21, 40, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--exo-border);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.support-links-fixed a:hover {
    background: var(--accent-color);
    border-color: transparent;
}

@media (max-width: 480px) {
    .support-links-fixed {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.booking-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .booking-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .booking-header .game-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ffeaa7 0%, #ffd700 45%, #fff8dc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .booking-header .game-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            line-height: 1.55;
            max-width: 520px;
            margin: 0 auto;
        }

        .booking-header .time-machine-icon {
            text-align: center;
            margin-bottom: 1.25rem;
        }

        .booking-header .booking-logo-link {
            display: inline-block;
            padding: 8px 12px;
            border-radius: 8px;
            transition: background 0.25s;
            text-decoration: none;
        }

        .booking-header-logo {
            max-width: min(300px, 90vw);
            height: auto;
            display: block;
        }

        .booking-logo-fallback {
            display: none;
            font-size: 3rem;
        }

        .booking-header .booking-logo-link:hover {
            background: #ffd700;
        }

        .booking-intro {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.8;
        }

        .booking-form {
            background: var(--card-bg);
            color: var(--text-dark);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow-light);
        }

        .form-section {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 2px solid #e0e0e0;
        }

        .form-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .form-section h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .form-group label .required {
            color: var(--accent-color);
            margin-left: 3px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s;
        }

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

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group small {
            display: block;
            margin-top: 5px;
            color: #666;
            font-size: 0.85rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .payment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        .payment-option {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }

        .payment-option:hover {
            border-color: var(--accent-color);
            background: rgba(233, 69, 96, 0.05);
        }

        .payment-option input[type="radio"] {
            display: none;
        }

        .payment-option.selected {
            border-color: var(--accent-color);
            background: rgba(233, 69, 96, 0.1);
        }

        .payment-option label {
            cursor: pointer;
            margin: 0;
            font-weight: 500;
        }

        .refund-policy-intro {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 16px;
            margin-top: 16px;
            line-height: 1.55;
        }

        .refund-policy-list {
            margin: 0;
            padding-left: 1.25rem;
            color: #444;
            line-height: 1.6;
            font-size: 0.92rem;
        }

        .refund-policy-list > li {
            margin-bottom: 18px;
        }

        .refund-policy-list > li > strong {
            display: block;
            margin-bottom: 6px;
            color: #1a1a2e;
            font-size: 0.98rem;
        }

        .refund-policy-list ul {
            margin: 8px 0 0 0;
            padding-left: 1.15rem;
        }

        .refund-policy-list li p {
            margin: 6px 0 0 0;
        }

        .refund-policy-link {
            display: inline-block;
            margin-top: 10px;
            font-size: 0.9rem;
        }

        .refund-policy-link a {
            color: var(--accent-color);
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(26, 26, 46, 0.65);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        /* Force-hide payment overlay after success (some browsers need !important) */
        #booking-payment-modal-overlay.payment-overlay-hidden {
            display: none !important;
            visibility: hidden !important;
            pointer-events: none !important;
            opacity: 0 !important;
        }

        .modal-dialog {
            background: var(--card-bg);
            border-radius: 16px;
            max-width: 520px;
            width: 100%;
            max-height: 90vh;
            overflow: auto;
            padding: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
            position: relative;
        }

        .modal-dialog.wide {
            max-width: 640px;
        }

        .modal-dialog h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-family: 'Cinzel', serif;
        }

        .modal-close {
            position: absolute;
            top: 12px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            line-height: 1;
            color: #666;
        }

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

        #booking-payment-modal-overlay .modal-dialog {
            max-width: 520px;
        }

        #booking-payment-modal-overlay #payment-modal-title {
            margin: 0 36px 20px 0;
            padding-bottom: 4px;
        }

        /* Stripe split card fields (injected by stripe-booking-payment.js) */
        #booking-payment-modal-overlay .stripe-split-card-wrap {
            margin-top: 4px;
        }

        #booking-payment-modal-overlay .stripe-split-row-number {
            margin-bottom: 16px;
        }

        #booking-payment-modal-overlay .stripe-split-row-exp-cvc {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            align-items: flex-start;
        }

        #booking-payment-modal-overlay .stripe-split-col {
            min-width: 0;
        }

        #booking-payment-modal-overlay .StripeElement {
            padding: 12px 14px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background: #fff;
        }

        #payment-modal-error {
            color: #c0392b;
            font-size: 0.9rem;
            margin-top: 12px;
            min-height: 1.2em;
        }

        #payment-modal-summary {
            background: #f4f6fb;
            border: 1px solid #dfe3ec;
            border-radius: 10px;
            padding: 14px 16px;
            margin-bottom: 18px;
            font-size: 0.92rem;
            line-height: 1.45;
            color: #1a1a2e;
        }

        #payment-modal-summary .payment-modal-summary-title {
            margin: 0 0 10px 0;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #5c6370;
        }

        #payment-modal-summary .payment-modal-summary-row {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding: 4px 0;
            border-bottom: 1px solid #e8ebf2;
        }

        #payment-modal-summary .payment-modal-summary-row:last-of-type {
            border-bottom: none;
        }

        #payment-modal-summary .payment-modal-summary-label {
            color: #5c6370;
            flex-shrink: 0;
        }

        #payment-modal-summary .payment-modal-summary-value {
            text-align: right;
            font-weight: 600;
        }

        #payment-modal-summary .payment-modal-summary-total {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 2px solid #c5cbd8;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 1.05rem;
        }

        #payment-modal-summary .payment-modal-summary-total span:first-child {
            font-weight: 700;
            color: #1a1a2e;
        }

        #payment-modal-summary .payment-modal-summary-total .payment-total-amount {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--primary-color, #667eea);
        }

        #payment-modal-summary .payment-modal-summary-note {
            margin: 10px 0 0 0;
            font-size: 0.8rem;
            color: #6c757d;
        }

        #booking-payment-modal-overlay .payment-modal-processing {
            padding: 20px 8px 12px;
            text-align: center;
        }

        #booking-payment-modal-overlay .payment-modal-processing-lead {
            margin: 0 0 10px 0;
            font-size: 1.08rem;
            font-weight: 700;
            color: #1a1a2e;
        }

        #booking-payment-modal-overlay .payment-modal-processing-sub {
            margin: 0;
            font-size: 0.95rem;
            color: #5c6370;
            line-height: 1.5;
        }

        .submit-section {
            margin-top: 30px;
            text-align: center;
        }

        .booking-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            color: var(--text-dark);
        }

        .booking-success.show {
            display: block;
        }

        .booking-success h2 {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: #1a1a2e;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .booking-success p {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.8;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .error-message {
            color: var(--accent-color);
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border-color: var(--accent-color);
        }

        .form-errors {
            background: rgba(233, 69, 96, 0.1);
            border: 2px solid var(--accent-color);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .form-errors ul {
            margin: 0;
            padding-left: 20px;
        }

        .form-errors li {
            margin: 5px 0;
            font-weight: 500;
        }

        .datetime-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Number input spinner visibility - show on mobile */
        input[type="number"] {
            -moz-appearance: textfield;
            appearance: textfield;
        }
        
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
            display: none;
        }
        
        /* Show number input arrows on mobile */
        @media (max-width: 768px) {
            .datetime-inputs {
                grid-template-columns: 1fr;
            }
            
            input[type="number"]::-webkit-inner-spin-button,
            input[type="number"]::-webkit-outer-spin-button {
                -webkit-appearance: inner-spin-button;
                display: block;
                opacity: 1;
                height: 20px;
                width: 20px;
            }
        }
