/* ===== File modified by NK on Jan 27th, 2026 at 00:19 AM  ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:root {
    --primary-dark: #005fbd;
    --primary-light-on-hover: #007fff;
    --dark-text-color: #6c6c6c;
    --secondary: #ec4899;
    --footer-bg-color: #474747;
    --bg-primary: #fefefe;
    --bg-secondary: #f8f9fa;
    --text-primary: #1f2937;
    --text-secondary: #4a4a4a;
    --border: #e5e7eb;
}

.show {
    display: flex;
}

.section-header-wrapper {
    padding: 5em 0;
    background-image: url('/images/light_bg.jpg');
    background-size: cover;
}

.section-header-wrapper h3 {
    position: relative;
    font-size: 2.5em;
    text-align: center;
    color: var(--dark-text-color);
}

.section-header-wrapper h3::after {
    content: '';
    position: absolute;
    background-color: var(--secondary);
    height: 5px;
    width: 1em;
    border-radius: 4px;
    left: 50%;
    top: 1em;
    transform: translateX(-50%);
}

/* ===== custom header ===== */

.custom-header {
    z-index: 2;
    position: relative;
}

.custom-header .top {
    width: 100%;
    background-color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    padding: 1em 6% 4%;
}

.top p {
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.8em;
    margin-right: 1em;
}

.top a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9em;
    transition: ease-in-out 0.3s;
}

.top a i {
    margin-right: 3px;
    font-size: 1.1em;
    transition: ease-in-out 250ms;
    position: relative;
    top: 2px;
}

.top a:hover,
.top a:hover i {
    color: var(--secondary);
}

.top a.primary-contact-no {
    margin-right: 1em;
}

.custom-header .bottom {
    margin: 0px 6%;
    padding: .8em;
    position: relative;
    bottom: 2.5em;
    background-color: #ffffffd6;
    backdrop-filter: blur(1px);
    border-radius: 6px;
    border: 3px solid var(--border);
}

.bottom #navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbar .company-name {}

.company-name a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.company-name a span {
    font-size: 1.75em;
    font-weight: bold;
    text-transform: capitalize;
}

.company-name a img {
    display: inline-block;
    width: 4em;
    margin-right: 6px;
}

span.light-colored {
    color: var(--primary-light-on-hover);
}

span.dark-colored {
    color: var(--dark-text-color);
}

#navbar .links {}

.links .nav-links {}

.nav-links a {
    color: var(--dark-text-color);
    font-weight: 500;
    font-size: 1em;
    padding: 0.7em;
    text-decoration: none;
    transition: ease-in-out 300ms;
    border-radius: 5px;
    margin-right: 0.6em;
}

.nav-links a:hover {
    background-color: var(--primary-light-on-hover);
    color: #fff;
}

.nav-links a:last-child {
    margin-right: 0;
}

.nav-links a i {
    position: relative;
    top: 2px;
}

#navbar .mobile-menu-btn {
    display: none;
    padding: 0.8em;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    border: 2px solid var(--secondary);
}

.bottom .mobile-menu {
    display: none;
    position: absolute;
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(2px);
    transition: transform 0.3s ease-in-out;
    border: 2px solid var(--border);
    padding: 0.4em 1em 0.4em 1em;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    border-bottom: 2px solid var(--text-muted);
    padding: 0.6em;
    text-align: right;
    text-decoration: none;
    color: var(--text-secondary);
    text-transform: capitalize;
}

.mobile-menu a:last-child {
    border: none;
}

.mobile-menu-btn i {
    color: var(--secondary);
    font-size: x-large;
}

/* responsive mobile menu */
@media only screen and (max-width: 992px) {
    #navbar .mobile-menu-btn {
        display: flex;
    }

    #navbar .links {
        display: none;
    }

    .custom-header .bottom {
        bottom: 2em;
    }

    .bottom .mobile-menu {
        flex-direction: column;
        border-radius: 6px;
        min-width: 20em;
        align-items: stretch;
        right: 0;
        margin-top: 1.2em;
    }
}

/* ===== custom banner ===== */
section.custom-banner {
    margin-top: -8em;
}

