/* =========================================================
   ILLUSION BRUSSELS — Main Stylesheet
   Bold, immersive, minimal design
   ========================================================= */

/* === CUSTOM PROPERTIES === */
:root {
    /* Palette */
    --color-bg:       #0a0a0a;
    --color-bg-alt:   #f2f0f5;
    --color-surface:  #1a1a1a;
    --color-text:     #ffffff;
    --color-text-dim: #999999;
    --color-text-dark: #1a1a2e;
    --color-text-dark-dim: #555566;
    --color-accent:   #a29bfe;
    --color-accent-2: #fd79a8;
    --color-accent-dark: #6c5ce7;
    --gradient-accent: linear-gradient(90deg, #6c5ce7, #a29bfe, #fd79a8, #e84393, #6c5ce7);

    /* Typography */
    --font-display: 'Archivo Black', Impact, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-pad:  2rem 0;
    --container-w:  1200px;
    --gap:          2rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s var(--ease-out);
    --transition-med:  0.6s var(--ease-out);
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

::selection {
    background: var(--color-accent);
    color: #fff;
}


/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* =========================================================
   NAVBAR — transparent → solid on scroll
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 3.5rem 0 1.5rem;
    transition: background var(--transition-fast),
                padding var(--transition-fast),
                box-shadow var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: invert(1) brightness(2);
    transition: height var(--transition-fast);
}

.page-home .logo img {
    filter: invert(1) brightness(2.5) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.navbar.scrolled .logo img {
    height: 52px;
}

.page-home .navbar.scrolled .nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: none;
}

.page-home .navbar.scrolled .lang-current {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.page-home .navbar.scrolled .logo img {
    filter: invert(1) brightness(2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.page-home .nav-links a {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
    color: #fff;
}

/* Nav book button — inherits .floating-cta styles, overrides only positioning */
.nav-book-btn {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 0.6rem 1.4rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
    animation: ctaGradientShift 4s ease-in-out infinite !important;
    animation-play-state: running !important;
    will-change: background-position;
    isolation: isolate;
    text-shadow: none !important;
}

.nav-book-btn:hover {
    filter: brightness(1.15) !important;
    box-shadow: 0 6px 36px rgba(232, 67, 147, 0.6) !important;
    transform: translateY(-2px) scale(1.05) !important;
    animation-play-state: paused !important;
}

.nav-book-btn .cta-icon {
    top: 2px;
}

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* === LANGUAGE PICKER === */
.lang-picker {
    position: relative;
    margin-left: 0.5rem;
    z-index: 10;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: color var(--transition-fast),
                border-color var(--transition-fast),
                background var(--transition-fast);
}

.page-home .lang-current {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.35);
}

.lang-current:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.lang-globe {
    flex-shrink: 0;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    display: none;
    flex-direction: column;
    min-width: 52px;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.open {
    display: flex;
}

.lang-option {
    display: block;
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    transition: background var(--transition-fast),
                color var(--transition-fast);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-option.active {
    color: var(--color-accent);
}


/* =========================================================
   HERO — fullscreen video + rotating phrases
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('/images/hero-poster.jpg') center/cover no-repeat;
    background: url('/images/hero-poster.webp') center/cover no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-video.playing {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 70% at center,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.15) 85%,
        rgba(0, 0, 0, 0.30) 100%
    );
}

/* === HERO SLIDESHOW — blurred photo carousel (used when no video) === */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
}

.hero-slideshow .hero-overlay {
    z-index: 2; /* above active slide (z-index: 1) */
    background: radial-gradient(
        ellipse 80% 70% at center,
        transparent 10%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Vignette intensity levels — toggled via hidden selector */
.hero-slideshow .hero-overlay.vignette-0 {
    background: none;
}
.hero-slideshow .hero-overlay.vignette-1 {
    background: radial-gradient(
        ellipse 85% 75% at center,
        transparent 20%,
        rgba(0, 0, 0, 0.10) 60%,
        rgba(0, 0, 0, 0.30) 100%
    );
}
.hero-slideshow .hero-overlay.vignette-2 {
    background: radial-gradient(
        ellipse 80% 70% at center,
        transparent 10%,
        rgba(0, 0, 0, 0.20) 60%,
        rgba(0, 0, 0, 0.50) 100%
    );
}
.hero-slideshow .hero-overlay.vignette-3 {
    background: radial-gradient(
        ellipse 75% 65% at center,
        transparent 5%,
        rgba(0, 0, 0, 0.30) 55%,
        rgba(0, 0, 0, 0.65) 100%
    );
}
.hero-slideshow .hero-overlay.vignette-4 {
    background: radial-gradient(
        ellipse 70% 60% at center,
        transparent 0%,
        rgba(0, 0, 0, 0.40) 50%,
        rgba(0, 0, 0, 0.80) 100%
    );
}

/* Vignette selector — hidden bottom-right control */
.vignette-selector {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    gap: 6px;
    opacity: 1;
    pointer-events: auto;
}
.vignette-selector.visible {
    opacity: 1;
    pointer-events: auto;
}
.vignette-selector button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    backdrop-filter: blur(4px);
}
.vignette-selector button.active {
    border-color: #fff;
    background: rgba(255,255,255,0.3);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transform: scale(0.88);
    /* No transition/will-change on inactive slides — prevents GPU layer
       accumulation that causes navbar flickering after many cycles. */
}

.hero-slide.active,
.hero-slide.prev {
    will-change: opacity, transform;
    transition: opacity 1.4s ease, transform 1.4s ease;
}

.hero-slide.active {
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}

.hero-slide.prev {
    transform: scale(1.12);
    opacity: 0;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(20px) brightness(0.85) saturate(1.4);
    transform: scale(1.15);
}

/* Phrase wrapper — centered block, sized for large type */
.hero-phrase-wrapper {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 1000px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phrase {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: var(--font-display);
    font-size: min(8.75vh, 5.6vw);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    opacity: 0;
}

.hero-phrase.active {
    opacity: 1;
}

/* Scroll indicator — mouse pictogram */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    transition: color var(--transition-fast);
    animation: scrollBounce 2.4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

/* Hero CTA — visible only on mobile, sits below hero phrases */
.hero-cta {
    display: none;
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #fd79a8, #e84393, #6c5ce7);
    background-size: 400% 100%;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.4);
    white-space: nowrap;
    animation: ctaGradientShift 4s ease-in-out infinite;
}

.hero-cta .cta-icon {
    font-size: 1.4em;
    line-height: 1;
    margin-right: 4px;
}

.scroll-indicator:hover {
    color: #fff;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.6));
}

.scroll-mouse {
    width: 30px;
    height: 48px;
    border: 2.5px solid currentColor;
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: currentColor;
    border-radius: 3px;
    margin-top: 8px;
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    50%  { opacity: 0;  transform: translateY(14px); }
    51%  { opacity: 0;  transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
}

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


/* =========================================================
   FEATURE BLOCKS — alternating image + text
   ========================================================= */
.feature-block {
    display: grid;
    grid-template-columns: 55% 45%;
    height: 35vh;
    min-height: 280px;
}

.feature-block.image-right {
    grid-template-columns: 45% 55%;
}

.feature-block.image-right .feature-image {
    order: 2;
}

.feature-block.image-right .feature-text {
    order: 1;
}

.feature-image {
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.feature-block:hover .feature-image img {
    transform: scale(1.03);
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
    color: #1a1a1a;
}

.feature-glow {
    position: relative;
    overflow: hidden;
}

.feature-glow > * {
    position: relative;
    z-index: 1;
}

/* Frozen glow blobs — same look as the old animated version
   (large blurred circles at opposite corners) but completely static.
   No animation, no will-change, no compositor layers. */
.feature-glow::before,
.feature-glow::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.feature-glow::before {
    background: var(--glow-c1);
    top: -10%;
    left: -10%;
}

.feature-glow::after {
    background: var(--glow-c2);
    bottom: -10%;
    right: -10%;
}

.feature-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #111;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    max-width: 480px;
}


/* =========================================================
   SECTION SHARED STYLES
   ========================================================= */
.tickets,
.hours,
.location,
.faq,
.contact {
    padding: var(--section-pad);
}

.tickets  { background: var(--color-bg-alt); }
.hours    { background: var(--color-bg); }
.location { background: var(--color-bg-alt); }
.faq      { background: var(--color-bg); }
.contact  { background: var(--color-bg-alt); }

/* --- Bright-section overrides (tickets, location, contact) ---
   These sections get a light background, so all text, borders,
   and UI elements switch to dark equivalents. */
.tickets,
.location,
.contact {
    color: var(--color-text-dark);
}

.tickets .section-header h2,
.location .section-header h2,
.contact .section-header h2 {
    color: var(--color-text-dark);
}

.tickets .section-header p,
.location .section-header p,
.contact .section-header p {
    color: var(--color-text-dark-dim);
}

.tickets .section-label,
.location .section-label,
.contact .section-label {
    color: var(--color-accent-dark);
}

/* Tickets section dark overrides */
.tickets .pricing-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
}

.tickets .pricing-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.tickets .pricing-card.featured {
    border-color: var(--color-accent-dark);
}

.tickets .pricing-title {
    color: var(--color-text-dark);
}

.tickets .pricing-value {
    color: var(--color-text-dark);
}

.tickets .pricing-currency {
    color: var(--color-accent-dark);
}

.tickets .pricing-old {
    color: var(--color-text-dark-dim);
}

.tickets .pricing-icon {
    color: var(--color-accent-dark);
}

.tickets .pricing-features li {
    color: var(--color-text-dark-dim);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.tickets .pricing-features li::before {
    color: var(--color-accent-dark);
}

.tickets .btn-book-tickets {
    background: var(--color-text-dark);
    color: #fff;
    border-color: var(--color-text-dark);
}

.tickets .btn-book-tickets:hover {
    background: #2a2a3e;
}

.tickets .price-note {
    color: var(--color-text-dark-dim);
}

.tickets .price-note-icon {
    color: var(--color-accent-dark);
}

/* Location section dark overrides */
.location .location-content {
    background: #fff;
}

.location .location-info h3 {
    color: var(--color-text-dark);
}

.location .location-info p {
    color: var(--color-text-dark-dim);
}

.location .location-address strong {
    color: var(--color-text-dark);
}

.location .location-icon {
    color: var(--color-accent-dark);
}

.location .landmark-tag {
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-text-dark-dim);
}

.location .landmark-icon {
    color: var(--color-accent-dark);
}

.location .btn-secondary {
    color: var(--color-text-dark);
    border-color: rgba(0, 0, 0, 0.25);
}

.location .btn-secondary:hover {
    border-color: var(--color-text-dark);
}

/* Contact section dark overrides */
.contact .contact-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
}

.contact .contact-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.contact .contact-card-icon {
    color: var(--color-accent-dark);
}

.contact .contact-card h4 {
    color: var(--color-accent-dark);
}

.contact .contact-card p {
    color: var(--color-accent-dark);
}

.contact .contact-card a,
.contact .contact-card a:visited {
    color: var(--color-accent-dark);
}

.contact .contact-card a:hover {
    color: var(--color-text-dark);
}

/* --- Diagonal section separators --- */
.diagonal-top,
.diagonal-bottom {
    position: relative;
    z-index: 1;
}

/* Each diagonal section must stack above the one below it
   so the ::after pseudo-element is not covered by the next section */
.tickets.diagonal-bottom   { z-index: 5; }
.hours.diagonal-bottom     { z-index: 4; }
.location.diagonal-bottom  { z-index: 3; }
.faq.diagonal-bottom       { z-index: 2; }
.contact                   { z-index: 1; position: relative; }

/* Diagonal on TOP of a section — the PREVIOUS section's colour bleeds down.
   The pseudo-element sits just above the section's content area and is
   coloured by the previous section. We use a CSS variable --diag-from set
   inline or via specific selectors below. */

/* Bottom diagonal: this section's colour extends down into the next.
   The slanted edge always rises from left to right. */
.diagonal-bottom::after {
    content: '';
    position: absolute;
    bottom: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

/* Extra spacing so diagonal doesn't overlap content */
.diagonal-bottom {
    padding-bottom: calc(80px + 1rem);
}

/* Per-section padding fine-tuning */
.tickets {
    padding-top: calc(2rem + 30px);
    padding-bottom: calc(80px + 0.5rem - 60px);
}

.hours {
    padding-top: calc(80px + 1rem + 20px);
    padding-bottom: calc(80px + 1rem - 80px);
}

.location {
    padding-top: calc(80px + 1rem + 10px);
    padding-bottom: calc(80px + 1rem - 20px);
}

.faq {
    padding-top: calc(80px + 1rem + 10px);
    padding-bottom: calc(80px + 1rem - 40px);
}

.contact {
    padding-top: calc(80px + 1rem + 10px);
    padding-bottom: calc(2rem + 20px);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-dim);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}


/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-book-tickets {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-book-tickets:hover {
    background: #222;
    transform: translateY(-2px);
}

.pricing-book {
    margin-bottom: 3rem;
}


/* =========================================================
   PRICING CARDS
   ========================================================= */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured {
    border-color: var(--color-accent-dark);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.pricing-icon {
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.pricing-icon svg {
    display: block;
    margin: 0 auto;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

/* When there's no .pricing-age subtitle, add equivalent spacing so prices align */
.pricing-card:not(:has(.pricing-age)) .pricing-title {
    margin-bottom: 1.55rem;
}

.pricing-age {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-dim);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-free {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-old {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-decoration: line-through;
    margin-bottom: 1.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--color-accent);
    font-weight: 700;
}

.price-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-dim);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.price-note-icon {
    color: var(--color-accent);
}


/* =========================================================
   HOURS
   ========================================================= */
.hours-content {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.hours-visual {
    position: absolute;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
}

.hours-clock {
    width: 224px;
    height: 224px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: #fff;
    border-radius: 3px;
}

.clock-hand-hour {
    width: 6px;
    height: 56px;
    transform: translateX(-50%) rotate(0deg);
}

.clock-hand-minute {
    width: 4px;
    height: 80px;
    transform: translateX(-50%) rotate(0deg);
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 1.5rem;
}

.hours-day {
    font-weight: 600;
    font-size: 1rem;
}

.hours-note-text {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-top: 0.15rem;
}

.hours-time {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-accent);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.hours-item.highlight-row {
    background: transparent;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.hours-last-entry {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.04em;
}

.hours-last-entry svg {
    flex-shrink: 0;
}


/* =========================================================
   LOCATION
   ========================================================= */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
}

.location-map {
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    line-height: 1;
}

.location-icon svg {
    display: block;
}

.location-info p {
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-landmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.landmark-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: var(--color-text-dim);
}

.landmark-icon {
    flex-shrink: 0;
    color: var(--color-accent);
}


/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-dim);
}


/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.2rem 0.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
}

.contact-card-icon {
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.contact-card-icon svg {
    display: block;
}

.contact-card h4 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--color-accent);
}

.contact-card a,
.contact-card a:visited {
    color: var(--color-accent);
    transition: color var(--transition-fast);
}

.contact-card a:hover {
    color: #fff;
}


/* =========================================================
   FLOATING CTA — bottom-right, appears on scroll
   ========================================================= */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.8rem;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #fd79a8, #e84393, #6c5ce7);
    background-size: 400% 100%;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.4);
    cursor: pointer;

    /* hidden by default, slides up when .visible */
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;

    /* gradient shift + pulse combined */
    animation: ctaGradientShift 4s ease-in-out infinite, ctaPulse 2.8s ease-in-out infinite;
    animation-play-state: paused;
}

.floating-cta .cta-icon {
    font-size: 2.4em;
    line-height: 1;
    position: relative;
    top: 1px;
    margin-right: 5px;
    margin-left: -3px;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation-play-state: running;
}

.floating-cta:hover {
    filter: brightness(1.15);
    box-shadow: 0 6px 36px rgba(232, 67, 147, 0.6);
    transform: translateY(-2px) scale(1.05);
    animation-play-state: paused;
}

/* Gradient shifts from violet → pink and back */
@keyframes ctaGradientShift {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

/* Scale pulse + glow pulse every ~2.8s */
@keyframes ctaPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 24px rgba(108, 92, 231, 0.4);
    }
    50% {
        transform: translateY(-3px) scale(1.08);
        box-shadow: 0 8px 40px rgba(232, 67, 147, 0.55), 0 0 20px rgba(162, 155, 254, 0.3);
    }
}


/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    padding: 3rem 0;
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 72px;
    width: auto;
    filter: invert(1) brightness(2);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.3rem;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-social a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

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

.footer-links a {
    color: var(--color-text-dim);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
}


/* =========================================================
   RESPONSIVE — mobile first breakpoints
   ========================================================= */

/* Tablet and below */
@media (max-width: 900px) {
    /* When menu is open, dim the background */
    .navbar.menu-open {
        background: transparent;
    }

    .navbar.menu-open.scrolled {
        background: rgba(10, 10, 10, 0.95);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 1rem;
        width: auto;
        min-width: 180px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
        background: rgba(15, 15, 15, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: right;
    }

    .nav-links a {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        display: block;
        padding: 0.6rem 1.2rem;
        letter-spacing: 0.08em;
        transition: background var(--transition-fast), color var(--transition-fast);
    }

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

    .nav-links .nav-book-btn {
        display: block !important;
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        background: none !important;
        box-shadow: none !important;
        animation: none !important;
        padding: 0.6rem 1.2rem !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        border-radius: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links .nav-book-btn:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #fff !important;
        filter: none !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .nav-links .nav-book-btn .cta-icon {
        display: none;
    }

    .lang-picker {
        margin-left: auto;
        margin-right: 0.75rem;
        flex-shrink: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 2;
        flex-shrink: 0;
    }

    .feature-block {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
    }

    .feature-block.image-right {
        grid-template-columns: 1fr;
    }

    .feature-block.image-right .feature-image {
        order: 0;
    }

    .feature-block.image-right .feature-text {
        order: 0;
    }

    .feature-image {
        height: 50vw;
        max-height: 300px;
    }

    .feature-text {
        padding: 2rem 1.5rem;
    }

    .hero-cta {
        display: inline-flex;
    }

    .scroll-indicator {
        display: none;
    }

    .hours-content {
        max-width: 100%;
    }

    .hours-visual {
        display: none;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 300px;
    }

    .location-info {
        padding: 2rem 1.5rem;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .diagonal-bottom::after {
        height: 40px;
        bottom: -39px;
    }

    .diagonal-bottom {
        padding-bottom: calc(40px + 1rem);
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone */
@media (max-width: 600px) {
    :root {
        --section-pad: 1.5rem 0;
    }

    .hero-phrase {
        font-size: min(7vh, 5.6vw);
    }

    .hero-phrase-wrapper {
        width: 96vw;
        max-width: none;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        text-align: left;
        padding: 1.2rem 1.2rem;
        gap: 0 1rem;
    }

    .pricing-icon {
        grid-row: 1 / 3;
        grid-column: 1;
        margin-bottom: 0;
    }

    .pricing-icon svg {
        width: 36px;
        height: 36px;
    }

    .pricing-title {
        grid-row: 1;
        grid-column: 2;
        font-size: 1.15rem;
        margin-bottom: 0;
    }

    .pricing-card:not(:has(.pricing-age)) .pricing-title {
        margin-bottom: 0;
    }

    .pricing-age {
        grid-row: 2;
        grid-column: 2;
        margin-bottom: 0;
        font-size: 0.72rem;
    }

    .pricing-amount {
        grid-row: 1 / 3;
        grid-column: 3;
        margin-bottom: 0;
    }

    .pricing-currency {
        font-size: 1.1rem;
    }

    .pricing-value {
        font-size: 2.2rem;
    }

    .pricing-free {
        font-size: 1.8rem;
    }

    .pricing-old {
        display: none;
    }

    .pricing-features {
        grid-column: 1 / -1;
        margin-bottom: 0;
        margin-top: 0.5rem;
    }

    .pricing-features li {
        padding: 0.3rem 0;
        font-size: 0.8rem;
    }

    .pricing-badge {
        top: -10px;
        font-size: 0.6rem;
        padding: 0.2rem 0.8rem;
        left: auto;
        right: 1rem;
        transform: none;
    }

    .pricing-card.featured {
        padding-top: 1.2rem;
    }

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

    .feature-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 2.5rem 0 1rem;
    }
}


/* =========================================================
   PRINT
   ========================================================= */
@media print {
    .navbar,
    .hero-video-container,
    .scroll-indicator,
    .footer-social { display: none; }

    body { background: #fff; color: #000; }
    .feature-text { background: #fff; }
    .section-header h2 { color: #000; }
}


/* =========================================================
   BOOKING PAGE
   ========================================================= */

/* --- Light navbar variant (black foreground, expanded only) --- */
.navbar-light:not(.scrolled) .logo img {
    filter: none;
}

.navbar-light:not(.scrolled) .nav-links a {
    color: rgba(0, 0, 0, 0.6);
}

.navbar-light:not(.scrolled) .nav-links a:hover {
    color: #000;
}

.navbar-light:not(.scrolled) .nav-toggle span {
    background: #1a1a2e;
}

.navbar-light:not(.scrolled) .lang-current {
    color: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar-light:not(.scrolled) .lang-current:hover {
    color: #000;
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 900px) {
    .navbar-light:not(.scrolled) .nav-links {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .navbar-light:not(.scrolled) .nav-links a {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar-light:not(.scrolled) .nav-links a:hover {
        background: rgba(0, 0, 0, 0.04);
        color: #000;
    }
}

/* --- Main layout + photo background --- */
.booking-main {
    min-height: 100vh;
    padding-top: 9rem;
    padding-bottom: 6rem;
    position: relative;
    background: url('/images/pictures/optimised/booking-bg-composed.jpg') center/cover no-repeat fixed;
    background: url('/images/pictures/optimised/booking-bg-composed.webp') center/cover no-repeat fixed;
}

.booking-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.booking-main .container {
    position: relative;
    z-index: 1;
}

/* --- Booking card (floating white card) --- */
.booking-card {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(108, 92, 231, 0.10);
    box-shadow:
        0 0 50px rgba(162, 155, 254, 0.18),
        0 20px 60px rgba(0, 0, 0, 0.10),
        0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 1.25rem 2.5rem 2.5rem;
    max-width: 680px;
    margin: 0 auto;
    color: #1a1a2e;
}

.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.02em;
    color: #1a1a2e;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: var(--color-accent-dark);
    font-weight: 500;
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* --- Step indicator --- */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    position: relative;
}

.step-dot[disabled] {
    cursor: default;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    border-radius: 15px;
    font-size: 0.78rem;
    font-weight: 700;
    background: #eeedf4;
    border: none;
    color: #aaa;
    transition: all var(--transition-fast);
}

.step-dot.active .step-num {
    background: var(--color-accent-dark);
    color: #fff;
}

.step-dot.done .step-num {
    background: #7be09f;
    color: #fff;
}

.step-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.step-dot.active .step-label {
    color: var(--color-accent-dark);
}

.step-dot.done .step-label {
    color: #7be09f;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 0.25rem;
    margin-bottom: 1.3rem;
    position: relative;
}

.step-line.filled {
    background: #7be09f;
}

/* --- Panel container --- */
.booking-panels {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

.booking-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.booking-panel.active {
    display: block;
}

.booking-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-panel.fading-out {
    opacity: 0;
    transform: translateY(-8px);
}

.panel-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a2e;
}

/* --- STEP 1: Date strip --- */
.date-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 0.85rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.date-strip::-webkit-scrollbar { display: none; }

.date-weekend-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-weekend-cards {
    display: flex;
    gap: 0.75rem;
}

.date-weekend-bar {
    display: block;
    margin-top: 0.25rem;
    padding: 2px 0;
    width: 100%;
    text-align: center;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent-dark);
    background: rgba(108, 92, 231, 0.12);
    border-radius: 20px;
    line-height: 1.3;
}

.date-swipe-hint {
    display: none;
}

.date-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    padding: 0.8rem 0.6rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: visible;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.date-card:hover {
    border-color: rgba(108, 92, 231, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.10);
}

.date-card.selected {
    border-color: var(--color-accent-dark);
    background: rgba(108, 92, 231, 0.10);
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.18);
}

.date-card .date-day {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.25rem;
}

.date-card .date-num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
    color: #1a1a2e;
}

.date-card .date-month {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Redesigned tier badges */
.date-card .date-badge {
    position: absolute;
    top: -10px;
    right: -8px;
    z-index: 2;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
    line-height: 1.15;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.date-badge.valley {
    background: linear-gradient(135deg, #d5f5e3, #a3e4bc);
    color: #1a7a42;
    border: none;
}

.date-badge.mid {
    background: linear-gradient(135deg, #fef3cd, #fde68a);
    color: #92600a;
    border: none;
}

.date-card .date-today {
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.4375rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.1rem 0.35rem;
    min-width: 3.2rem;
    text-align: center;
    background: rgba(108, 92, 231, 0.12);
    border-radius: 20px;
    line-height: 1.3;
    white-space: nowrap;
}

/* More dates toggle */
.more-dates-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto 0;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    background: none;
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.more-dates-toggle:hover {
    border-color: var(--color-accent-dark);
    background: rgba(108, 92, 231, 0.06);
}

/* Calendar */
.calendar-wrapper {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f7f5fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.calendar-wrapper.open {
    display: block;
    animation: panelFadeIn 0.3s ease;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-prev,
.cal-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a2e;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cal-prev:hover,
.cal-next:hover {
    border-color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
}

.cal-prev:disabled,
.cal-next:disabled {
    opacity: 0.3;
    cursor: default;
}

.cal-month {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #1a1a2e;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-header {
    font-size: 0.65rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0;
}

.cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 40px;
    position: relative;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(108, 92, 231, 0.08);
}

.cal-day.selected {
    background: var(--color-accent-dark);
    color: #fff;
}

.cal-day.disabled {
    color: rgba(0, 0, 0, 0.18);
    cursor: default;
}

.cal-day.empty {
    cursor: default;
}

.cal-day .cal-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-top: 2px;
}

.cal-dot.valley { background: #2ecc71; }
.cal-dot.mid    { background: #f0932b; }

/* Price legend */
.price-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #888;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.valley { background: #2ecc71; }
.legend-dot.mid    { background: #f0932b; }

/* --- STEP 2: Time slots --- */
.panel-date-display {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-accent-dark);
    font-weight: 600;
    margin: -0.75rem 0 1.5rem;
}

.time-groups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.time-group {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.time-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.time-group-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a2e;
}

.time-group-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent-dark);
}

.time-group-price .price-tag {
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.15rem 0.45rem;
    border-radius: 12px;
}

.time-group-price .price-tag.valley {
    background: linear-gradient(135deg, #d5f5e3, #a3e4bc);
    color: #1a7a42;
}

.time-group-price .price-tag.mid {
    background: linear-gradient(135deg, #fef3cd, #fde68a);
    color: #92600a;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: #1a1a2e;
}

.time-slot:hover {
    border-color: rgba(108, 92, 231, 0.3);
    background: rgba(108, 92, 231, 0.05);
}

.time-slot.pending {
    background: rgba(108, 92, 231, 0.25);
    border-color: rgba(108, 92, 231, 0.4);
    color: #1a1a2e;
    pointer-events: none;
}

.time-slot.selected {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}

.time-slot.past {
    opacity: 0.25;
    cursor: default;
}

.time-slot.taken {
    opacity: 0.35;
    cursor: not-allowed;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.04) 3px,
        rgba(0,0,0,0.04) 6px
    );
}

/* Inline feedback when clicking a disabled slot */
.slot-feedback {
    text-align: center;
    padding: 0.6rem 1rem;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e17055;
    background: rgba(225, 112, 85, 0.08);
    border-radius: 8px;
    animation: slotFeedbackIn 0.25s ease;
}

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

/* Fully booked day banner */
.fully-booked-msg {
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #d63031;
    background: rgba(214, 48, 49, 0.06);
    border: 1px solid rgba(214, 48, 49, 0.15);
    border-radius: 12px;
    line-height: 1.5;
}

/* Modify-error card (shown when modify link is expired/invalid) */
.modify-error-card {
    max-width: 520px;
    margin: 0 auto 3rem;
    padding: 3rem 2.5rem;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.08);
}

.modify-error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e17055, #d63031);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.modify-error-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.modify-error-card p {
    font-size: 0.95rem;
    color: #666677;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.modify-error-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: var(--color-accent-dark);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modify-error-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
}

.modify-error-phone svg {
    flex-shrink: 0;
}

/* Hold timer bar */
.hold-timer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    margin: -0.5rem 0 0.75rem;
    background: rgba(108, 92, 231, 0.06);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 0.01em;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hold-timer-bar.active {
    opacity: 1;
    visibility: visible;
}

.hold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7be09f;
    flex-shrink: 0;
    animation: holdDotBlink 1.2s ease infinite;
}

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

.hold-countdown {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    color: var(--color-accent-dark);
}

/* Slot-loading shimmer */
.time-slots-loading {
    text-align: center;
    padding: 2rem 0;
    color: rgba(0,0,0,0.35);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Optional tier dot inside time slot */
.time-slot .slot-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.slot-dot.valley { background: #2ecc71; }
.slot-dot.mid    { background: #f0932b; }

/* --- STEP 3: Group stepper --- */
.group-pickers {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.group-row {
    display: flex;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    gap: 1rem;
}

.group-row:last-child {
    border-bottom: none;
}

.group-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0eef5;
    color: var(--color-accent-dark, #5b2d8e);
    flex-shrink: 0;
}

.group-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.group-cat {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.group-desc {
    font-size: 0.75rem;
    color: #888;
}

.group-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    min-width: 60px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.price-original {
    text-decoration: line-through;
    color: #aaa;
    font-weight: 500;
    font-size: 0.7rem;
    margin-right: 0.15rem;
}

.group-price .price-original {
    display: block;
    margin-right: 0;
    line-height: 1;
}

.stepper {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f0eef5;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.stepper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
    user-select: none;
    -webkit-user-select: none;
}

.stepper-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.stepper-btn:active {
    background: rgba(0, 0, 0, 0.10);
}

.stepper-btn.disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

.stepper-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #1a1a2e;
}

/* Manual input that replaces stepper-count for large groups */
.stepper-input {
    width: 56px;
    height: 44px;
    font-size: 1.15rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
    color: #1a1a2e;
    background: #fff;
    border: none;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}
.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.group-max-msg,
.group-min-msg {
    display: none;
    text-align: center;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.group-max-msg {
    background: #fef3cd;
    border: 1px solid #fde68a;
    color: #92600a;
}

.group-max-msg.visible {
    display: block;
}

.group-min-msg {
    background: #fce4ec;
    border: 1px solid #f8bbd0;
    color: #c0392b;
}

.group-min-msg.visible {
    display: block;
}

.group-cap-msg {
    display: none;
    text-align: center;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #fff3e0;
    border: 1px solid #ffcc80;
    color: #e65100;
}

.group-cap-msg.visible {
    display: block;
}

.group-cap-msg .cap-counts {
    display: block;
    margin-top: 0.3rem;
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.85;
}

.group-toddler-msg {
    display: none;
    text-align: center;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #e8d5f5;
    border: 1px solid #d4b5e9;
    color: #5b2d8e;
}

.group-toddler-msg.visible {
    display: block;
}

.group-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #f7f5fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.total-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent-dark);
    font-variant-numeric: tabular-nums;
}

/* --- STEP 4: Details form --- */
.details-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 450px;
    margin: 0 auto;
}

.form-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

.form-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    padding-right: 2.5rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    color: #1a1a2e;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-field input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-field input:focus {
    border-color: var(--color-accent-dark);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.10);
}

.form-field input.invalid {
    border-color: #e74c3c;
}

.form-field input.valid {
    border-color: #2ecc71;
}

.field-check {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    font-size: 1rem;
    color: #2ecc71;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.field-check.visible {
    opacity: 1;
}

.form-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 0.25rem;
}

/* --- STEP 5: Summary --- */
.summary-card {
    background: #f7f5fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

.summary-value {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
    color: #1a1a2e;
}

.summary-total {
    background: rgba(108, 92, 231, 0.06);
}

.summary-total .summary-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-accent-dark);
}

.pay-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pay-note svg {
    flex-shrink: 0;
    color: var(--color-accent-dark);
    margin-top: 0.1rem;
}

.terms-note {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-bottom: 1.5rem;
}

.terms-note a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.btn-confirm-booking {
    display: block;
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-confirm-booking:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

/* --- SUCCESS screen --- */

/* --- Processing payment spinner (credit card shimmer) --- */
@keyframes processing-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.processing-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.processing-card-icon {
    position: relative;
    width: 72px;
    height: 50px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.30);
}

.processing-card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: processing-shimmer 1.8s ease-in-out infinite;
}

.processing-card-icon .card-chip {
    position: absolute;
    top: 12px;
    left: 10px;
    width: 18px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.processing-card-icon .card-stripe {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.success-content {
    text-align: center;
    padding: 2rem 0;
}

/* --- CHECK EMAIL screen (Alt 10: pulsing gradient glow ring) --- */
.check-email-content {
    text-align: center;
    padding: 2rem 0;
}

.check-email-ring-outer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(253, 121, 168, 0.15));
    margin-bottom: 1.5rem;
    animation: checkEmailPulse 2s ease-in-out infinite;
}

.check-email-ring-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent-2));
}

.check-email-ring-inner svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
}

@keyframes checkEmailPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

.check-email-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.check-email-content > p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 12px 0 8px;
}

.check-email-hint {
    font-size: 0.78rem;
    color: #aaa;
    margin-bottom: 24px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.success-content > p {
    color: #888;
    margin-bottom: 2rem;
}

/* ═══ TICKET — V3 Gradient Shadow Lift ═══ */
.success-ticket {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #fff;
    border: none;
    border-radius: 14px;
    max-width: 340px;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* --- Tear line --- */
.ticket-tear {
    position: relative;
    height: 26px;
    display: flex;
    align-items: center;
}
.ticket-tear hr {
    flex: 1;
    border: none;
    border-top: 2px dashed rgba(0, 0, 0, 0.07);
    margin: 0 1rem;
}

/* Circles with inset border */
.ticket-tear::before,
.ticket-tear::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(90deg, #d5d1e0, #f4f3fa);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.ticket-tear::before { left: -12px; background: linear-gradient(270deg, #d5d1e0, #f4f3fa); }
.ticket-tear::after  { right: -12px; }

/* --- Top section --- */
.ticket-top {
    padding: 1.1rem 1.1rem 0.6rem;
    text-align: center;
}

.ticket-site {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #bbb;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.ticket-heading {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-hero-time {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.15rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-hero-date {
    font-size: 0.82rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ticket-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

/* Flight-ticket label/value pairs */
.ticket-lbl {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.ticket-val {
    font-size: 0.85rem;
    color: #444;
    font-weight: 700;
}

/* --- Stub (below tear line) --- */
.ticket-stub {
    padding: 0.5rem 1.1rem 0.8rem;
    text-align: center;
}

.ref-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 0.15rem;
}

.ref-value {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #6c5ce7;
}

.booking-home-btn {
    margin-top: 1rem;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a2e;
}

/* --- Bottom nav bar --- */
.booking-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 620px;
    margin: 1.2rem auto 0;
    gap: 1rem;
}

.btn-back {
    padding: 0.75rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    color: #888;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-back:hover {
    border-color: rgba(0, 0, 0, 0.3);
    color: #1a1a2e;
}

.btn-back.hidden {
    visibility: hidden;
}

.btn-next {
    padding: 0.75rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-left: auto;
}

.btn-next:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.35);
}

.btn-next:disabled {
    opacity: 0.35;
    cursor: default;
    filter: none;
    transform: none;
    box-shadow: none;
}

.btn-next.hidden,
.booking-nav.hidden {
    display: none;
}

.booking-footer {
    padding-bottom: 1rem;
}

.booking-footer .footer-bottom {
    padding-bottom: 1rem;
}

/* --- Step 0: How many people? (segmented toggle) --- */

.how-many-subtitle {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.seg-bar {
    display: flex;
    background: #e4e3e8;
    border-radius: 12px;
    padding: 4px;
    max-width: 460px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.seg-item {
    flex: 1;
    padding: 0.65rem 0;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    user-select: none;
    border: none;
    background: transparent;
    font-family: inherit;
    min-width: 0;
}

.seg-item:not(.selected):hover {
    background: rgba(255, 255, 255, 0.45);
    color: #444;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.seg-item.selected {
    background: #fff;
    color: var(--color-accent-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.how-many-more-row {
    max-width: 460px;
    margin: 0 auto 1rem;
    text-align: center;
    animation: fadeSlideIn 0.25s ease;
}

.how-many-more-row label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.5rem;
}

.how-many-more-row input {
    width: 140px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 0.5rem;
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    outline: none;
    color: var(--color-accent-dark);
    font-family: inherit;
}

.how-many-more-row input::placeholder {
    font-weight: 400;
    font-size: 0.95rem;
    color: #bbb;
}

.how-many-more-row input:focus {
    border-color: var(--color-accent-dark);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12);
}

.how-many-large-notice {
    animation: fadeSlideIn 0.3s ease;
    max-width: 460px;
    margin: 0 auto 1rem;
}

.how-many-large-text {
    font-size: 0.88rem;
    color: var(--color-accent-dark);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.how-many-continue {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

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

/* --- Large group blocked dates --- */

.date-card.lg-blocked {
    opacity: 0.45;
    cursor: pointer;
    border-color: rgba(0, 0, 0, 0.06);
    background: #fff;
    padding-bottom: 1.6rem;
}

.date-card.lg-blocked:hover {
    transform: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    opacity: 0.55;
}

.date-card.lg-blocked .date-num {
    color: #ccc;
}

.lg-blocked-label {
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.38rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lg-blocked-toast {
    display: none;
    text-align: center;
    font-size: 0.78rem;
    color: #888;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin-top: 0.25rem;
    animation: fadeSlideIn 0.3s ease;
}

.lg-blocked-toast.visible {
    display: block;
}

/* Calendar blocked dates in large group mode */
.cal-day.lg-cal-blocked {
    color: #ddd;
    cursor: pointer;
    position: relative;
}

.cal-day.lg-cal-blocked:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ccc;
}

.lg-slots-note {
    font-size: 0.82rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* --- Booking responsive --- */
@media (max-width: 900px) {
    .booking-main {
        padding-top: 8rem;
    }

    .booking-card {
        padding: 1rem 1.5rem 2rem;
        border-radius: 20px;
    }

    .hold-timer-bar {
        margin: -0.25rem 0 0.75rem;
    }
}

@media (max-width: 600px) {
    .booking-main {
        padding-top: 9rem;
        padding-bottom: 6rem;
    }

    .booking-card {
        padding: 0.75rem 1rem 1.5rem;
        border-radius: 16px;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .hold-timer-bar {
        margin: -0.25rem 0 0.6rem;
        font-size: 0.73rem;
        padding: 0.35rem 0.6rem;
    }

    .booking-header h1 {
        font-size: 1.5rem;
    }

    .step-label {
        display: none;
    }

    .step-num {
        width: 34px;
        height: 26px;
        border-radius: 13px;
        font-size: 0.72rem;
    }

    .step-line {
        margin-bottom: 0;
    }

    .booking-steps {
        margin-bottom: 2rem;
    }

    .seg-bar {
        border-radius: 10px;
        padding: 3px;
    }

    .seg-item {
        padding: 0.5rem 0;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    .date-strip {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .date-card {
        min-width: 70px;
        flex-shrink: 0;
        padding: 0.6rem 0.4rem 1.3rem;
    }

    .date-card .date-badge {
        top: -8px;
        right: -6px;
        font-size: 0.5rem;
        padding: 0.15rem 0.35rem;
    }

    .date-card .date-num {
        font-size: 1.3rem;
    }

    .date-swipe-hint {
        display: block;
        text-align: center;
        font-size: 0.65rem;
        color: #aaa;
        margin-top: 0.3rem;
    }

    .time-slot {
        padding: 0.45rem 0.7rem;
        font-size: 0.75rem;
    }

    .group-row {
        gap: 0.5rem;
    }

    .group-price {
        font-size: 0.78rem;
    }

    .summary-row {
        padding: 0.8rem 1rem;
    }

    .booking-panel.active {
        padding-bottom: 0;
    }
}