body {
    font-family: "Urbanist", sans-serif;
}
.search__HOTEL_btn {
    background-color: #a72d2c !important;
    border-color: #a72d2c !important;
    color: #fff !important;
}
.search__HOTEL_btn:hover {
    background-color: #8b2322 !important;
    border-color: #8b2322 !important;
    color: #fff !important;
}
.hotel-banner-img {
    filter: blur(10px);
    transition: filter 0.5s ease-in-out;
}

.hotel-banner-img.loaded {
    filter: blur(0);
}
.guests-rooms-done-btn {
    background-color: #a72d2c;
    border: none;
}
.border-hotel-all .text-success {
    color: #004225;
}
.invalid-feedback {
    font-size: 12px;
}

.guests-rooms-done-btn:hover {
    background-color: #8b2322;
    border: none;
}

.guests-rooms-btn:active {
    background-color: #8b2322 !important;
    border: none;
}
.guests-rooms-add-btn {
    border: 1px solid #8b2322;
    color: rgb(26, 26, 26);
}

.guests-rooms-add-btn:hover {
    background-color: #8b2322;
    color: white;
}

/* hotel banner start */
.hotel-banner .room-dropdown-wrapper {
    position: relative;
}

.hotel-banner .room-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    /* padding: 15px; */
    display: none;
    min-width: 300px;
    overflow: auto;
    max-height: 480px;
}

.hotel-banner .room-box {
    margin-bottom: 15px;
    /* padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px; */
}

/* .top_section .hotel-banner{
    margin-top: 75px;
} */
.hotel-banner .counter-btn {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}

.hotel-banner .counter-btn:hover {
    background-color: #f8f9fa;
}

.hotel-banner .counter-value {
    display: inline-block;
    width: 24px;
    text-align: center;
}

.hotel-banner .date-picker-container {
    cursor: pointer;
}

/* Search button inline height */
.search-btn-inline {
    height: 58px;
}

/* Destination search dropdown styles */
.hotel-banner .destination-dropdown-wrapper {
    position: relative;
}

.hotel-banner .destination-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;

    overflow-y: auto;
}

.custom-dropdown {
    max-height: 325px;
    overflow-y: auto;
}

/* Webkit Scrollbar Styling */
.main-destination .custom-dropdown::-webkit-scrollbar {
    width: 8px;
}

.main-destination .custom-dropdown::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 8px;
}

.main-destination .custom-dropdown::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.hotel-banner .destination-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.hotel-banner .destination-item:last-child {
    border-bottom: none;
}

.hotel-banner .destination-item:hover {
    background-color: #f0f7ff;
}

.hotel-banner .destination-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #a72d2c;
}

.hotel-banner .destination-details {
    display: flex;
    flex-direction: column;
}

.hotel-banner .destination-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.hotel-banner .destination-location {
    font-size: 0.8rem;
    color: #6c757d;
}

.hotel-banner .destination-active {
    background-color: #e6f2ff;
}

/* Nationality dropdown styles */
.hotel-banner .nationality-dropdown-wrapper {
    position: relative;
}

.hotel-banner .nationality-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    /* max-height: 300px; */
    /* overflow-y: auto; */
}

.hotel-banner .nationality-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotel-banner .nationality-item:last-child {
    border-bottom: none;
}

.hotel-banner .nationality-item:hover,
.hotel-banner .nationality-item:focus {
    background-color: #f0f7ff;
    outline: none;
}

.hotel-banner .nationality-active {
    background-color: #e6f2ff;
}

.hotel-banner .nationality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #2e587c;
    flex-shrink: 0;
}

.hotel-banner .nationality-icon img {
    border-radius: 2px;
    object-fit: cover;
}

.hotel-banner .nationality-name {
    flex: 1;
    font-weight: 500;
}

/* Nationality flag display in input field */
.hotel-banner .nationality-flag-display {
    position: absolute;
    left: 12px;
    top: 62%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.hotel-banner .nationality-flag-display img {
    border-radius: 2px;
    object-fit: cover;
    display: block;
}

.hotel-banner .nationality-dropdown-wrapper .form-control.has-flag {
    padding-left: 35px;
}

.hotel-banner {
    margin-top: 71px;
    position: relative;
    min-height: 500px;
}

.hotel-banner img {
    object-fit: cover;
}

.flotingg .form-control {
    border-radius: 8px 0 0 8px;
    border-width: 1px 0px 1px 1px;
    /* border-right: 1px solid #000; */
}

.flotingg-g .form-control {
    border-radius: 0 8px 8px 0;
    border-width: 1px 1px 1px 1px;
}

.hotel-search-btn .btn {
    background-color: #a72d2c;
    border: 0;
    transition: all 0.5s ease;
}

.hotel-search-btn .btn:hover {
    background-color: #8b2322;
    border: 0;
}

.hotel-banner .form-control:focus {
    box-shadow: none;
}

.border-hotel-all {
    border: 1px dashed #e2d8d8;
}

/* hotel banner end */
/* explore top hotel start */
.card-custom-top-hotel .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
}

.card-custom-top-hotel .badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    /* background-color: #28a745; */
    background: linear-gradient(90deg, #f8ff00 0%, #3ad59f 100%);
    color: rgb(22, 22, 22);
}

.card-custom-top-hotel .check-icon {
    color: green;
}

.card-custom-top-hotel .top-hotel-card-icon {
    font-size: 14px;
}

.card-custom-top-hotel .check-icon span .card-custom-top-hotel {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.card-custom-top-hotel .top-hotel-card-btn {
    background-color: #a72d2c;
    border: 0;
    width: 135px;
    height: 40px;
    transition: all 0.3s ease;
}

.card-custom-top-hotel .top-hotel-card-btn:hover {
    background-color: #8b2322;
}

.card-custom-top-hotel .top-hotel-card-price {
    color: #2b2625;
    font-size: clamp(16px, 1.2vw, 20px);
}

.card-custom-top-hotel .card-top-hotel-location {
    color: #4e4e4e;
}

.card-custom-top-hotel .card-title {
    color: #2b2625;
    font-size: clamp(18px, 1.5vw, 20px);
}

/* explore top hotel end */

/* popular destinations section start */
.popular-destinations {
    background-color: #f3f6f7;
}

.popular-destinations .travel-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease-in-out;
    height: 350px;
}

.popular-destinations .travel-card .card-img {
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
}

.popular-destinations .travel-card {
    transition: 0.3s ease-in-out;
}
.popular-destinations .overlay-gradient {
    transition: all 0.4s ease-in-out;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.popular-destinations .travel-card:hover .overlay-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    cursor: pointer;
}

.popular-destinations .card-img-overlay .btn {
    background-color: #ff8900;
    color: #1a1a1a;
    width: 150px;
    height: 40px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.popular-destinations .card-img-overlay .btn:hover {
    border: 1px solid #ff8900;
    color: #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.095) !important;
}
.form-floating > label {
    font-size: 15px;
}

/* popular destinations section end */
/* @media screen and (max-width: 992.92px) {
  .top_section .hotel-banner {
    margin-top: 73px;
  }
}
@media screen and (max-width: 767.92px) {
  .top_section .hotel-banner {
    margin-top: 102px;
  }
}
@media screen and (max-width: 400.92px) {
  .top_section .hotel-banner {
    margin-top: 96px;
  }
} */