section.custom-banner #homeHeroSlider {}

#homeHeroSlider {
    width: 100%;
    height: 100%;
}

.home-hero-swiper-wrapper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 40em;
}

.swiper-slide img {
    max-width: 100%;
    height: auto;
    width: 100%;
    transition: transform 5s ease-in-out;
    transform: scale(1);
    filter: brightness(45%);
}

.swiper-slide-active img {
    transform: scale(1);
}

.swiper-slide .slider-text-wrapper {
    position: absolute;
    width: 74%;
    color: #fff;
}

.slider-text-wrapper h3 {
    text-transform: uppercase;
    font-size: 4.4em;
    margin-bottom: 0.2em;
    /* letter-spacing: 1.2px; */
}

.slider-text-wrapper p {
    letter-spacing: -0.4px;
    line-height: 1.3;
    font-size: 1.3em;
    letter-spacing: 0.6px;
}

#homeHeroSlider .swiper-button-next,
#homeHeroSlider .swiper-button-prev {
    color: var(--secondary);
}

/* ===== search-section ===== */

/* Search Bar */
section.search-section {
    background: rgb(0 0 0 / 50%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: visible;
    position: relative;
    z-index: 10;
    padding: 2em 6em;
    margin-top: -4em;
}

.search-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    align-items: stretch;
}

.search-input-group {
    padding: 1.2rem 2rem;
    border-right: 1px solid var(--dark-text-color);
    position: relative;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    background: #dbdbdb;
}

.search-input-group:hover {
    background: #fff;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #000;
    font-weight: 400;
    background: transparent;
    cursor: text;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

/* Custom Dropdown */
.custom-select {
    position: relative;
    width: 100%;
    pointer-events: none;
}

.select-selected {
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.select-selected:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--primary-dark);
    margin-left: 10px;
    transition: transform 0.3s;
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
}

