:root {
    --gold: #ffb800;
    --royal-gold: #ffb800;
    --dark: #0f1114;
    --muted: #6c7a89;
    --card: #ffffff;
    --bg: #f7f6f2;
    --shadow: 0 25px 70px rgba(0,0,0,0.08);
}

html { -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        radial-gradient(900px 400px at 12% -10%, rgba(255,184,0,0.12), transparent 60%),
        radial-gradient(900px 400px at 88% -10%, rgba(0,0,0,0.08), transparent 60%),
        linear-gradient(180deg, #f7f6f2 0%, #ffffff 40%, #f7f6f2 100%);
    color: var(--dark);
    overflow-x: hidden;
}

/* --- PAGE REVEAL --- */
.page-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.page-loaded .page-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* --- SPLASH SCREEN --- */
.splash-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #fff8e6 0%, #f1ebdf 42%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    animation: splash-auto-hide 0.6s ease forwards;
    animation-delay: 2.6s;
    overflow: hidden;
}

.splash-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,184,0,0.18), transparent 55%),
        radial-gradient(circle at 80% 90%, rgba(255,184,0,0.18), transparent 55%),
        linear-gradient(120deg, rgba(255,255,255,0.65), rgba(255,255,255,0.15));
    animation: splash-veil 6s ease-in-out infinite;
}

.splash-beam {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255,184,0,0.0), rgba(255,184,0,0.28), rgba(255,184,0,0.0));
    filter: blur(6px);
    animation: splash-beam 6s linear infinite;
    opacity: 0.9;
}

.splash-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes splash-auto-hide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.splash-stage {
    position: relative;
    text-align: center;
    padding: 12px 18px;
    max-width: min(720px, 92vw);
    display: grid;
    gap: 10px;
    justify-items: center;
}

.splash-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-accent {
    color: var(--royal-gold);
}

.splash-logo-img {
    height: 260px;
    width: auto;
    filter: drop-shadow(0 12px 24px rgba(255, 184, 0, 0.35));
    animation: splash-pulse 2.2s ease-in-out infinite, splash-float 3.6s ease-in-out infinite;
}

.splash-copy {
    font-size: 12px;
    letter-spacing: 0.6px;
    color: #5f6b7a;
}

.splash-loader {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 2px auto 0;
}

.splash-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed rgba(255, 184, 0, 0.45);
    animation: splash-rotate 4.8s linear infinite;
}

.splash-loader::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 4px solid rgba(255, 184, 0, 0.3);
    border-top-color: #ffb800;
    box-shadow: 0 0 28px rgba(255, 184, 0, 0.35);
    animation: splash-spin 1s linear infinite;
}

.splash-orbit {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.35);
    animation: splash-rotate 6s linear infinite;
}

.splash-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.25);
    box-shadow: inset 0 0 60px rgba(255, 184, 0, 0.25);
    animation: splash-expand 2.8s ease-in-out infinite;
}

.splash-particles {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.25) 0 2px, transparent 3px);
    background-size: 22px 22px;
    animation: splash-rotate 14s linear infinite reverse;
    opacity: 0.6;
}

.splash-screen::before,
.splash-screen::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,184,0,0.22), transparent 65%);
    animation: splash-glow 6s ease-in-out infinite;
}
.splash-screen::before { top: -120px; left: -120px; }
.splash-screen::after { bottom: -140px; right: -140px; animation-delay: 1.8s; }

@keyframes splash-rotate {
    to {
        transform: rotate(360deg);
    }
}
@keyframes splash-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes splash-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
@keyframes splash-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes splash-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.08); }
}
@keyframes splash-expand {
    0%, 100% { transform: scale(0.98); opacity: 0.45; }
    50% { transform: scale(1.06); opacity: 0.9; }
}
@keyframes splash-veil {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.95; }
}
@keyframes splash-beam {
    0% { transform: translate(-40%, -40%) rotate(0deg); }
    100% { transform: translate(-40%, -40%) rotate(360deg); }
}
@keyframes splash-shimmer {
    0% { transform: translateX(-60%) rotate(6deg); }
    100% { transform: translateX(60%) rotate(6deg); }
}

@media (max-width: 575px) {
    .splash-logo {
        font-size: 18px;
    }
}

