.booking-page {
    background-color: #f2f4f7;
    color: #333;
    font-family: Inter, sans-serif
}

.booking-hero {
    background: linear-gradient(rgb(11 59 58 / 60%), rgb(11 59 58 / 58%)) fixed, url(../images/bg-our.webp) center center/cover no-repeat fixed;
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-h, 80px);
    top: -50px
}

.booking-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.breadcrumb {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8)
}

.breadcrumb a {
    color: #fff;
    text-decoration: none
}

.breadcrumb span {
    color: #fff;
    font-weight: 600
}

.booking-hero .container {
    position: relative;
    z-index: 10;
    color: #fff
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem
}

.checkout-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .02);
    margin-bottom: 2rem
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem
}

.card-icons,
.property-preview,
.terms-checkbox {
    display: flex;
    margin-bottom: 2rem
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: .5rem
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: .95rem;
    background: #f9fafb;
    outline: 0;
    transition: .2s
}

.form-group input:focus {
    border-color: #ff7f2a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 127, 42, .1)
}

.phone-input {
    display: flex;
    gap: .5rem
}

.phone-input select {
    width: 100px
}

.form-note {
    font-size: .8rem;
    color: #9ca3af;
    margin-top: -.5rem
}

.card-icons {
    gap: 1rem
}

.card-icons img {
    height: 32px
}

.complete-booking {
    margin-top: 3rem;
    text-align: center
}

.terms-checkbox {
    align-items: center;
    gap: .8rem;
    justify-content: center;
    font-size: .9rem;
    color: #4b5563
}

.btn-confirm,
.property-info h3 {
    font-size: 1.1rem;
    font-weight: 700
}

.policy-note a,
.terms-checkbox a {
    color: #ff7f2a;
    font-weight: 600;
    text-decoration: none
}

.btn-confirm {
    background: #ff7f2a;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 1.2rem 3rem;
    cursor: pointer;
    transition: .2s;
    width: 100%;
    max-width: 500px
}

.policy-note,
.summary-card {
    background: #fff
}

.btn-confirm:hover {
    background: #e66b1e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 127, 42, .2)
}

.booking-sidebar {
    position: sticky;
    top: 100px;
    align-self: start
}

.summary-card {
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.policy-note,
.total-row {
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem
}

.property-preview {
    gap: 1.5rem;
    align-items: center
}

.price-row,
.total-row {
    justify-content: space-between;
    display: flex
}

.policy-note,
.price-breakdown {
    margin-bottom: 1.5rem
}

.property-preview img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover
}

.property-info h3 {
    margin-bottom: .3rem
}

.property-info p {
    font-size: .85rem;
    color: #6b7280
}

.policy-note p {
    font-size: .8rem;
    line-height: 1.5;
    color: #6b7280
}

.price-row {
    font-size: .95rem;
    color: #4b5563;
    margin-bottom: .75rem
}

.promo-code {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: #6b7280;
    margin-bottom: 2rem
}

.total-row {
    align-items: center;
    margin-bottom: .5rem
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111
}

.pay-now-row {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    color: #6b7280;
    font-weight: 600
}

@media (max-width:992px) {
    .booking-layout {
        grid-template-columns: 1fr
    }

    .booking-sidebar {
        position: static;
        order: -1
    }
}

@media (max-width:600px) {
    .form-row {
        flex-direction: column;
        gap: 0
    }

    .booking-hero h1 {
        font-size: 2rem
    }
}