/* banner */

.banner {
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), color-mix(in srgb, var(--primary-color) 80%, transparent));
    top: 0;
    left: 0;
}

.banner_content {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}

.banner_heading {
    font-family: 'Kanit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner_para {
    color: #495057;
    font-size: 16px;
    font-weight: normal;
    line-height: 34px;
    margin-bottom: 48px;
    font-family: "Inter", serif;
}


@media only screen and (max-width:767px) {
    .banner {
        height: auto;
        padding: 15px 0px 0px 0px;
    }

    .banner_heading {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .banner {
        height: auto;
    }
}


/* banner */

.booking_form {
    padding: 40px 0;
}

.booking_form .book_now {
    padding: 50px 40px;
    background: var(--text-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.booking_form .book_now .form-select,
.booking_form .book_now .form-control {
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 12px 15px;
    background-color: var(--text-light);
    color: var(--text-dark);
    font-family: 'Kanit', sans-serif;
    transition: all 0.3s ease;
}

.booking_form .book_now .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23006064' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.booking_form .book_now .form-label {
    font-family: 'Kanit', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.booking_form .disclaimer {
    margin: 30px 0;
    padding: 20px;
}

.booking_form .disclaimer p {
    font-family: 'kanit' sans-serif;
    font-size: 16px;
    color: #000;
}

.booking_form .disclaimer p span {
    color: var(--primary-color);
}


.input_wrap input:focus::placeholder,
.input_wrap input:not(:placeholder-shown)::placeholder {
    color: transparent;
    transition: 0.3s ease-in-out;
}

.booking_form .book_now .form-control:focus,
.booking_form .book_now .form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 96, 100, 0.25);
    background-color: var(--text-light);
}


input:-webkit-autofill,
select:-webkit-autofill {
    background-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s !important;
    color: #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.input_wrap select option {
    background-color: var(--text-light);
    color: var(--text-dark);
    padding: 10px;
}

.input_wrap select option:hover,
.input_wrap select option:focus,
.input_wrap select option:checked {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}