.booking-hero {
    background:
        radial-gradient(900px 360px at 15% -10%, rgba(255,184,0,0.25), transparent 60%),
        radial-gradient(700px 320px at 85% -10%, rgba(34,197,94,0.22), transparent 60%),
        radial-gradient(700px 320px at 50% 120%, rgba(255,140,0,0.2), transparent 70%),
        linear-gradient(120deg, #fff4d9 0%, #f7f9ff 45%, #e9fff1 100%);
    color: #111;
    padding: 110px 0 70px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.booking-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(180px 180px at 12% 25%, rgba(255,184,0,0.18), transparent 70%),
        radial-gradient(220px 220px at 70% 15%, rgba(59,130,246,0.18), transparent 70%),
        radial-gradient(200px 200px at 85% 75%, rgba(34,197,94,0.18), transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}
.hero-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.booking-rail {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    letter-spacing: 6px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255,184,0,0.6);
    text-transform: uppercase;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.hero-badges span {
    background: #ffffff;
    color: #111;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-badges span:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.14); }
.hero-badges i { color: #ff9a00; }
.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
    animation: heroFloat 4s ease-in-out infinite;
}

/* Ensure navbar links visible on booking page */
.prominent-nav { background: #fff !important; }
.nav-link { color: #121212 !important; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card-chip {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #fff;
    color: #111;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.booking-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,184,0,0.25), transparent 70%);
    filter: blur(10px);
}

.hero-content { max-width: 720px; }
.hero-kicker {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
}
.booking-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin: 8px 0 12px; }
.hero-sub { color: #334155; }

@keyframes heroGlow {
    0%, 100% { opacity: 0.9; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-8px); }
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.booking-section { padding: 20px 0 80px; }

.booking-facts {
    padding: 40px 0 20px;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.fact-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
}
.fact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--gold-gradient);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow);
}
.fact-card h4 { margin: 0 0 4px; font-weight: 800; font-size: 16px; }
.fact-card p { margin: 0; color: #6b7280; font-size: 13px; }
.fact-card:hover {
    box-shadow: 0 22px 60px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.booking-card {
    background: rgba(255,255,255,0.95);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.booking-card:hover {
    box-shadow: 0 30px 90px rgba(0,0,0,0.12);
}
.booking-card::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffb800, #22c55e);
}

.card-head h2 { font-size: 20px; font-weight: 900; margin: 0; letter-spacing: -0.3px; }
.card-head p { color: var(--muted); margin: 4px 0 18px; font-size: 13px; }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.head-left { display: inline-flex; align-items: center; gap: 10px; }
.head-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,184,0,0.15);
    display: inline-flex; align-items: center; justify-content: center;
    color: #ff9a00;
    font-size: 16px;
}
.card-head::after {
    content: "";
    width: 64px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffb800, #ff9800);
    margin-top: 6px;
}

.form-label { font-size: 12px; font-weight: 800; text-transform: uppercase; color: #8791a1; letter-spacing: 1px; }
.form-control, .form-select {
    border-radius: 12px;
    border: 1px solid #e6eaef;
    padding: 12px 14px;
    font-weight: 600;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.form-select {
    cursor: pointer;
    padding-right: 42px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #111 50%),
        linear-gradient(135deg, #111 50%, transparent 50%),
        linear-gradient(90deg, #f5f7fb 0%, #ffffff 100%);
    background-position:
        calc(100% - 20px) 52%,
        calc(100% - 14px) 52%,
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
}
.form-select:hover {
    border-color: #d9b24a;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(17,24,39,0.08);
}
.form-select:disabled {
    background: #f4f6f9;
    color: #a1a1aa;
    cursor: not-allowed;
}
.form-control::placeholder { color: #b0bac7; }
.iti { width: 100%; }
.iti__flag-container { margin-right: 6px; }
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255,184,0,0.15);
    background: linear-gradient(180deg, #ffffff 0%, #fff8e9 100%);
}
.form-control:hover, .form-select:hover {
    border-color: #d9b24a;
    box-shadow: 0 12px 26px rgba(255,184,0,0.15);
}

/* --- CUSTOM BOOKING DROPDOWNS --- */
.booking-select {
    position: relative;
}
.booking-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
}
.booking-select__btn {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #e6eaef;
    border-radius: 12px;
    padding: 12px 42px 12px 14px;
    font-weight: 700;
    color: #111;
    position: relative;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.booking-select__btn::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: translateY(-50%) rotate(45deg);
}
.booking-select__btn:hover {
    border-color: #d9b24a;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(17,24,39,0.08);
}
.booking-select__btn:focus-visible {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255,184,0,0.18);
    background: linear-gradient(180deg, #ffffff 0%, #fff8e9 100%);
}
.booking-select__list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid #e6eaef;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
    max-height: 240px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
    z-index: 20;
}
.booking-select__list.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.booking-select__item {
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.booking-select__item:hover,
.booking-select__item.active {
    background: rgba(255,184,0,0.14);
    color: #111;
}

@media (max-width: 575px) {
    .booking-select__list { max-height: 200px; }
}

/* --- FLATPICKR PREMIUM THEME (BOOKING) --- */
.flatpickr-calendar {
    border: 1px solid rgba(0,0,0,0.04) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 55px rgba(0,0,0,0.12) !important;
    overflow: visible !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f6f7f9 !important;
    padding: 10px !important;
    transform: translateY(-10px) scale(0.98);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    will-change: transform, opacity;
    width: auto !important;
    min-width: 320px;
}
.flatpickr-calendar.open {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.flatpickr-calendar.fp-animate {
    animation: fp-pop 0.26s ease;
}
@keyframes fp-pop {
    0% { transform: translateY(-12px) scale(0.97); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
.flatpickr-months {
    background: transparent !important;
    color: #111 !important;
    padding: 6px 6px 2px !important;
}
.flatpickr-current-month {
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 800 !important;
    color: #111 !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    top: 6px !important;
    opacity: 0.7;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 12px !important;
    height: 12px !important;
    stroke: #8b8f97 !important;
}
.flatpickr-innerContainer {
    background: #ffffff !important;
    border-radius: 14px !important;
    padding: 10px 10px 6px !important;
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days {
    overflow: visible !important;
    width: auto !important;
}
.flatpickr-weekdays {
    background: transparent !important;
    border-bottom: 0 !important;
}
.flatpickr-weekday {
    color: #9aa0a6 !important;
    font-weight: 700 !important;
    font-size: 10px !important;
    letter-spacing: 0.5px;
}
.flatpickr-day {
    border-radius: 50% !important;
    font-weight: 700 !important;
    height: 30px !important;
    line-height: 30px !important;
    width: 30px !important;
    margin: 2px auto !important;
    font-size: 12px !important;
    color: #111 !important;
}
.flatpickr-day:hover {
    background: #f1f3f5 !important;
    border-color: transparent !important;
}
.flatpickr-day.today {
    border-color: #e5e7eb !important;
    background: #f9fafb !important;
    color: #111 !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #e7e7e7 !important;
    border-color: transparent !important;
    color: #111 !important;
    box-shadow: none !important;
}
.flatpickr-day.inRange {
    background: #f3f4f6 !important;
    border-color: transparent !important;
}
.flatpickr-calendar::after,
.flatpickr-calendar::before {
    display: none !important;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #c2c6cc !important;
}
.flatpickr-time,
.flatpickr-clear,
.flatpickr-today {
    display: none !important;
}

.divider { height: 1px; background: #eef1f5; margin: 16px 0; }

.agreement { display: flex; align-items: center; gap: 10px; margin: 18px 0 10px; font-size: 13px; color: #667085; }
.agreement input { width: 16px; height: 16px; }

.btn-book {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    background: linear-gradient(90deg, #ffb800, #ff9800);
    color: #000;
    font-weight: 900;
    border: none;
    box-shadow: 0 20px 45px rgba(255,184,0,0.28);
    transition: 0.3s ease;
}
.btn-book:hover { transform: translateY(-2px); }

.floating-help {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    background: #12161d;
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}
.floating-help i { color: #25D366; font-size: 18px; }
.floating-help:hover { transform: translateY(-3px); }

.booking-side .side-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}
.booking-side .side-card:hover {
    box-shadow: 0 26px 70px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.side-card h3 { font-size: 16px; font-weight: 900; margin-bottom: 10px; }
.side-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.side-card li { font-size: 13px; color: #5b6675; }
.side-card li i { color: var(--gold); margin-right: 6px; }

.side-card.highlight { background: #12161d; color: #fff; }
.side-card.highlight p { color: #c7d0da; }
.concierge-card {
    position: relative;
    overflow: hidden;
}
.concierge-card::after {
    content: "VIP";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe2a3, #ffb800);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 12px 30px rgba(255,184,0,0.35);
}
.side-btn {
    display: inline-block;
    margin-top: 10px;
    background: #ffb800;
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 991px) {
    .booking-hero { padding: 70px 0 50px; }
    .booking-card { padding: 20px; }
    .hero-wrap { grid-template-columns: 1fr; }
    .booking-rail { display: none; }
    .facts-grid { grid-template-columns: 1fr; }
}

/* --- STEP PROGRESS --- */
.booking-progress {
    margin-bottom: 16px;
}
.progress-track {
    height: 6px;
    border-radius: 999px;
    background: #f1f3f7;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffb800, #ff9800);
    border-radius: 999px;
    transition: width 0.35s ease;
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
    color: #8a95a4;
    margin-top: 8px;
}
.booking-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 12px;
    color: #7a8796;
}
.step.active { color: #111; }
.step-dot {
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; border: 1px solid #e7ecf2;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 900;
}
.step.active .step-dot {
    background: #ffb800; border-color: #ffb800; color: #000;
    box-shadow: 0 8px 18px rgba(255,184,0,0.25);
}
.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #e8edf4, #f7f7f7);
    border-radius: 999px;
}




/* --- Dynamic Booking Mode Blocks --- */
.booking-page .mode-banner {
    border: 1px dashed rgba(255,184,0,0.6);
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(255,184,0,0.12), rgba(255,255,255,0.95));
    color: #7a5a17;
    font-weight: 800;
    font-size: 13px;
    padding: 12px 14px;
}

.booking-page .dd-pricebox {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 16px 40px rgba(12,20,18,0.10);
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.booking-page .dd-pricebox::before {
    content: "";
    position: absolute;
    inset: auto auto -40% -28%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,184,0,0.22), transparent 65%);
    filter: blur(8px);
    opacity: .75;
    pointer-events: none;
}

.booking-page .dd-pricebox__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.booking-page .dd-pricebox__title {
    font-weight: 900;
    color: #131313;
}

.booking-page .dd-pricebox__sub {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-top: 4px;
}

.booking-page .dd-pricebox__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f9f7f3;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 11px;
    font-weight: 800;
    color: #4b5563;
    white-space: nowrap;
}

.booking-page .dd-pricebox__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.booking-page .dd-pricebox__card {
    background: #f9f7f3;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 12px;
}

.booking-page .dd-pricebox__label {
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a6f3f;
}

.booking-page .dd-select {
    margin-top: 10px;
    border-radius: 12px;
}

.booking-page .dd-privatecount {
    margin-top: 12px;
}

.booking-page .dd-passenger-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

.booking-page .dd-field-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.booking-page .dd-field-card .form-label {
    margin-bottom: 8px;
    font-size: 12px;
}

.booking-page .dd-smalllabel {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 6px;
}

.booking-page .dd-pricebox__summary {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}

.booking-page .dd-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-weight: 800;
    color: #2d3138;
}

.booking-page .dd-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.07);
    font-weight: 900;
    font-size: 16px;
    color: #111;
}

.booking-page .dd-warn {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.24);
    color: #991b1b;
    font-weight: 800;
    font-size: 13px;
}

.booking-page .buggy-builder {
    background: #f9f7f3;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 12px;
}

.booking-page .buggy-row {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    position: relative;
}

.booking-page .buggy-row .form-label {
    margin-bottom: 6px;
    font-size: 12px;
}

.booking-page .buggy-row-remove {
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    line-height: 1;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-page .buggy-row-remove:hover {
    color: #b91c1c;
}

.booking-page .btn-buggy-add {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.4px;
}

.booking-page .buggy-summary {
    border-top: 1px dashed rgba(0,0,0,0.12);
    padding-top: 10px;
}

#bookingPriceDisplay {
    background: linear-gradient(180deg, #fffef8, #fff8e7);
    border-color: rgba(255,184,0,0.55);
    font-weight: 800;
    color: #5b4a18;
}

@media (max-width: 575.98px) {
    .booking-page .dd-passenger-grid {
        grid-template-columns: 1fr;
    }

    .booking-page .dd-pricebox,
    .booking-page .buggy-builder,
    .booking-page .buggy-row {
        padding: 10px;
    }
}
