.cb-page {
    background: var(--lg-bg);
    color: var(--lg-text);
    position: relative;
    overflow: hidden;
}

.cb-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 50% at 20% 0%, rgba(212, 175, 55, 0.10), transparent 60%),
        radial-gradient(50% 40% at 85% 10%, rgba(56, 189, 248, 0.06), transparent 70%);
}

.cb-page > * { position: relative; z-index: 1; }

.cb-hero {
    text-align: center;
    padding: 5rem 1rem 3rem;
}

.cb-hero .lg-title { margin-bottom: 1rem; }

.cb-hero a {
    color: var(--lg-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
.cb-hero a:hover { color: #f0c95a; text-decoration: underline; }

.cb-divider {
    width: 56px;
    height: 1px;
    background: var(--lg-gold-tint-55);
    border: 0;
    margin: 1.25rem auto 1.5rem;
}

.cb-booking-section {
    padding: 1rem 1rem 4rem;
}

.cb-booking-section .booking-container {
    background: linear-gradient(180deg, var(--lg-card) 0%, var(--lg-bg-2) 100%);
    border: 1px solid var(--lg-border);
    border-radius: 18px;
    box-shadow:
        0 30px 60px -30px rgba(0, 0, 0, 0.65),
        0 12px 28px -18px rgba(212, 175, 55, 0.18);
    overflow: hidden;
}

.cb-booking-section .booking-calendar-panel {
    background: linear-gradient(180deg, #07273a 0%, #041a28 100%);
    color: #ffffff;
    border-right: 1px solid var(--lg-border);
    position: relative;
}

.cb-booking-section .booking-calendar-panel::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--lg-gold-tint-45), transparent);
    pointer-events: none;
}

.cb-booking-section .booking-month-title {
    font-family: var(--lg-font-serif);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.cb-booking-section .booking-month-nav a {
    color: var(--lg-gold);
    border: 1px solid var(--lg-gold-tint-25);
    background: rgba(212, 175, 55, 0.06);
}

.cb-booking-section .booking-month-nav a:hover {
    background: var(--lg-gold-tint-12);
    border-color: var(--lg-gold-tint-45);
    color: #f0c95a;
    opacity: 1;
}

.cb-booking-section .booking-weekdays {
    color: var(--lg-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.7rem;
    opacity: 1;
}

.cb-booking-section .booking-day {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    transition: all 0.2s ease;
}

.cb-booking-section .booking-day:not(.disabled):not(.empty):hover {
    background: var(--lg-gold-tint-12);
    border: 1px solid var(--lg-gold-tint-45);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.cb-booking-section .booking-day.today {
    border: 1px solid var(--lg-gold-tint-55);
    color: var(--lg-gold);
}

.cb-booking-section .booking-day.selected {
    background: linear-gradient(135deg, #e6c25a 0%, #d4af37 50%, #b8932c 100%);
    color: #0a2536;
    font-weight: 600;
    border: 1px solid transparent;
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.25),
        0 8px 18px -8px rgba(212, 175, 55, 0.55);
}

.cb-booking-section .booking-day.disabled {
    opacity: 0.25;
}

/* ---------- Form panel (right, light card) ---------- */
.cb-booking-section .booking-form-panel {
    background: #ffffff;
    color: #1a1a1a;
}

.cb-booking-section .booking-time-slots-title,
.cb-booking-section .booking-form-title,
.cb-booking-section .booking-duration-title {
    font-family: var(--lg-font-serif);
    font-weight: 500;
    color: #0a2536;
    letter-spacing: -0.005em;
}

.cb-booking-section .booking-time-slots-section h3 {
    color: #0a2536;
    font-family: var(--lg-font-serif);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.cb-booking-section .booking-time-slots-section h3 svg,
.cb-booking-section .booking-time-slots-date svg {
    color: var(--lg-gold-soft);
}

.cb-booking-section .booking-time-slot {
    border: 1px solid #e3d9c8;
    color: #0a2536;
    background: #fff;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cb-booking-section .booking-time-slot:hover {
    border-color: var(--lg-gold);
    color: #0a2536;
    background: rgba(212, 175, 55, 0.06);
    box-shadow: 0 6px 14px -8px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.cb-booking-section .booking-time-slot.selected {
    background: linear-gradient(135deg, #e6c25a 0%, #d4af37 50%, #b8932c 100%);
    color: #0a2536;
    border-color: transparent;
    box-shadow: 0 8px 18px -10px rgba(212, 175, 55, 0.6);
}

.cb-booking-section .booking-time-slot.selected::after {
    background: #0a2536;
    color: var(--lg-gold);
}

.cb-booking-section .booking-summary {
    background: #faf6ec;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 0.75rem 1rem !important;
}

.cb-booking-section .booking-summary-label { color: #0a2536; }

.cb-booking-section .booking-form-input {
    border-radius: 10px;
    border: 1px solid #e3d9c8;
    background: #fff;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
}

.cb-booking-section .booking-form-input:focus {
    border-color: var(--lg-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.cb-booking-section .booking-form-label {
    color: #0a2536;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.cb-booking-section .booking-button-next,
.cb-booking-section .booking-button-confirm {
    background: linear-gradient(135deg, #e6c25a 0%, #d4af37 50%, #b8932c 100%);
    color: #0a2536;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 8px 22px -10px rgba(212, 175, 55, 0.55);
}

.cb-booking-section .booking-button-next:hover,
.cb-booking-section .booking-button-confirm:hover {
    background: linear-gradient(135deg, #f0cf6f 0%, #d4af37 50%, #a98326 100%);
    transform: translateY(-2px);
}

.cb-booking-section .booking-button-back {
    background: #f3eee2;
    color: #0a2536;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cb-booking-section .booking-button-back:hover {
    background: #e9e0cb;
}

.cb-booking-section .booking-button-next:disabled {
    background: #d8d2c2;
    color: #6b6452;
    box-shadow: none;
}

.cb-booking-section .booking-loading {
    background: #faf6ec;
    border: 1px dashed rgba(212, 175, 55, 0.35);
    color: #4b4737;
    border-radius: 14px;
}
.cb-booking-section .booking-spinner { border-top-color: var(--lg-gold); }

.cb-contact-head {
    text-align: center;
    padding: 4rem 1rem 1rem;
}

.cb-contact-form-section {
    padding: 1rem 1rem 5rem;
}

.cb-contact-form-card {
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow:
        0 30px 60px -30px rgba(0, 0, 0, 0.65),
        0 12px 28px -18px rgba(212, 175, 55, 0.18);
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
}

.cb-contact-form-inner {
    padding: 1.75rem 2rem;
}

@media (max-width: 575px) {
    .cb-contact-form-inner { padding: 1.25rem 1.25rem; }
}

.cb-contact-form-card .form-label {
    color: #0a2536;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
}

.cb-contact-form-card .form-control {
    border-radius: 10px;
    border: 1px solid #e3d9c8;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cb-contact-form-card .cb-contact-form .text-danger { font-size: 0.75rem; }

.cb-contact-form-card .form-control:focus {
    border-color: var(--lg-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    outline: none;
}

.cb-contact-form-card textarea.form-control { min-height: 120px; }

.cb-contact-form-card .text-secondary { color: var(--lg-gold-soft) !important; }

.cb-contact-form-card .btn-pill,
.cb-contact-form-card button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 13px 32px;
    background: linear-gradient(135deg, #e6c25a 0%, #d4af37 50%, #b8932c 100%);
    color: #0a2536 !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 8px 24px -8px rgba(212, 175, 55, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cb-contact-form-card .btn-pill:hover,
.cb-contact-form-card button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 14px 32px -10px rgba(212, 175, 55, 0.7);
}

.tooltip {
    --bs-tooltip-bg: #0a2536;
}

@media (max-width: 992px) {
    .cb-booking-section .booking-calendar-panel::after { display: none; }
    .cb-booking-section .booking-calendar-panel {
        border-right: none;
        border-bottom: 1px solid var(--lg-border);
    }
}

@media (max-width: 575px) {
    .cb-hero { padding: 3rem 1rem 2rem; }
    .cb-contact-head { padding: 3rem 1rem 0.5rem; }
    .cb-contact-form-section { padding: 1rem 0.75rem 3rem; }
}
