/* =============================================
   VCINEMAS CINEMAS — Main Stylesheet
   Color Scheme: Deep Navy + Gold + Crimson
   ============================================= */

:root {
    --navy: #0a0e1a;
    --navy-2: #111827;
    --navy-3: #1c2639;
    --gold: #e63946;
    --gold-light: #ff6b6b;
    --gold-dark: #c62d39;
    --crimson: #c0392b;
    --white: #ffffff;
    --off-white: #f5f0e8;
    --text-dark: #1a1a2e;
    --text-muted: #8892a4;
    --border: rgba(230, 57, 70, 0.2);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 30px rgba(230, 57, 70, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

/* SECTION HEADINGS */
.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-tag.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-title.light {
    color: var(--white);
}

.section-title span {
    color: var(--gold);
}

/* ============ GLOBAL PAGE HEADER (Standardized) ============ */
.page-header {
    position: relative;
    padding: 12rem 0 6rem;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.page-header h1 span {
    color: var(--gold);
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.03em;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-gold-sm {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold-sm:hover {
    background: var(--gold-light);
}

/* ============ TOPBAR ============ */
.topbar {
    background: var(--navy);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

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

.topbar-left {
    display: flex;
    gap: 1.5rem;
}

.topbar-right {
    display: flex;
    gap: 1rem;
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.topbar-right a:hover {
    color: var(--gold);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.97);
    padding: 0.8rem 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar.at-top {
    top: 36px;
}

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

.logo {
    display: block;
    background-image: url("../uploads/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    width: 130px;
    height: 90px;
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.footer-logo.logo {
    width: 160px;
    height: 110px;
    margin-bottom: 1.5rem;
}

/* Hide the old text/star spans everywhere */
.logo span {
    display: none !important;
}

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

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy-2);
    min-width: 200px;
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 0 !important;
}

.dropdown-menu li a:hover {
    color: var(--gold) !important;
    background: rgba(212, 160, 23, 0.08);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============ HERO CAROUSEL ============ */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Each slide */
.hc-slide {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.hc-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: all;
    position: relative;
}

/* Background image per slide */
.hc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    animation: hcPan 18s ease-in-out infinite alternate;
}

.hc-slide.active .hc-bg {
    animation-play-state: running;
}

.hc-slide:not(.active) .hc-bg {
    animation-play-state: paused;
}

@keyframes hcPan {
    from {
        transform: scale(1.06) translateX(0);
    }

    to {
        transform: scale(1.06) translateX(-2%);
    }
}

/* Dark overlay */
.hc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 14, 26, 0.96) 0%,
            rgba(10, 14, 26, 0.82) 45%,
            rgba(10, 14, 26, 0.30) 100%);
}

/* Content inside slide */
.hc-content {
    position: relative;
    z-index: 2;
    padding: 9rem 3rem 4rem 3rem;
    max-width: 700px;
    width: 100%;
    animation: hcFadeUp 0.8s ease both;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hc-slide.active .hc-content {
    animation-name: hcFadeUp;
}

@keyframes hcFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow buttons */
.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.hc-prev {
    left: 1.5rem;
}

.hc-next {
    right: 1.5rem;
}

/* Dot indicators */
.hc-dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.6rem;
}

.hc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hc-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* Progress bar at bottom */
.hc-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hc-progress-fill {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s linear;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-align: left;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    display: block;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.75;
    text-align: left;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: left;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: bounce 1.5s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}

/* ============ NOW SHOWING SLIDER ============ */
.ns-slider-wrap {
    position: relative;
    max-width: 100%;
}

.ns-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
    scrollbar-width: none;
    /* Firefox */
}

.ns-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.ns-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(25% - 1.5rem);
    scroll-snap-align: start;
}

.ns-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--navy);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.ns-slider-arrow:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.ns-prev {
    left: -22px;
}

.ns-next {
    right: -22px;
}

@media(max-width:1100px) {
    .ns-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

@media(max-width:900px) {
    .ns-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media(max-width:600px) {
    .ns-card {
        flex: 0 0 85%;
    }

    .ns-slider {
        gap: 1rem;
    }

    .ns-slider-arrow {
        display: none;
    }

    /* Hide arrows on mobile, rely on swipe */
}

/* ============ STATS ============ */
.stats {
    background: var(--gold);
    padding: 2.5rem 0;
}

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

.stat-card {
    padding: 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.75;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============ NOW SHOWING ============ */
.now-showing {
    background: #f9f6f0;
}

/* ── Now Showing Slider ── */
.ns-slider {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.ns-slide {
    display: none;
    animation: nsFadeIn 0.5s ease;
    width: 100%;
}

.ns-slide.active {
    display: block;
}

@keyframes nsFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Split Layout */
.ns-slide-split {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

@media(max-width: 900px) {
    .ns-slide-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem;
    }
}

/* Left Poster */
.ns-slide-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ns-slide-poster:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.ns-slide-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ns-slide-poster:hover::after {
    opacity: 1;
}

/* Badge */
.ns-slide-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--crimson, #e63946);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Play Trailer Overlay */
.ns-slide-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.ns-slide-poster:hover .ns-slide-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.ns-play-circle {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ns-slide-play-btn span {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Right Info Panel */
.ns-slide-info {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
}

@media(max-width: 900px) {
    .ns-slide-info {
        padding-right: 0;
    }
}

.ns-slide-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ns-genre {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ns-rating-badge {
    background: var(--navy);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.ns-slide-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ns-slide-desc {
    font-size: 1.05rem;
    color: rgba(10, 14, 26, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ns-slide-showtimes {
    background: #fdfaf5;
    border-left: 4px solid var(--gold);
    padding: 1.25rem 1.75rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2.5rem;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--gold);
}

.ns-showtime-label {
    display: block;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ns-showtime-times {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.ns-slide-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ns-slide-book {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.ns-slide-trailer-btn {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(10, 14, 26, 0.2);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.ns-slide-trailer-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* Slider controls */
.ns-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.ns-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.ns-arrow:hover {
    background: var(--navy);
    color: #fff;
}

.ns-dots {
    display: flex;
    gap: 0.5rem;
}

.ns-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 14, 26, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.ns-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}


.ns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

/* Featured (first) card is larger */
.ns-card.ns-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ns-card.ns-featured .ns-img-wrap {
    aspect-ratio: auto;
    height: 100%;
    min-height: 360px;
}

.ns-card.ns-featured .ns-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.ns-card.ns-featured .ns-title {
    font-size: 1.6rem;
}

.ns-card {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ns-img-wrap {
    position: relative;
    aspect-ratio: 3/4; /* Reduced height from 2/3 */
    overflow: hidden;
    background: #111;
}

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

.ns-card:hover .ns-img-wrap img {
    transform: scale(1.08);
}

/* ============ REFINED MOVIE CARDS ============ */
.movie-grid-premium {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.premium-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.premium-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.premium-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card:hover .premium-img-wrap img {
    transform: scale(1.1);
}

.premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.premium-card:hover .premium-overlay {
    opacity: 1;
}

.premium-info {
    padding: 1rem 1.25rem 1.25rem;
}

.premium-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.premium-showtimes {
    background: var(--off-white);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    margin: 0.65rem 0 0;
    font-size: 0.82rem;
}


/* Trailer Section */
.upcoming-trailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.trailer-card {
    background: var(--navy-2);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.trailer-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.trailer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.trailer-thumb:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    transition: var(--transition);
}

.trailer-thumb:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--gold-light);
}

.ns-featured-ribbon {
    position: absolute;
    top: 16px;
    right: -26px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 2.5rem;
    transform: rotate(40deg);
    text-transform: uppercase;
}

/* Hover overlay — shows showtimes */
.ns-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ns-card:hover .ns-hover-overlay {
    opacity: 1;
}

.ns-showtimes {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.ns-showtime-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ns-showtime-times {
    font-size: 0.8rem;
    color: var(--navy);
    line-height: 1.5;
}

.ns-hover-overlay .ns-showtime-times {
    color: rgba(255, 255, 255, 0.88);
}

/* Card info block */
.ns-info {
    padding: 1.25rem;
}

.ns-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.ns-genre {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ns-rating-badge {
    font-size: 0.68rem;
    font-weight: 700;
    background: var(--navy);
    color: #fff;
    padding: 0.15rem 0.55rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.ns-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.ns-details {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Per-card booking buttons */
.ns-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.ns-book-btn {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    text-align: center;
    flex: 1;
}

.ns-bms {
    background: #cc0000;
    color: #fff;
}

.ns-bms:hover {
    background: #a50000;
    transform: translateY(-1px);
}

.ns-district {
    background: #e23744;
    color: #fff;
}

.ns-district:hover {
    background: #c02030;
    transform: translateY(-1px);
}

/* ============ BOOK NOW ============ */
.book-now-section {
    background: var(--navy);
    padding: 5rem 0;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.book-now-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.book-now-text .section-tag {
    color: var(--gold-light) !important;
}

.book-now-text h2 {
    font-family: var(--font-display) !important;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.book-now-text h2 span {
    color: var(--gold);
    font-style: italic;
}

.book-now-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.book-now-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-platform-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.4rem 1.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.book-platform-btn:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.book-bms {
    background: #cc0000;
    border-color: #cc0000;
}

.book-bms:hover {
    background: #aa0000;
    border-color: #aa0000;
}

.book-district {
    background: #e23744;
    border-color: #e23744;
}

.book-district:hover {
    background: #bf2e39;
    border-color: #bf2e39;
}

.bp-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.bp-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bp-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.bp-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.15rem;
}

.bp-arrow {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease;
}

.book-platform-btn:hover .bp-arrow {
    transform: translateX(4px);
    color: #fff;
}

/* ============ ABOUT ============ */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-badge-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.badge-txt {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.about-text p strong {
    color: var(--navy);
}

.about-text .btn {
    margin-top: 1rem;
}

/* ============ VALUES ============ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.5);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

/* ============ MOVIES ============ */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.movie-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--off-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.movie-img-wrap {
    position: relative;
    aspect-ratio: 3/4; /* Reduced height from 2/3 */
    overflow: hidden;
}

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

.movie-card:hover .movie-img-wrap img {
    transform: scale(1.06);
}

.movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-info {
    padding: 1rem 1.2rem 1.2rem;
}

.movie-genre {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.movie-info h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0.3rem 0 0.4rem;
    color: var(--navy);
}

.movie-release {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============ ADVERTISE BANNER ============ */
.promo-banner {
    background: var(--navy-2);
    padding: 8rem 0;
    overflow: hidden;
    scroll-margin-top: 100px;
    color: var(--white);
}

.promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.promo-text .section-title.light {
    font-size: 2.2rem;
}

.promo-text p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.promo-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.promo-img {
    width: 100%;
    transition: transform 0.4s ease;
}

/* ============ WHY US ============ */
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-sub {
    color: #666;
    margin-bottom: 2rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.why-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.why-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.why-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-img-wrap::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 70%;
    height: 70%;
    border: 3px solid var(--gold);
    border-radius: 12px;
    z-index: -1;
}

.why-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* ============ TESTIMONIALS ============ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: rgba(212, 160, 23, 0.5);
    background: rgba(212, 160, 23, 0.05);
}

.testi-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testi-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testi-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============ NEWSLETTER ============ */
.newsletter {
    background: var(--gold);
    padding: 3rem 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-inner h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
}

.newsletter-inner h3 span {
    font-style: italic;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    width: 320px;
    outline: none;
    background: rgba(0, 0, 0, 0.1);
    color: var(--navy);
}

.newsletter-form input::placeholder {
    color: rgba(10, 14, 26, 0.5);
}

.newsletter-form .btn-gold {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.newsletter-form .btn-gold:hover {
    background: var(--navy-2);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--navy);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-col p a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col p a:hover {
    color: var(--gold);
}

.location-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.75rem;
}

.location-card strong {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.location-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.2rem 0 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {

    .about-inner,
    .promo-inner,
    .why-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-badge-card {
        right: 1rem;
    }

    .why-img-wrap::before {
        display: none;
    }

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

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

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

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

    .book-now-inner {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .navbar {
        top: 0 !important;
        padding: 0.8rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-2);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--navy-3);
        gap: 0.25rem;
    }

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

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

    .nav-links li a {
        display: block;
        padding: 0.7rem 1rem !important;
    }

    .dropdown-menu {
        position: static;
        display: block;
        background: rgba(255, 255, 255, 0.04);
        border: none;
        padding: 0;
        box-shadow: none;
    }

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

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }

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

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

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

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 320px;
    }

    .hero-film-strips {
        display: none;
    }

    .hc-content {
        padding: 5rem 1.5rem 6rem;
        justify-content: center;
    }

    .hc-dots {
        bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 85px;
        height: 55px;
    }

    .book-now-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-now-btns {
        align-items: center;
    }

    .book-platform-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .ns-card.ns-featured {
        grid-template-columns: 1fr;
    }

    .ns-card.ns-featured .ns-img-wrap {
        aspect-ratio: 16/9;
    }
}

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

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 4rem 0;
    }
}

/* ── Now Showing Slider – Responsive ── */
@media (max-width: 900px) {
    .ns-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ns-slide-poster {
        aspect-ratio: 16/9;
        max-height: 380px;
    }

    .ns-slide-title {
        font-size: 1.8rem;
    }

    .ns-slide-actions {
        flex-direction: column;
    }

    .ns-slide-book,
    .ns-slide-trailer {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ns-slide-poster {
        aspect-ratio: 4/3;
        max-height: 260px;
    }

    .ns-slide-title {
        font-size: 1.5rem;
    }
}

/* ============ MODALS (TRAILER & BOOKING) ============ */
.trailer-modal,
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(12px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.trailer-content,
.booking-content {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
    animation: modalScaleUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.booking-content {
    max-width: 500px;
    background: var(--navy);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    aspect-ratio: auto;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.trailer-close,
.booking-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.trailer-close:hover,
.booking-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.booking-close {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.booking-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.booking-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}