.hotel-booking-section{
    background:#f6f8f7;
    padding:100px 20px;
}
.booking-wrapper{
    max-width:1000px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 60px rgba(0,0,0,.08);
}
.booking-progress{
    display:flex;
    justify-content:space-between;
    position:relative;
    /*margin-bottom:50px;*/
}
.progress-bar{
    position:absolute;
    top:22px;
    left:10%;
    width:80%;
    height:3px;
    background:#e5e5e5;
}
.step{
    text-align:center;
    position:relative;
    z-index:2;
}
.step span{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ddd;
    color:#fff;
    margin:auto;
    font-weight:700;
}
.step.active span{
    background:#1f5f3a;
}
.step p{
    margin-top:10px;
    font-size:14px;
}
.form-step{
    display:none;
}
.form-step.active{
    display:block;
    animation:fade .4s ease;
}
@keyframes fade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
input,
select{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-top:13px;
}
.room-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.room-card{
    border:1px solid #eee;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
}
.room-card:hover{
    transform:translateY(-8px);
}
.room-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}
.room-info{
    padding:20px;
}
.check-item{
    display:block;
    padding:18px;
    margin-bottom:15px;
    border:1px solid #eee;
    border-radius:12px;
}
.summary-box{
    padding:25px;
    background:#f8f8f8;
    border-radius:15px;
    margin-bottom:20px;
}
.btn-group{
    display:flex;
    justify-content:space-between;
}
.booking-form button{
    border:none;
    background:#1f5f3a;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    cursor:pointer;
    margin-top:20px;
}
@media (max-width: 767px) {
    .booking-wrapper {
        padding: 20px;
    }
    .form-step h2 {
        font-size: 40px;
    }
    .booking-form .form-step button {
        padding: 10px 25px;
    }
}
@media (max-width: 576px) {
    .booking-wrapper {
        padding: 20px;
    }
    .form-step h2 {
        font-size: 40px;
    }
    .booking-form .form-step button {
        padding: 10px 25px;
    }
}
