/* === Font Import === */
/* === Font Import === */
@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@300;400;500;600;700&family=Philosopher:wght@400;700&display=swap');

/* === Base Styles === */
body,
html {
    font-family: "Anek Latin", sans-serif;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.page-title,
.modal-title {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
}

label,
input,
button,
.form-control,
.btn,
p,
span,
li {
    font-family: "Anek Latin", sans-serif;
}

ul {
    list-style: none;
}

button {
    padding: 12px;
}

/* === Navigation Bar === */
.navbar {
    height: 90px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.bg-body-tertiary {
    z-index: 1000;
    position: relative;
}

.navbar-brand img {
    max-width: 250px;
    height: auto;
}

.navbar-expand-lg .navbar-nav {
    height: fit-content;
    align-items: center;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === Navigation Links === */
.nav-item {
    padding: 0 7px;
}

.nav-link {
    color: rgba(99, 34, 64, 0.6);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.25px;
    position: relative;
    padding: 3px;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    display: block;
    background-color: #f73;
    opacity: 1;
    transform: scale(0, 1);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scale(1, 1);
}

.nav-active::before {
    color: #632240;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    display: block;
    background-color: #f73;
    opacity: 1;
}

a.nav-link.dropdown-toggle {
    color: #f73;
    opacity: 0.9;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.25px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #fff0e8 !important;
    color: #f73 !important;
}

/* === Login Button === */
.home-login-btn {
    color: #f73;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.25px;
    display: inline-flex !important;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 2px solid #ff8f57;
    background: #fff0e8;
    text-decoration: none;
}

/* === Sub Header === */
.sub-headerbox {
    z-index: 999;
    height: 60px;
    position: relative;
    white-space: nowrap;
}

.Sub-heading {
    display: flex;
    gap: 30px;
    padding: 20px 0 12px;
    margin-top: -15px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(180deg, #8e355e 0%, #632240 100%);
    justify-content: center;
}

.sub-nav {
    align-items: center;
    display: flex;
    gap: 5px;
}

.sub-nav a {
    color: #fff;
    font-size: clamp(1.6rem, calc(1rem + 0.7vw), 1.8rem);
    text-decoration: none;
}

.sub-nav img {
    width: 24px;
}

/* === Light Background Section === */
.light-bg {
    border-radius: 0 0 16px 16px;
    background: #893d60;
    min-height: 200px;
    position: relative;
    margin-top: -35px;
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.search-heading {
    color: #fff;
    font-size: clamp(1.6rem, calc(1.6rem + 1.6vw), 3.6rem);
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

/* === Search Box === */
.outer-search-box {
    display: flex;
    justify-content: center;
    z-index: 2 !important;
}

.sub-search {
    border-radius: 6px 0 0 6px !important;
    border: 1px solid #d6d3d1;
    background: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
}

.sub-search input {
    border: none;
    outline: none;
    color: #18171d;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.25px;
}

.search-result-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(0deg, #f50 0%, #ff894e 100%), #f73;
    border: none;
    filter: drop-shadow(0 5px 10px rgba(68, 12, 6, 0.14));
}

.search-result-btn h3 {
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: clamp(1.6rem, calc(1rem + 1.6vw), 2rem);
    padding-right: 8px;
}

.search-result-btn i {
    font-size: 28px;
    color: #fff;
}

/* === Search Suggestions === */
#searchSuggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ff894e;
    border-top: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    max-height: 180px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 999;
    top: 100%;
    left: 0;
}

#searchSuggestions li a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #632240;
    font-weight: 500;
    transition: background 0.2s ease;
}

#searchSuggestions li a:hover {
    background: #fff0e8;
    color: #f73;
}

/* === Breadcrumb === */
.breadcrumb-item a,
.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

/* === Title Box === */
.titleMainBox {
    background-color: #ff5e0012 !important;
    position: relative !important;
    /* padding-top: 15px !important;
    margin-top: -15px !important; */
    width: 100%;
    float: left;
    height: 100px;
    border-radius: 0 0 16px 16px;
}

.titleMainBox .container .titleNameBox {
    width: 100%;
    float: left;
    height: auto;
    color: #ff6e00;
    text-align: center;
    padding: 10px;
}

.titleMainBox .container .titleNameBox ul {
    width: auto;
    float: none;
    display: inline-block;
    height: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

.titleMainBox .container .titleNameBox ul li {
    width: auto;
    float: left;
    height: auto;
    position: relative;
    padding: 0 0 0 30px;
    color: #ff6e00;
    font-size: 13px;
}

.titleMainBox .container .titleNameBox ul li a {
    display: block;
    color: #ff6e00;
    font-size: 13px;
    text-decoration: none;
}

.titleMainBox .container .titleNameBox ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6e00;
    display: block;
    position: absolute;
    left: 10px;
    top: 6px;
    border-radius: 3px;
}

.titleMainBox .container .titleNameBox ul li:first-child {
    padding: 0 !important;
}

.titleMainBox .container .titleNameBox ul li:first-child::before {
    display: none;
}

.dsname {
    font-size: 30px;
}

/* === Footer Typography === */
h2 {
    font-size: 20px;
}

.footer {
    gap: 12px;
    padding: 20px 0 15px;
    font-size: 14px;
}

.f-h-line {
    margin: 15px 0;
}

.sub-footer p {
    font-size: 12px;
}

.mobile-search-header {
    z-index: 1030;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.mobile-search-header .form-select {
    /* background-color: #fff5ed !important; */
    border: 2px solid #f73 !important;
    color: #632240;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.3rem 2rem 0.3rem 0.75rem !important;
    appearance: none;
    cursor: pointer;
}

.mobile-search-header .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(247, 115, 0, 0.25);
    outline: none;
}

/* Input Group - Matches Your Image */
.search-input-wrapper {
    transition: all 0.2s ease;
}

.search-input-wrapper:focus-within {
    border-color: #ff8f57 !important;
    box-shadow: 0 0 0 0.2rem rgba(247, 115, 0, 0.2);
}

#mobile-search {
    font-size: 1.1rem !important;
    color: #632240;
}

#mobile-search:focus {
    box-shadow: none !important;
    background-color: #fff !important;
}

#mobile-search::placeholder {
    color: #632240;
    opacity: 0.7;
    font-weight: 500;
}

