/* ==========================
   BOOKING FORM
========================== */
.booking-form-sticky h4{
	font-size:25px;
}
.booking-form-sticky{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #eee;
	margin-bottom:50px;
}

.booking-form-sticky h4{
    text-align:center;
    margin-bottom:25px;
    font-size:28px;
    font-weight:700;
    color:#141B38;
}

/* Grid Layout */

.booking-form-sticky .form-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:20px;
}

.booking-form-sticky .input-box{
    display:flex;
    flex-direction:column;
}

/* Labels */

.booking-form-sticky label{
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

/* Inputs */

.booking-form-sticky input,
.booking-form-sticky textarea,
.booking-form-sticky select{
    width:100%;
    height:50px;
    padding:12px 15px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    font-size:15px;
    background:#fff;
    transition:.3s ease;
}

.booking-form-sticky textarea{
    min-height:120px;
    resize:vertical;
}

.booking-form-sticky input:focus,
.booking-form-sticky textarea:focus,
.booking-form-sticky select:focus{
    outline:none;
    border-color:#ff6900;
    box-shadow:0 0 0 4px rgba(255,105,0,.15);
}

/* Submit Button */

.booking-form-sticky button[type="submit"]{
    width:100%;
    height:55px;
    margin-top:10px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#ff6900,#ff8c32);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

.booking-form-sticky button[type="submit"]:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(255,105,0,.25);
}

/* Error */

.booking-form-sticky .error-message{
    display:none;
    margin-top:6px;
    color:#e53935;
    font-size:13px;
}

/* Search Dropdown */

.booking-form-sticky .search-select-options div{
    padding:12px 15px;
    cursor:pointer;
    transition:.2s;
}

.booking-form-sticky .search-select-options div:hover{
    background:#f5f5f5;
}

/* Loader */

#loader{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.8);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.spinner{
    width:50px;
    height:50px;
    border:4px solid #eee;
    border-top-color:#ff6900;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* ==========================
   LAYOUT
========================== */

.booking-wrapper{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.booking-form{
    flex:0 0 65%;
}

.package-details{
    flex:0 0 35%;
    background:#fff;
    padding:20px;
    border-radius:20px;
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:sticky;
    top:20px;
}

.package-details img{
    width:100%;
    border-radius:15px;
    margin-bottom:15px;
}

.package-details h2{
    font-size:24px;
    margin-bottom:15px;
    color:#141B38;
}

.package-info p{
    margin-bottom:10px;
    color:#555;
}

.package-info li{
    margin-bottom:8px;
}

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

@media(max-width:768px){

    .booking-wrapper{
        flex-direction:column;
    }

    .booking-form,
    .package-details{
        width:100%;
        flex:100%;
    }

    .package-details{
        position:static;
    }

    .booking-form-sticky{
        padding:20px;
    }

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

    .booking-form-sticky h4{
        font-size:22px;
    }
}