/* Dropdown Container - Fixed positioning */
.dropdown-container {
    position: fixed;
    background-color: white;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.dropdown-container.show {
    display: block;
    animation: slideDown 0.2s ease;
}

/* Autocomplete Container */
.autocomplete-container {
    position: fixed;
    background-color: white;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.autocomplete-container.show {
    display: block;
    animation: slideDown 0.2s ease;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.autocomplete-item.no-results {
    color: var(--text-muted);
    cursor: default;
    font-style: italic;
}

.autocomplete-item.no-results:hover {
    background-color: white;
    color: var(--text-muted);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-container div {
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.dropdown-container div:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.dropdown-container div.same-as-selected {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.dropdown-container div.same-as-selected:hover {
    background-color: var(--primary-dark);
}

.search-btn {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    padding: 0 3rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: ease-in-out 300ms;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-btn:hover {
    background: var(--primary-light-on-hover);
    /* color: var(--text-primary); */
}

/* ===== best moments ===== */
section.explore-our-tours {
    padding: 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    background: url('../images/light_bg.jpg');
    background-size: cover;
    background-position: center;
}

section.explore-our-tours .left-half {}

.summary-wrapper {
    margin-top: 2em;
}

.summary-wrapper p {
    line-height: 1.4;
    font-size: 1.1em;
}

.summary-wrapper ul {
    list-style: none;
    margin-top: 1.5em;
    line-height: 1.5;
}

.summary-wrapper ul li {
    font-size: 1.2em;
    gap: 8px;
    display: flex;
    align-items: center;
    line-height: 2;
}

.summary-wrapper ul li i {
    font-size: 1.4em;
    color: var(--secondary);
}

.summary-wrapper ul li span {
    text-transform: capitalize;
}


.left-half .upper,
.right-half .upper {
    margin-bottom: 2em;
}

.left-half .lower,
.right-half .upper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

section.explore-our-tours .right-half {}

.right-half .header-wrapper {
    margin-bottom: 3em;
}

.header-wrapper h3 {
    font-size: xxx-large;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--primary-dark);
    position: relative;
    text-transform: uppercase;
}

.header-wrapper h3::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 4px;
    border-radius: 4px;
    background-color: var(--secondary);
    left: 0;
    margin-top: 1.3em;
}

.header-wrapper p {
    margin-top: 2.5em;
    line-height: 1.4;
    font-size: 1.1em;
}

.right-half .gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    transition: transform 0.5s ease;
    height: auto;
    max-width: 100%;
}

.img-box:hover img {
    transform: scale(1.1);
}

.img-box .overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    flex-direction: column;
    text-align: center;
    z-index: 10;
    visibility: visible;
    backdrop-filter: blur(4px);
}

.img-box:hover .overlay {
    opacity: 1;
    bottom: 0;
}

.overlay h3 {
    font-size: 2em;
    letter-spacing: 1px;
}

.overlay p {
    margin-top: 1em;
    line-height: 1.2;
    width: 75%;
    font-size: 1em;
    letter-spacing: 0.4px;
}

/* ===== tour type ===== */
section.tour-type {}

section.tour-type .main-content {
    color: #fff;
    background-image: linear-gradient(rgb(0 0 0 / 55%), rgb(0 0 0 / 55%)), url(../images/tour_type_bg.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 10em;
    padding-bottom: 5em;
}

.main-content h3 {
    font-size: xxx-large;
    font-weight: 300;
    letter-spacing: -0.5px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1em;
}

.main-content h3::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 4px;
    border-radius: 4px;
    background-color: var(--secondary);
    margin-top: 1.3em;
    left: 50%;
    transform: translateX(-50%);
}

.main-content p {
    width: 50%;
    margin: auto;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.main-content .cards-wrapper {
    display: flex;
    gap: 2em;
    justify-content: center;
    margin-top: 3em;
}

.cards-wrapper a {
    text-decoration: none;
    display: inline-block;
    padding: 2em;
    background: url('../images/light_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    transition: ease-in-out 300ms;
    transform: translateY(0);
    min-width: 25%;
}

.cards-wrapper a:hover {
    transform: translateY(-3%);
}

.cards-wrapper a img {
    max-width: 100%;
    height: auto;
    width: 5em;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.cards-wrapper a h4 {
    color: var(--text-secondary);
    font-size: larger;
    text-align: center;
    margin-top: 1em;
}

/* ===== most popular tours ===== */
section.most-popular-tours {
    padding: 6%;
    background: url('../images/light_bg.jpg');
    background-size: cover;
    background-position: center;
}

section.most-popular-tours .section-header {
    margin-bottom: 3em;
}

.section-header h3 {
    font-size: xxx-large;
    font-weight: 300;
    letter-spacing: -0.5px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1em;
    color: var(--primary-dark);
}

.section-header h3::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 4px;
    border-radius: 4px;
    background-color: var(--secondary);
    margin-top: 1.3em;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    width: 50%;
    margin: auto;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.5;
}

/* custom tabs */

section.most-popular-tours .custom-tab-container {}

.custom-tab-container .tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
}

.tab-wrapper .tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.tabs .tab-link {
    list-style: none;
    padding: 1em 2em;
    color: #aaa;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: all ease 0.5s;
    border-bottom: solid 4px rgba(255, 255, 255, 0);
    letter-spacing: 1px;
}

.tab-link:hover {
    color: var(--primary-light-on-hover);
    border-color: #999;
    background-color: var(--border);
    border-radius: 4px;
}

.tab-link.active {
    color: var(--primary-dark);
    border-color: var(--secondary);
}

.custom-tab-container .content-wrapper {
    margin-top: 3em;
}

.content-wrapper .tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

/* Tour Card */
section.most-popular-tours .card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.card-container .tour-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: ease-in-out 300ms;
    transform: translateY(0);
}

.card-container .tour-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-1.5%);
}

.tour-card .card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image-wrapper .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card .card-content {
    padding: 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5em;
    gap: 1.25rem;
}

.card-header .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    flex: 1;
    transition: ease-in-out 300ms;
}

.tour-card:hover .card-title {
    color: var(--primary-light-on-hover);
}

.card-price-display {
    text-align: right;
    flex-shrink: 0;
    display: none;
}

