/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* ===== AUTOCOMPLETE WRAPPER ===== */
.autocomplete-wrapper,
.autocomplete-wrapper2 {
    position: relative;
    width: 100%;
}

/* FULL HERO SECTION */
.search-section {
    background: linear-gradient(to right, rgba(14, 77, 146, 0.8), rgba(0, 191, 166, 0.8)),
        url('img/LANDING-PAGE-DESIGN-BANNER.webp') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* REMOVE OLD HERO HEIGHT ISSUE */
.hero {
    background: none;
    height: auto;
    padding: 0;
}

/* FORM FIX */
.search-section .bg-white {
    border-radius: 20px;
    padding: 30px;
}

/* MOBILE SPACING */
@media(max-width:991px) {
    .search-section {
        padding: 60px 0;
        min-height: auto;
    }
}

/* ===== RESULT BOX ===== */
.autocomplete-results,
.autocomplete-results2 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    margin-top: 6px;
}

/* ===== SINGLE ROW ===== */
.autocomplete-result,
.autocomplete-result2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-result:hover,
.autocomplete-result2:hover {
    background: #f5f7fb;
}

/* ===== LEFT CONTENT ===== */
.autocomplete-result div:first-child,
.autocomplete-result2 div:first-child {
    font-size: 14px;
    color: #111;
}

.autocomplete-result b,
.autocomplete-result2 b {
    font-weight: 600;
    color: #0e4d92;
}

/* ===== LOCATION TEXT ===== */
.autocomplete-location {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

#frmSubmit .icons_search {
    position: relative;
    /* top: 128%; */
    left: 5px;
    transform: translateY(139%);
    z-index: 2;
    opacity: 0.7;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7fc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header Mega Menu */
.navbar {
    background: #003580;
    padding: 15px 30px;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

.dropdown-menu {
    background: #003580;
    border: none;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:hover {
    background: #ffcc00;
    color: #003580 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1c1b4d4f, #00bfa6), url(img/LANDING-PAGE-DESIGN-BANNER.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
    color: #fff;
    height: 80vh;
    position: relative;
}

.hero-section {
    height: 80vh;
    background: url('img/LANDING-PAGE-DESIGN-BANNER.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section h1 {
    font-size: 48px;
    animation: fadeInDown 1s;
}

.hero-section p {
    font-size: 18px;
    animation: fadeInUp 1s;
}

.hero-section .btn {
    background: #ffcc00;
    color: #003580;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    animation: fadeInUp 1.2s;
}

.hero-section .btn:hover {
    background: #ff9900;
}


.search-section {
    position: relative;

}

/* Popular Destinations */
.destinations h2 {
    text-align: center;
    margin-bottom: 20px;
}

.destination-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.destination-item:hover {
    transform: scale(1.05);
}

.destination-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-item h3 {
    padding: 15px;
    font-size: 20px;
}

/* Top Deals */
.deal-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.deal-card img {
    height: 200px;
    object-fit: cover;
}

.deal-card .card-body {
    text-align: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    border-radius: 50%;
    padding: 10px;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.faq-item .btn {
    margin-top: 10px;
}

#faq h2 {
    font-weight: bold;
    color: #333;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #007bff;
    color: #fff;
}

.accordion-body {
    font-size: 16px;
    color: #555;
}

/* Newsletter Section */
#subscribe {
    background: url('https://source.unsplash.com/1600x900/?travel,airplane') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
}

#subscribe h2 {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#subscribe p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#subscribe .form-control {
    border-radius: 30px;
    padding: 12px;
    border: none;
}

#subscribe .btn-primary {
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: bold;
    background: #ff6f61;
    border: none;
}

#subscribe .btn-primary:hover {
    background: #e63946;
}

/* Get in touch*/
.btn.btn-outline-white {
    border: 2px solid #ffffff;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 30px;
    font-size: 14px;
}

/* Discount Ribbon */

.flag_discount_ribbon {
    position: relative;
    text-transform: uppercase;
    color: #fff;
}

.flag_discount_ribbon .ribbon__ {
    position: absolute;
    top: -0.1px;
    right: 10px;
}


.flag_discount_ribbon .ribbon__ span {
    position: relative;
    display: block;
    text-align: center;
    background: #124483;
    font-size: 14px;
    line-height: 1;
    padding: 12px 8px 10px;
    border-top-right-radius: 1px;
    width: 90px;
}

.flag_discount_ribbon .ribbon__::after,
.offer-show-main .offer-show::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 46px solid transparent;
    border-right: 46px solid transparent;
    border-top: 10px solid #124483;
}

/* Contact Us Page*/

.section-main-bg {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 101.02%), url(img/aircraft.webp);
}

.banner-section .banner-section-content {
    height: 300px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 40%);
    text-align: center;
    color: #fff;
}

/* Privacy Policy*/

.section-title {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #1A374D;
}

/* Footer */
.footer {
    background: #001f3f;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer {
    font-size: 14px;
}

footer h5 {
    font-weight: bold;
}

footer a {
    transition: 0.3s;
}

footer a:hover {
    text-decoration: underline;
    color: #fbc02d;
    /* Highlight color */
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}