.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-item {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
}

.slider-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: rgba(0, 0, 0, .6);
    z-index: -1;
}

.slider-text {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-size: 1.5rem;
    width: 100%;
    padding: 0 20px;
}

.slider-text span {
    font-size: 35px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    font-family: var(--style-font);
}

.slider-text h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.3;
}

.slider-item.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .slider-item {
        height: 300px;
    }

    .slider-text span {
        font-size: 1.2rem;
    }

    .slider-text h2 {
        font-size: 1.5rem;
    }
}

/*=========search_form=======*/

.booking-form {
    position: relative;
    background-color: #ffffff;
    border: 2px solid var(--tts-buttton-bg);
    box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
    border-radius: 16px;
    padding: 21px 32px;
    z-index: 3;
    margin-top: -55px;
}

.input-wrap .form-group {
    margin-bottom: 0;
    height: 41px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    position: relative;
}


.input-wrap .form-group .icon i {
    font-size: 24px;
    color: var(--tts-buttton-bg);
}

.input-wrap .form-group label {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.input-wrap .form-group .form-control {
    padding: 0;
    border: 0;
    border-radius: 0;
    font-family: var(--body-font);
}

.input-wrap .form-btn .th-btn:not(:first-child) {
    border-left: 1px solid #E1E4E5;
}

.input-wrap .form-btn .th-btn {
    padding: 15px 45px;
}



/* UI Autocomplete */
.ui-autocomplete.tts-autocomplete {
    position: absolute;
    z-index: 1090;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    list-style: none;
    max-height: 300px;
    width: 450px !important;
    overflow-y: auto;
    font-family: inherit !important;
}

/* Menu item wrapper */
.tts-autocomplete .ui-menu-item-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}


/* Left section with city and airport code */
.tts-autocomplete .dest_left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: inherit !important;
}

.dest_left .city {
    font-weight: bold;
    font-family: inherit !important;
}

.dest_left .airpotcode {
    font-size: 12px;
    font-family: inherit !important;
}

/* Right section with airport code and flag */
.tts-autocomplete .ui-menu-item-wrapper div:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tts-autocomplete .aircode {
    font-size: 12px;
    font-family: inherit !important;
}


.tts-autocomplete .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../../../webroot/img/country-flag.png);
    position: relative;
}

/* Scrollbar Styling */
.tts-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.tts-autocomplete::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.tts-autocomplete::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

/* Datepicker specific styles */
.tts-autocomplete.ui-datepicker .ui-datepicker-header .ui-corner-all,
.tts-autocomplete.ui-datepicker .ui-datepicker-header .ui-state-hover {
    cursor: pointer;
    border: 0;
    background: none;
    font-weight: 700;
    top: 3px;
}

/* Datepicker day styling */
.tts-autocomplete.ui-datepicker td span,
.tts-autocomplete.ui-datepicker td a {
    display: block;
    padding: 0.2em;
    text-align: center;
    text-decoration: none;

}

/* Highlight and active states */
.tts-autocomplete .ui-state-highlight,
.tts-autocomplete.ui-widget-content .ui-state-highlight {
    border: none;
    background: var(--tts-buttton-bg);
    color: #ffffff;
}

.tts-autocomplete .ui-state-active,
.tts-autocomplete.ui-widget-content .ui-state-active {
    background: var(--tts-buttton-bg);
    color: #ffffff;
}

.tts-autocomplete .ui-state-active:hover,
.tts-autocomplete.ui-widget-content .ui-state-active:hover {
    background: var(--tts-buttton-bg);
    color: #ffffff;
}


.tts-autocomplete.ui-datepicker .ui-datepicker-prev::after {
    content: "\f100";
    left: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

.tts-autocomplete.ui-datepicker .ui-datepicker-next::after {
    content: "\f101";
    right: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

@media (max-width: 767px) {
    .input-wrap .form-btn .th-btn {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .input-wrap .form-group {
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .input-wrap .form-group:not(:last-child) {
        border: none;
    }
}