.price-old {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    display: block;
    margin-bottom: 3px;
}

.price-new {
    font-size: 1.25rem;
    color: var(--primary-light-on-hover);
    font-weight: 700;
    line-height: 1;
    display: block;
}

.card-content .card-rating {
    font-size: 1em;
    color: var(--text-secondary);
    margin-bottom: 1.5em;
    font-weight: 600;
    display: block;
}

.card-description {
    color: var(--text-secondary);
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: calc();
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    background: var(--primary-dark);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    margin-top: auto;
    transition: ease-in-out 300ms;
}

.tour-card:hover .card-footer {
    background: var(--primary-light-on-hover);
}

.card-footer .footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-footer .footer-item .footer-icon {
    width: 20px;
    height: 20px;
}


/* ===== back to top button ===== */
.back-to-top {
    position: fixed;
    bottom: 0.5em;
    right: 0.5em;
    width: 1.25em;
    height: 1.25em;
    border-radius: 4px;
    border: none;
    background: var(--primary-dark);
    color: var(--bg-secondary);
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: ease 300ms;
    z-index: 3;
    padding: 1em;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-20%);
    background: var(--primary-light-on-hover);
    color: #fff;
}

/* ===== Google Map ===== */
#googleMap {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background-color: #373737;
    padding: 30px 0;
    color: #fff;
    padding-top: 70px;
}

.container-f {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
    gap: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col ul.footer-page-links {
    list-style: none;
}

ul.footer-page-links li {
    display: flex;
    gap: 5px;
    align-items: center;
    line-height: 1.7;
}

ul.footer-page-links li i {
    font-size: 1.1em;
    position: relative;
    bottom: 1px;
}

ul.footer-page-links li a {
    text-transform: capitalize;
    color: var(--primary-light-on-hover);
    font-weight: bold;
    transition: ease-in-out 100ms;
}

ul.footer-page-links li a:hover {
    color: var(--secondary);
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 1em;
    font-size: 1.5em;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 14px;
    border-top: 2px solid var(--border);
    color: var(--secondary);
    width: 90%;
    margin: auto;
    margin-top: 30px;
    font-weight: 600;
}

.footer .comp-name {
    color: var(--primary-light-on-hover);
    font-size: 2.25em;
    margin-top: -0.3em;
    margin-bottom: 0.75em;
}

.footer .comp-name-span {
    color: #fff;
}

.textwidget {
    font-size: 15px;
    line-height: 1.3;
}

.textwidget p:first-child {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.textwidget p.contact-no-link {
    margin-bottom: 1em;
}

p.contact-no-link a,
p.email-link a {
    color: var(--primary-light-on-hover);
    font-weight: bold;
    transition: ease-in-out 100ms;
}

p.contact-no-link a:hover,
p.email-link a:hover {
    color: var(--secondary)
}

.textwidget p.address {
    margin-bottom: 1em;
}

.textwidget p {
    display: flex;
    align-items: center;
    gap: 6px;
}

.textwidget p i {
    font-size: 1.2em;
}

.social-menu {
    display: flex;
    justify-content: left;
    gap: 15px;
    align-content: space-between;
}

.social-btn {
    list-style: none;
    width: 45px;
    height: 45px;
    background: var(--border);
    margin: 0px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 10px -5px rgb(255, 255, 255, 0.1);
    transition: ease-in-out 200ms;
}

span.span-style {
    margin: 0 10px 3px 0
}

.social-btn a {
    text-decoration: none;
    color: #fff;
}

.social-btn:hover a {
    color: #fff;
}

.social-menu a {
    width: 24px;
    height: 24px;
}

.social-btn:hover::after {
    top: -12px;
    opacity: 1;
}

.facebook a {
    color: #3b5999;
}

.facebook:hover {
    background: #3b5999;
}

.instagram a {
    color: #962fbf;
}

.instagram:hover {
    background: #962fbf;
}

.pinterest a {
    color: #c8232c;
}

.pinterest:hover {
    background: #c8232c;
}

.linkedin a {
    color: #0b9632;
}

.linkedin:hover {
    background: #049929;
}