/* Booking page redesign — layered on top of custom.css, scoped to this page only */

body {
    background: #f4f6f9;
    font-family: 'Open Sans', sans-serif;
}

.tb_header {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.hero_section {
    background: linear-gradient(135deg, #2b3a67 0%, #4a6fa5 100%);
    padding-top: 150px;
    padding-bottom: 90px;
    margin-bottom: -60px;
}

.hero_section .hero_tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero_section .hero_title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0;
}

.booking_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(30, 40, 70, 0.18);
    padding: 32px;
    position: relative;
    z-index: 2;
}

.booking_card #Search.LB {
    padding: 0 !important;
}

.booking_card .bookTic {
    font-size: 20px;
    font-weight: 600;
    color: #2b3a67;
    margin-bottom: 22px;
}

.booking_card .inputLabel {
    font-weight: 600;
    color: #445;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.booking_card .XXinput {
    border: 1px solid #dde1ea;
    border-radius: 8px;
    background: #f9fafc;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.booking_card .XXinput:focus {
    border-color: #4a6fa5;
    background: #fff;
    outline: none;
}

.booking_card .RB.Xbutton {
    background: #2b3a67;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.booking_card .RB.Xbutton:hover {
    background: #384c85;
    transform: translateY(-1px);
}

.hero_illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 260px;
}

.hero_illustration_inner {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 64px;
}

.tb_footer_section {
    background: #fff;
    border-top: 1px solid #eceef2;
    padding: 22px 0;
    margin-top: 70px;
}

.tb_footer_section ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

.tb_footer_section ul li {
    list-style: none;
    display: inline-block;
    margin: 0 14px;
}

.tb_footer_section ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
}

.tb_footer_section ul li a:hover {
    color: #2b3a67;
}

@media (max-width: 767px) {
    .hero_section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero_illustration {
        display: none;
    }
    .booking_card {
        padding: 22px;
        margin-bottom: 20px;
    }
}