/* Search Button - Orange Circle */
.btn-search {
    transition: all 0.2s ease;
}

.btn-search:hover {
    background: linear-gradient(135deg, #e54, #ff7a3d) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(247, 115, 0, 0.3);
}

/* Autocomplete */
#mobile_search_autocomplete {
    border: 1px solid #ffe8d4;
}

#mobile_search_autocomplete .ui-menu-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

#mobile_search_autocomplete .ui-menu-item:hover {
    background: #fff5ed;
}

#mobile_search_autocomplete .highlight {
    color: #f73;
    font-weight: 600;
}

/* === Responsive Design === */

/* Large Tablets and Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {

    .btn,
    .login-btn,
    a.nav-link.dropdown-toggle {
        font-size: 16px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {

    .btn,
    a.nav-link.dropdown-toggle {
        font-size: 16px;
    }

    .city a {
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: flex-start;
    }

    .horizontal-align {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }

    .mobile-login-btn {
        margin: 10px 0;
        width: 100%;
        border: 1px solid #ff8f57;
        background: #fff0e8;
    }

    .mobile-login-btn a {
        color: #f73;
    }

    .navbar-collapse {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-top: 15px;
    }

    .offcanvas .nav-link {
        text-align: left;
        padding: 12px 0;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }

    .offcanvas .nav-link::after,
    .offcanvas .nav-link:hover::after {
        content: none;
    }

    .offcanvas .nav-active::before {
        content: "";
        height: 2px;
        width: 100%;
        background-color: #f73;
        position: absolute;
        left: 0;
        bottom: 0;
    }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
    .city {
        overflow: scroll;
        margin: 15px;
    }

    .d-search {
        width: 90%;
        height: 42px;
    }

    .d-search i {
        font-size: 18px;
    }

    .payment-img {
        padding-bottom: 20px;
    }

    .destination-box h2 {
        padding: 20px 0 10px;
    }

    .destination-outer-container {
        width: 90%;
        margin: auto;
    }

    .sub-headerbox {
        height: 0;
        display: flex;
        justify-content: center;
    }

    .Sub-heading {
        gap: 16px;
        border-radius: 8px;
        justify-content: flex-start;
        overflow-x: scroll;
    }

    .sub-nav {
        gap: 5px;
    }

    .sub-nav a {
        font-size: clamp(1rem, calc(1rem + 0.7vw), 2rem);
    }

    .sub-nav img {
        width: 20px;
    }

    .floating-btn {
        position: fixed;
        bottom: 0;
        left: 0.7rem;
        width: 95%;
        border-top: 2px solid #ccc;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
        z-index: 999;
        display: flex;
        justify-content: space-around;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease-in-out;
    }

    .floating-btn.stop {
        position: absolute;
        padding: 1.5rem 1rem;
    }

    .dsname {
        font-size: 20px !important;
        margin-top: 8px;
    }

    .search-result-btn i {
        font-size: 20px;
    }

    .navbar {
        height: 70px;
    }

    .navbar-brand img {
        max-width: 200px;
    }

    .light-bg {
        min-height: 180px;
    }
}

/* Small Mobile (461px - 575px) */
@media (max-width: 575px) {
    .outer-search-box {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .light-bg {
        margin-top: -15px;
    }

    .sub-search {
        border-radius: 6px !important;
    }

    .search-result-btn {
        border-radius: 8px;
    }

    .Sub-heading {
        padding: 15px 0 10px;
        gap: 12px;
    }

    .titleMainBox {
        height: 80px;
    }

    .titleMainBox .container .titleNameBox ul li {
        font-size: 12px;
        padding: 0 0 0 25px;
    }

    .titleMainBox .container .titleNameBox ul li a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .mobile-search-header .container {
        padding: 0 0.75rem;
    }

    .mobile-search-header form {
        gap: 0.5rem;
    }

    #mobile-search-cat {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem !important;
    }

    .search-input-wrapper,
    .btn-search {
        height: 46px;
    }

    .btn-search {
        width: 46px;
        height: 46px;
    }
}

