.booking-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.booking-modal-box{
    width:100%;
    max-width:920px;
    background:#1f1f1f;
    border-radius:32px;
    padding:42px;
    position:relative;
    border:1px solid rgba(255,255,255,.08);
}

.booking-modal-close{
    position:absolute;
    top:20px;
    right:20px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#2b2b2b;
    color:white;
    font-size:24px;
    cursor:pointer;
}

.booking-modal h2{
    font-size:42px;
    margin-bottom:16px;
}

.modal-info{
    color:#d6a85f;
    margin-bottom:34px;
    font-size:18px;
}

.booking-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.booking-modal label{
    display:block;
    margin-bottom:8px;
    color:#cfcfcf;
    font-size:14px;
}

.booking-modal input,
.booking-modal select{
    width:100%;
    padding:14px;
    border:none;
    border-radius:14px;
    background:#2a2a2a;
    color:white;
}

.booking-checkbox-row{
    display:flex;
    gap:12px;
    margin:28px 0;
    align-items:flex-start;
}

.booking-checkbox-row input{
    width:auto;
    margin-top:4px;
}

.booking-submit-btn{
    border:none;
    background:#d6a85f;
    color:black;
    padding:16px 26px;
    border-radius:18px;
    font-weight:bold;
    cursor:pointer;
    font-size:16px;
}

.booking-submit-btn:hover{
    opacity:.92;
}

.booking-message{
    margin-top:22px;
    color:#8de28d;
}

@media(max-width:760px){

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

    .booking-modal-box{
        padding:30px 22px;
    }

    .booking-modal h2{
        font-size:30px;
    }
}

.booking-room-note{
    background:#2a2a2a;
    border-radius:14px;
    padding:14px;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.5;
}

.booking-room-summary{
    background:#151515;
    border:1px solid rgba(214,168,95,.35);
    border-radius:14px;
    padding:16px;
    color:#d6a85f;
    font-weight:bold;
}

.booking-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    background:rgba(0,0,0,.72);
    display:none;
    align-items:flex-start;
    justify-content:center;
    overflow-y:auto;
    padding:24px 16px;
}

.booking-modal-box{
    max-height:none;
    margin:20px auto;
}

@media(max-width:600px){

    .booking-modal{
        align-items:flex-start;
        padding:16px 12px 40px;
    }

    .booking-modal-box{
        width:100%;
        max-width:100%;
        margin:0 auto;
    }
}
