/*=========================================
        BOOKING SECTION
=========================================*/

.booking-section{
    padding:100px 0;
    background:#faf7f2;
}

.booking-wrapper{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:58% 42%;

    gap:40px;

    align-items:start;

}

/*========================
LEFT
========================*/

.booking-left{

    display:flex;

    flex-direction:column;

}

.booking-image{

    width:100%;

    height:320px;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.booking-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:.45s;

}

.booking-image:hover img{

    transform:scale(1.05);

}

/*========================
CONTENT
========================*/

.booking-content{

    margin-top:35px;

}

.booking-tag{

    display:inline-block;

    background:#ef7f1a;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.booking-content h2{

    font-size:52px;

    color:#7b1b12;

    font-weight:800;

    line-height:1.1;

    margin-bottom:18px;

}

.booking-content p{

    color:#555;

    font-size:18px;

    line-height:1.8;

    margin-bottom:30px;

}

/*========================
FEATURES
========================*/

.booking-features{

    display:grid;

    grid-template-columns:1fr;

    gap:14px;

    margin-bottom:35px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:18px;

    color:#333;

}

.feature i{

    color:#18b93d;

    font-size:20px;

}

/*========================
BUTTONS
========================*/

.booking-buttons{

    display:flex;

    gap:18px;

}

.call-btn,
.whatsapp-btn{

    flex:1;

    height:56px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.call-btn{

    background:#173B68;

}

.whatsapp-btn{

    background:#13b93c;

}

.call-btn:hover,
.whatsapp-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

/*========================
FORM CARD
========================*/

.booking-form-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.form-top{

    text-align:center;

    margin-bottom:30px;

}

.form-top h2{

    color:#7b1b12;

    font-size:36px;

    font-weight:700;

    margin-bottom:10px;

}

.form-top p{

    color:#777;

    font-size:15px;

}

/*=========================================
            INPUTS
=========================================*/

.input-group{

    margin-bottom:18px;

}

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:14px;

    outline:none;

    font-size:16px;

    background:#fff;

    transition:.3s;

    box-sizing:border-box;

    font-family:'Poppins',sans-serif;

}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    border-color:#ef7f1a;

    box-shadow:0 0 0 4px rgba(239,127,26,.12);

}

.input-group textarea{

    resize:none;

    height:130px;

}

/*=========================================
DOUBLE INPUT
=========================================*/

.double-input{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:18px;

}

.double-input input{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:14px;

    outline:none;

    font-size:16px;

    transition:.3s;

    box-sizing:border-box;

}

.double-input input:focus{

    border-color:#ef7f1a;

    box-shadow:0 0 0 4px rgba(239,127,26,.12);

}

/*=========================================
BUTTON
=========================================*/

.submit-booking{

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    background:#ef7f1a;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

.submit-booking:hover{

    background:#d96f12;

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(239,127,26,.35);

}

/*=========================================
SMALL ANIMATIONS
=========================================*/

.booking-form-card{

    transition:.35s;

}

.booking-form-card:hover{

    transform:translateY(-4px);

}

.feature{

    transition:.3s;

}

.feature:hover{

    transform:translateX(6px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.booking-wrapper{

grid-template-columns:1fr;

}

.booking-form-card{

margin-top:25px;

}

}

@media(max-width:768px){

.booking-section{

padding:70px 0;

}

.booking-image{

height:230px;

}

.booking-content{

text-align:center;

}

.booking-content h2{

font-size:36px;

}

.booking-content p{

font-size:16px;

}

.booking-buttons{

flex-direction:column;

}

.booking-features{

justify-items:center;

}

.feature{

justify-content:center;

}

.double-input{

grid-template-columns:1fr;

}

.booking-form-card{

padding:24px;

}

.form-top h2{

font-size:30px;

}

.submit-booking{

height:56px;

font-size:17px;

}

}

/* Booking Tabs */
.booking-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:35px;
}

.tab-btn{
    border:none;
    outline:none;
    background:#f5f5f5;
    color:#333;
    padding:14px 28px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.tab-btn:hover{
    background:#c87a2a;
    color:#fff;
}

.tab-btn.active{
    background:#8B1E12;
    color:#fff;
}

/* ==========================
   BOOKING MOBILE
========================== */

@media (max-width: 768px) {

    .booking-wrapper{
        display:flex;
        flex-direction:column;
        gap:30px;
    }

    .booking-left,
    .booking-form-card{
        width:100%;
        max-width:100%;
        flex:0 0 100%;
    }

    .booking-image{
        width:100%;
        overflow:hidden;
        border-radius:22px;
    }

    .booking-image img{
        width:100%;
        height:260px;
        object-fit:cover;
        display:block;
    }

    .booking-content{
        margin-top:20px;
    }

    .booking-form-card{
        padding:25px;
        border-radius:24px;
    }

    .double-input{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .double-input input{
        width:100%;
    }

    .booking-tabs{
        flex-direction:column;
        gap:12px;
    }

    .tab-btn{
        width:100%;
    }

}