/* Extra Small Mobile (376px - 460px) */
@media (max-width: 460px) {
    .navbar-brand img {
        max-width: 165px;
    }

    .home-login-btn {
        font-size: 16px;
        margin: 0;
        padding: 5px 10px;
    }

    .navbar {
        height: 65px;
    }

    .sub-search input {
        font-size: 16px;
    }

    .search-result-btn h3 {
        font-size: 1.4rem;
    }

    .search-result-btn i {
        font-size: 18px;
    }

    .dsname {
        font-size: 18px !important;
    }
}

/* Very Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .navbar-brand img {
        max-width: 145px;
    }

    .home-login-btn {
        font-size: 14px;
        padding: 4px 8px;
    }

    .navbar {
        height: 60px;
        padding: 5px 10px;
    }

    .navbar-toggler {
        width: 35px;
        height: 35px;
    }

    .Sub-heading {
        gap: 10px;
        padding: 12px 0 8px;
    }

    .sub-nav a {
        font-size: 1.2rem;
    }

    .sub-nav img {
        width: 18px;
    }

    .search-heading {
        font-size: 1.4rem;
    }

    .sub-search {
        padding: 10px;
    }

    .sub-search input {
        font-size: 14px;
    }

    .search-result-btn h3 {
        font-size: 1.2rem;
        padding-right: 5px;
    }

    .search-result-btn i {
        font-size: 16px;
    }

    .titleMainBox {
        height: 70px;
        padding-top: 10px !important;
    }

    .titleMainBox .container .titleNameBox {
        padding: 8px;
    }

    .titleMainBox .container .titleNameBox ul li {
        font-size: 11px;
        padding: 0 0 0 20px;
    }

    .titleMainBox .container .titleNameBox ul li a {
        font-size: 11px;
    }

    .titleMainBox .container .titleNameBox ul li::before {
        width: 5px;
        height: 5px;
        left: 8px;
        top: 5px;
    }

    .dsname {
        font-size: 16px !important;
    }

    .floating-btn {
        left: 0.5rem;
        width: 96%;
        padding: 0.4rem 0.8rem;
    }

    #searchSuggestions {
        max-height: 150px;
    }

    #searchSuggestions li a {
        padding: 4px;
        font-size: 13px;
    }
}