/* ==========================================
   STAYBYLAKE BOOKING PAGE
========================================== */

.booking-page{
    padding:170px 0 100px;
    background:#f5f5f5;
}

.booking-page .container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.booking-page h1{
    text-align:center;
    font-size:54px;
    margin-bottom:60px;
    font-family:'Playfair Display',serif;
    color:#111827;
}

/* ===========================
WRAPPER
=========================== */

.booking-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

/* ===========================
LEFT
=========================== */

.booking-left{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.booking-property{
    margin-bottom:35px;
}

.booking-property h2{
    font-size:34px;
    color:#111827;
    margin-bottom:10px;
}

.booking-property p{
    color:#777;
    margin-bottom:15px;
}

.booking-property h3{
    color:#D4AF37;
    font-size:38px;
}

.booking-property span{
    font-size:18px;
}

/* ===========================
FORM
=========================== */

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.booking-left label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#111827;
}

.booking-left input,
.booking-left select,
.booking-left textarea{

    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    background:#fff;
    transition:.3s;

}

.booking-left input:focus,
.booking-left select:focus,
.booking-left textarea:focus{

    outline:none;
    border-color:#D4AF37;

}

.booking-left textarea{
    resize:vertical;
    min-height:140px;
}

/* ===========================
RIGHT
=========================== */

.booking-right{

    position:sticky;
    top:120px;

}

.booking-summary{

    background:#111827;
    color:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.booking-summary h2{

    font-size:30px;
    margin-bottom:30px;
    color:#fff;

}

.summary-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    padding-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,.12);

}

.summary-row span{

    color:#ddd;

}

.summary-row strong{

    color:#fff;

}

/* ===========================
BUTTONS
=========================== */

.booking-btn{

    width:100%;
    padding:16px;
    margin-top:25px;
    border:none;
    border-radius:10px;
    background:#D4AF37;
    color:#111827;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;

}

.booking-btn:hover{

    background:#bf971f;

}

.whatsapp-btn{

    display:block;
    margin-top:15px;
    width:100%;
    text-align:center;
    text-decoration:none;
    background:#25D366;
    color:#fff;
    padding:16px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;

}

.whatsapp-btn:hover{

    background:#1da851;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.booking-wrapper{

grid-template-columns:1fr;

}

.booking-right{

position:relative;
top:0;

}

}

@media (max-width:768px){

/* ===========================
BOOKING PAGE
=========================== */

.booking-page{

    padding:120px 0 50px;

}

.booking-page .container{

    padding:0 15px;

}

.booking-page h1{

    font-size:34px;
    line-height:1.3;
    margin-bottom:35px;

}

/* ===========================
LAYOUT
=========================== */

.booking-wrapper{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.booking-left,
.booking-right{

    width:100%;

}

.booking-right{

    position:static;

}

/* ===========================
LEFT CARD
=========================== */

.booking-left{

    padding:22px;
    border-radius:16px;

}

.booking-property h2{

    font-size:28px;

}

.booking-property h3{

    font-size:32px;

}

/* ===========================
FORM
=========================== */

.form-row{

    grid-template-columns:1fr;
    gap:15px;

}

.booking-left input,
.booking-left select,
.booking-left textarea{

    width:100%;
    box-sizing:border-box;
    font-size:16px;

}

.booking-left textarea{

    min-height:120px;

}

/* ===========================
SUMMARY
=========================== */

.booking-summary{

    padding:22px;
    border-radius:16px;

}

.booking-summary h2{

    font-size:26px;

}

.summary-row{

    font-size:15px;

}

/* ===========================
BUTTONS
=========================== */

.booking-btn,
.whatsapp-btn{

    width:100%;
    display:block;
    box-sizing:border-box;
    text-align:center;
    padding:15px;

}

}/* ==========================================
   TERMS CHECKBOX
========================================== */

.terms-check{

margin-top:25px;
margin-bottom:25px;

}

.terms-check label{

display:flex;
align-items:flex-start;
gap:12px;

font-size:15px;
line-height:1.7;

color:#444;

cursor:pointer;

}

.terms-check input{

margin-top:4px;
transform:scale(1.15);

}

.terms-check a{

color:#D4AF37;
font-weight:600;
text-decoration:none;

}

.terms-check a:hover{

text-decoration:underline;

}

@media(max-width:768px){

.terms-check label{

font-size:14px;

}

}