:root {
    --booking-shell: 1200px;
    --booking-bg: #f2f6fd;
    --booking-ink: #132544;
    --booking-muted: #5f6f88;
    --booking-accent: #0f57c2;
    --booking-card: #ffffff;
    --booking-border: #d7e1f3;
}

body.booking-landing-page {
    margin: 0;
    background: var(--booking-bg);
    color: var(--booking-ink);
    font-family: "Poppins", "Segoe UI", sans-serif;
}

.booking-landing-main {
    padding-bottom: 72px;
}

.booking-hero {
    position: relative;
    padding: 132px 0 78px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 31, 73, 0.9) 0%, rgba(15, 87, 194, 0.56) 58%, rgba(15, 87, 194, 0.2) 100%),
        url("/assets/images/new/index-hero.jpg") center/cover no-repeat;
}

.booking-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(242, 246, 253, 0), rgba(242, 246, 253, 1));
}

.booking-shell {
    width: min(var(--booking-shell), calc(100% - 32px));
    margin: 0 auto;
}

.booking-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.12;
}

.booking-hero p {
    margin: 0;
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.95;
}

.booking-section {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.booking-grid {
    display: grid;
    gap: 24px;
    align-items: start;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
}

.booking-panel {
    border: 1px solid var(--booking-border);
    border-radius: 20px;
    padding: 18px;
    background: var(--booking-card);
    box-shadow: 0 20px 46px rgba(10, 45, 105, 0.11);
}

.booking-panel h2 {
    margin: 0 0 10px;
    font-size: 1.14rem;
}

.booking-panel p {
    margin: 0;
    color: var(--booking-muted);
    font-size: 0.93rem;
    line-height: 1.55;
}

.booking-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.booking-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--booking-ink);
    font-size: 0.88rem;
    line-height: 1.5;
}

.booking-list li::before {
    content: "";
    margin-top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--booking-accent);
    flex: 0 0 8px;
}

.booking-widget-wrap {
    min-width: 0;
}

.booking-widget-wrap .booking-widget {
    margin-top: 0;
}

.booking-links {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--booking-accent);
    transition: opacity 0.2s ease;
}

.booking-links a:hover,
.booking-links a:focus-visible {
    opacity: 0.72;
}

@media (max-width: 991px) {
    .booking-hero {
        padding: 110px 0 66px;
    }

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

    .booking-panel {
        order: 2;
    }

    .booking-widget-wrap {
        order: 1;
    }
}
