@font-face {
    font-family: 'Santral-Book';
    src: url('../fonts/SantralBook.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Santral-Regular';
    src: url('../fonts/Santral-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Santral-Medium';
    src: url('../fonts/SantralMedium.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Santral-SemiBold';
    src: url('../fonts/SantralSemiBold.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Goudy Bookletter 1911';
    src: url('../fonts/goudy_bookletter_1911.otf') format('opentype');
    font-weight: 400;
}

:root {
    --font-main: 'Santral-Book';
    --font-main-regular: 'Santral-Regular';
    --font-main-medium: 'Santral-Medium';
    --font-main-bold: 'Santral-SemiBold';
    --font-secondary: 'Goudy Bookletter 1911';
}

.main-font {
    font-family: var(--font-main);
}

.main-regular-font {
    font-family: var(--font-main-regular);
}

.main-medium-font {
    font-family: var(--font-main-medium);
}

.main-bold-font {
    font-family: var(--font-main-bold);
}

.secondary-font {
    font-family: var(--font-secondary);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Santral-Book', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Navbar container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: 0.4s ease-in-out;
}

/* Layout inside navbar */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

/* Menu links */
.nav-links .nav-link {
    display: inline-flex;
    align-items: center;
    padding: clamp(14px, 1vw, 16px);
    color: white;
    fill: white;
    text-decoration: none;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.2;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

.nav-links .nav-link:hover {
    background-color: var(--primary-color-lighter);
    color: var(--primary-color-dark);
    fill: var(--primary-color-dark);
}

.nav-link .nav-caret {
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    color: currentColor;
}

/* Icons container */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    max-height: 44px;
}

/* Icon buttons */
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: 0.4s ease-in-out;
}

.icon-btn svg {
    fill: white;
    transition: 0.4s ease-in-out;
}

.icon-btn:hover {
    background-color: var(--primary-color-lighter);
}

.icon-btn:hover svg {
    fill: var(--primary-color-dark);
}


.navbar.white-bg,
.navbar.active {
    background: white;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.10);
}

.navbar.white-bg .nav-links .nav-link {
    color: var(--primary-color-dark);
    fill: var(--primary-color-dark);
}

.navbar.white-bg .nav-links .nav-link .nav-caret {
    color: var(--primary-color-dark);
}

.navbar.white-bg .icon-btn svg {
    fill: var(--primary-color-dark);
}

.navbar .logo img {
    width: 120px;
    height: auto;
    transition: 0.4s ease-in-out;
}

.navbar.white-bg .logo img:nth-of-type(1),
.navbar.active .logo img:nth-of-type(1) {
    display: none;
}

.navbar.white-bg .logo img:nth-of-type(2),
.navbar.active .logo img:nth-of-type(2) {
    display: block;
}

/* Plan your trip button */
.plan-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color-light);
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s ease-in-out;
}

.plan-btn:hover {
    background: #9e7728;
}

.plan-btn svg {
    fill: white;
}

.wrap-img {
    width: 100%;
    height: 100vh;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    pointer-events: none;
}

.top-banner .wrap-video {
    width: 100%;
    height: 100vh;
    /* full viewport height */
    overflow: hidden;
    position: relative;
}

.top-banner .video-object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover the wrapper fully */
}

.top-banner .video-object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover the wrapper */
}

.top-banner .wrap-iframe {
    width: 100%;
    height: 100vh;
    /* full viewport height */
    overflow: hidden;
    position: relative;
}

.top-banner .iframe-object-fit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77%;
    /* 100 * 16/9 to ensure full coverage */
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* disable clicks */
}

.destinations-sec.active .popup-destinations {
    display: flex;
}

.destinations-home-swiper .swiper-btn {
    display: none;
}

@media (max-width:768px) {
    .destinations-home-swiper .swiper-btn {
        display: flex;
    }
}

.popup-destinations {
    background-color: white;
    min-height: 200px;
    position: absolute;
    top: calc(100% + 20px);
    width: calc(100vw - 32px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    box-shadow: 2px 2px 10px #0000001f;
    display: none;
}

.search-input-withIcon {
    position: relative;
}

.search-input-withIcon input {
    padding: 16px;
    outline: 1px var(--cyan-blue-600, #81989C) solid;
    outline-offset: -1px;
    width: 100%;
}

.search-input-withIcon img {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.search-sec.active .popup-search {
    display: flex;
}

.mobile-popup-header,
.destinations-back-btn {
    display: none;
}


.popup-search {
    background-color: white;
    min-height: 200px;
    position: absolute;
    top: calc(100% + 20px);
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    box-shadow: 2px 2px 10px #0000001f;
    display: none;
    padding: 24px;
}

.locations-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: calc(3 * 40px + 32px);
    gap: 16px 32px;
    align-content: flex-start;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
}

.location-item img {
    width: 20px;
    height: 20px;
}

.location-item:hover span {
    text-decoration: underline;
}

.tabs-destination {
    width: 270px;
    background: var(--primary-color-lighter);
    padding: 24px;
}

.list-destination {
    padding: 0;
    margin: 0;
    flex: 1;
}

.list-destination li {
    fill: var(--primary-color-dark);
    color: var(--primary-color-dark);
    padding: 10px;
    transition: 0.3s ease-in-out;
    border-radius: 2px;
    cursor: pointer;
    line-height: 1.3;
    width: fit-content;
}

.list-destination li:hover,
.list-destination li.active {
    fill: white;
    color: white;
    background: var(--primary-color-dark);
}

.trending-destinations,
.countries-destinations {
    padding: 24px;
    width: 100%;
}

.card-destinations {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--primary-color-lighter);
    color: var(--primary-color-dark);
    width: calc(33.3% - 16px);
    text-decoration: none;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.card-destinations:hover,
.card-countries:hover {
    border-bottom: 1px solid var(--secondary-color)
}

.img-card-des {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.btn-card-des span,
.card-countries span {
    transform: translateX(0);
    transition: 0.3s ease-in-out;
}

.card-destinations:hover .btn-card-des span,
.card-countries:hover span {
    transform: translateX(8px);
}

.btn-card-des img,
.card-countries img {
    transform: translateX(-8px);
    transition: 0.3s ease-in-out;
}

.card-destinations:hover .btn-card-des img,
.card-countries:hover img {
    transform: translateX(0);
}

.btn-footer-des {
    color: var(--primary-color-dark);
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.btn-footer-des:hover {
    background: var(--primary-color-light);
}

.links-countries {
    width: calc(33.3% - 16px);
}

.card-countries {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--primary-color-lighter);
    color: var(--primary-color-dark);
    text-decoration: none;
    transition: 0.3s ease-in-out;
    width: 100%;
    cursor: pointer;
    height: fit-content;
}

h2.header-countries {
    font-family: "Santral-Medium";
    font-weight: 400;
    text-transform: capitalize;
    line-height: 23.80px;
    margin: 0;
}

.logo-with-mobile-icon {
    width: 23%;
}

@media (max-width: 1100px) {
    .logo-with-mobile-icon {
        width: 18%;
    }
}

@media (max-width: 992px) {

    .links-countries,
    .card-destinations {
        width: 100%;
    }
}

.logo-with-mobile-icon .nav-link,
.logo-with-mobile-icon .btn-navbar {
    display: none;
}

.logo-with-mobile-icon .nav-link {
    fill: white;
    transition: 0.5s ease-in-out;
}

.white-bg .logo-with-mobile-icon .nav-link,
.navbar.active .logo-with-mobile-icon .nav-link {
    fill: var(--primary-color-dark);
}

.btn-navbar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.btn-navbar span {
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: white;
    transition: 0.5s ease-in-out;
}

.navbar.white-bg .btn-navbar span,
.navbar.active .btn-navbar span {
    background-color: var(--primary-color-dark);
}

.navbar.active .btn-navbar span:nth-child(2) {
    transform: translateY(-4.5px) rotate(45deg);
}

.navbar.active .btn-navbar span:nth-child(1) {
    transform: translateY(3px) rotate(-45deg);
}

.logo img:nth-of-type(2) {
    display: none;
}

@media (max-width: 1200px) {
    .navbar .container {
        max-width: none;
    }
}


@media (max-width: 992px) {
    .navbar .container {
        padding: 0;
    }

    .nav-links .nav-link {
        color: var(--primary-color-dark);
        font-size: 20px;
        font-family: "Santral-Medium";
        font-weight: 400;
        text-transform: capitalize;
    }

    .nav-link .nav-caret {
        width: 14px;
        height: 14px;
    }

    .nav-links .nav-link:hover {
        background-color: transparent;
    }

    .icon-btn svg, .lang-switcher-btn {
        fill: var(--primary-color-dark);
    }
    .lang-switcher-btn span {
        color: var(--primary-color-dark);
    }
    .navbar.active .logout-btn svg {
        stroke: var(--primary-color-dark);
    }

    .sec-links-nav {
        width: 100%;
        height: calc(100dvh - 65px);
        align-items: flex-start;
        padding: 24px 16px 64px;
        min-height: calc(100dvh - 65px);
        position: absolute;
        top: 100%;
        left: 100%;
        background: white;
        opacity: 0;
        transition: 0.5s ease-in-out;
    }

    .navbar.active .sec-links-nav {
        left: 0;
        opacity: 1;
    }

    .sec-links-nav .nav-links {
        align-items: flex-start;
    }

    .logo-with-mobile-icon {
        width: 100vw;
        padding: 0 16px;
    }

    .logo {
        justify-content: center;
    }

    .logo-with-mobile-icon .nav-link,
    .logo-with-mobile-icon .btn-navbar {
        display: flex;
    }

    .nav-icons {
        justify-content: space-between;
        width: 100%;
    }

    .popup-destinations {
        top: 0;
        display: flex;
        left: 100%;
        width: 100%;
        transform: translate(0);
        height: 100%;
        opacity: 0;
        transition: 0.5s ease-in-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .popup-destinations.active {
        left: 0;
        opacity: 1;
        box-shadow: none;
        z-index: 1;
    }

    .mobile-popup-header {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: white;
        padding: 16px 26px;
        z-index: 2;
    }

    .mobile-popup-title {
        color: var(--primary-color-dark);
        font-size: 16px;
        font-family: var(--font-main-bold);
    }

    .destinations-back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding-left: 20px;
        background: transparent;
        border: none;
        border-radius: 0;
        cursor: pointer;
        color: var(--primary-color-dark);
        font-family: var(--font-main-medium);
        font-size: 14px;
        position: relative;
    }

    .destinations-back-btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        border-top: 2px solid var(--primary-color-dark);
        border-left: 2px solid var(--primary-color-dark);
        width: 10px;
        height: 10px;
    }

    .tabs-destination {
        width: 100%;
        padding: 16px;
        border-radius: 6px;
        background: transparent;
        height: calc(100% - 110px);
    }

    .btn-footer-des {
        width: fit-content;
    }

    .list-destination li {
        width: 100%;
        justify-content: flex-start;
        display: inline-flex;
    }

    .trending-destinations {
        padding: 20px;
        gap: 16px;
    }

    .card-destinations {
        width: 100%;
    }

    .img-card-des {
        height: 160px;
    }

    .list-destination li:hover,
    .list-destination li.active {
        color: var(--primary-color-dark);
        fill: var(--primary-color-dark);
        background-color: transparent;
    }
}

/* Worship. Wander. Discover. */
.feature-card {
    width: calc(33.3% - 32px);
    display: flex;
    flex-direction: column;
    padding-block: 32px;
}

.feature-icon img {
    height: 61px;
}

.feature-card .fearure-title {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: "Goudy Bookletter 1911";
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .feature-card {
        width: 100%;
        padding-block: 0;
    }
}

/* Where To Next? */

.destination-card {
    width: calc(33.3% - 11px);
    position: relative;
}

.destination-overlay {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: white;
    font-size: 32px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word
}

.destination-card .img-destination {
    height: 250px;
    overflow: hidden;
}

.sponsored-section {
    background-color: var(--secondary-color-dark);
    padding-block: 45px;
}

.sponsored-image {
    width: 50%;
    height: 560px;
    overflow: hidden;
    position: relative;
}

.sponsored-content {
    width: 50%;
    padding: 8px 0 0 32px;
    margin-block: 32px;
}

.save-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    background-color: #00000080;
    padding: 6px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.top-choice-icon {
    position: absolute;
    top: 22px;
    right: 22px;
}

@media (max-width: 992px) {

    .destination-card {
        width: calc(50% - 8px);
        position: relative;
    }

    .sponsored-image,
    .sponsored-content {
        width: 100%;
    }

    .sponsored-image {
        height: 361px;
    }

    .sponsored-content {
        padding: 0;
        margin-block: 0;
    }

    .sponsored-label {
        margin: 0 !important;
    }
}

/* sponsored */

.sponsored-label {
    color: #FBF7EC;
    font-size: 14px;
    font-family: 'Santral-Bold';
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
}

.sponsored-title {
    color: white;
    font-size: clamp(32px, 3vw, 48px);
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
}

.sponsored-description {
    color: var(--secondary-color-lighter);
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 19.20px;
}


/* Featured Traveling inspirations */
.featured-post.main-featured {
    width: calc(60% - 16px);
    overflow: hidden;
    position: relative;
    max-height: 604px;
}

.tabs-thumbnail {
    width: calc(40% - 16px);
}

.main-featured .post-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 361px;
}

.main-featured .post-thumbnail .img-object-fit {
    position: absolute;
}

.main-featured .post-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    bottom: 24px;
    padding: 0 32px;
}

.main-featured .post-content h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 32px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
}

.main-featured .post-content .post-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-color-light);
}

.post-excerpt-date {
    font-size: 12px;
    font-family: var(--font-main-regular);
    font-weight: 400;
}

.post-thumbnail {
    position: relative;
    flex: 0 0 160px;
    height: 145px;
    overflow: hidden;
}

.tabs-thumbnail .post-thumbnail .save-icon {
    top: 12px;
    right: 8px;
}

.title-post-content {
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 16.80px;
    text-transform: uppercase;
}

.post-content h3 {
    font-size: clamp(16px, 1.3vw, 20px);
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.1;
}

.post-date {
    color: var(--primary-color);
    font-size: 12px;
    font-family: var(--font-main-regular);
    font-weight: 400;
}

@media (max-width: 992px) {

    .tabs-thumbnail {
        width: 100%;
    }

    .featured-post.main-featured {
        width: 100%;
        min-height: 361px;
    }
}

/* subscribe-sakina */
.subscribe-sakina {
    background: var(--primary-color-dark);
    text-align: center;
}

.subscribe-sakina .section-title {
    color: white;
}

.subtitle-subscribe {
    color: var(--white, white);
    font-size: 16px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 23.80px;
}

.subscribe-sakina input {
    padding: 16px;
    border-radius: 2px;
    max-width: 344px;
    width: 100%;
    margin: 24px auto 0;
    border: none;
}



/* packages-destinations */

.packages-destinations .swiper-slide {
    height: -webkit-fill-available;
}

.sub-packages {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 24px;
}

.swiper-btn {
    position: relative;
    width: 90px;
    height: 40px;
    margin-left: auto;
    margin-block: auto;

}

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    width: 40px;
    height: 40px;
}

.swiper-btn .swiper-button-next img,
.swiper-btn .swiper-button-prev img {
    position: absolute;
}

.swiper-btn .swiper-button-next {
    left: auto;
    right: 0;
    top: 22px;
}

.swiper-btn .swiper-button-prev {
    right: auto;
    left: 0;
    top: 22px;
}

.swiper-btn .swiper-button-next::after,
.swiper-btn .swiper-button-prev::after {
    display: none;
}

.swiper-btn .swiper-button-next::after {
    transform: rotate(45deg);

}

.swiper-btn .swiper-button-prev img {
    transform: rotate(180deg);
}





.packages-swiper .swiper-wrapper {
    margin-block: 32px;
}

.package-card {
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    border-radius: 2px;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

.package-image {
    height: 240px;
    overflow: hidden;
}

.package-content {
    padding: 12px;
}

.package-content h2 {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.1;
}

.route {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.1;
}

.price {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
}

.item-packages {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}


/* Latest Stories */
.title-latest {
    color: var(--primary-color-dark);
    font-size: clamp(16px, 1.3vw, 24px);
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
}

.sub-latest {
    color: var(--primary-color);
    font-size: clamp(14px, 1vw, 18px);
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.2;
}

.img-card-latest {
    flex: 0 0 293px;
    height: 235px;
    overflow: hidden;
}

.img-side-latest {
    width: 193px;
    height: fit-content;
    overflow: hidden;
}

@media (max-width: 992px) {
    .img-card-latest {
        flex: 0 0 auto;
        max-height: 160px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        height: 100%;
    }
}


/* footer */
.footer {
    background: #f4f7f6;
    color: #222;
    font-family: "Poppins", sans-serif;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about {
    flex: 0 0 300px;
}

.footer-logo {
    font-family: "Georgia", serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 2px;
}

.footer-desc {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.newsletter label {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 24px;
}

.newsletter input {
    width: -webkit-fill-available;
    padding: 16px;
    border: none;
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    border-radius: 2px;
}

.newsletter button {
    width: 100%;
    padding: 10px 16px;
    background: var(--secondary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: var(--white, white);
    font-size: 16px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 23.80px;
    transition: 0.3s;
}

.newsletter button:hover {
    background: var(--secondary-color-light);
}

.footer-links {
    display: flex;
    flex: 2;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: flex-end;
}

.footer-col {
    width: 240px;
}

.footer-col h3 {
    color: var(--primary-color-dark);
    font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 32px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--primary-color-dark);
    font-size: 16px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 23.80px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #000;
}

.contact-info li {
    font-size: 14px;
    color: #444;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    color: #222;
    font-size: 14px;
    border: 1px solid var(--secondary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s;
}

.social-icons a:hover {
    box-shadow: inset 1px 1px 15px var(--secondary-color-light);
}

.footer-bottom {
    padding: 20px 0;
    font-size: 13px;
    color: #555;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links-inline a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding-right: 10px;
}

.footer-links-inline a:last-child {
    padding-right: 0;
}

.footer-links-inline a:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--primary-color-dark);
    right: 0;
    top: 0;
}

.footer-links-inline a:last-child::after {
    display: none;
}

.footer-links-inline a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}



/* search page */
.search-input input {
    padding: 16px 40px 16px 16px;
    outline: 1px var(--cyan-blue-600, #81989C) solid;
    outline-offset: -1px;
    color: var(--primary-color);
    font-size: 16px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1;
    width: -webkit-fill-available;
}

.search-input img {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.tabs-search {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cyan-blue-300, #C6D0D2)
}

.tab-search {
    padding: 8px 12px;
    outline: 0.50px var(--primary-color-dark) solid;
    outline-offset: -0.50px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
    transition: 0.3s ease-in-out;
    background: transparent;
    border: 0;
}

.tab-search.active,
.tab-search:hover {
    background-color: var(--secondary-color);
    outline: 0.50px var(--secondary-color) solid;
    color: white;
}

.img-search {
    max-width: 296px;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.card-search {
    width: calc(33.3% - 22px);
    padding: 8px;
    transition: 0.3s ease-in-out;
    border-radius: 2px;
}

.title-card-search {
    display: block;
    margin-top: 12px;
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
}

.sub-card-search {
    margin-top: 4px;
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.1;
    height: 44px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.btn-card-hover {
    color: var(--primary-color);
    font-size: 16px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.3;
    transition: 0.3s ease-in-out;
    opacity: 0;
    margin-top: 12px;
}


.card-search:hover {
    background: var(--primary-color-lighter);
}

.card-search:hover .btn-card-hover {
    opacity: 1;
}

.max-t {
    max-width: 992px;
}

@media (max-width: 992px) {
    .cards-search {
        gap: 16px;
    }

    .card-search {
        width: calc(50% - 8px);
    }

    .btn-card-hover {
        display: none;
    }

    .title-card-search {
        font-size: 12px;
    }

    .sub-card-search {
        font-size: 16px;
        height: 34px;
    }
}

/* top banner */
.context-top-banner {
    position: absolute;
    bottom: clamp(32px, 5vw, 64px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.center-context-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + clamp(32px, 4vw, 64px)));
    width: 100%;
    bottom: auto;
}

.title-top-banner {
    color: var(--white, white);
    font-size: clamp(40px, 4vw, 64px);
    font-family: "Goudy Bookletter 1911";
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.3;
}

.input-top-banner {
    position: relative;
}

.input-top-banner img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
}

.input-top-banner input {
    padding: 20px 24px 16px 65px;
    max-width: 450px;
    width: 100%;
    color: var(--primary-color-light);
    font-size: 20px;
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1;
    background: #FFFFFF1A;
    border: unset;
    outline: unset;
    outline-offset: unset;
    box-shadow: inset 0 0 3px white;
}

.input-top-banner input::placeholder {
    color: var(--primary-color-light);
    font-size: 20px;
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1;
}

/* half top banner */
.half-top-banner {
    height: 50vh;
    overflow: hidden;
    min-height: 460px;
}

.half-top-banner img {
    filter: brightness(0.6);
}

.half-top-banner h1 {
    color: var(--white, white);
    font-size: 64px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 76.80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media (max-width: 768px) {
    .half-top-banner {
        min-height: 340px;
        height: 55vh;
    }

    .half-top-banner h1 {
        font-size: 36px;
        line-height: 1.2;
        width: calc(100% - 48px);
        padding: 0 24px;
    }
}

/* half top banner */
.half-top-banner-2 {
    height: 50vh;
    overflow: hidden;
    min-height: 460px;
}

.half-top-banner-2 img {
    filter: brightness(0.6);
}

.half-top-banner-2 h1 {
    color: var(--white, white);
    font-size: 64px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 76.80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media (max-width: 768px) {
    .half-top-banner-2 {
        min-height: 340px;
        height: 55vh;
    }

    .half-top-banner-2 h1 {
        font-size: 36px;
        line-height: 1.2;
        width: calc(100% - 48px);
        padding: 0 24px;
    }
}


/* Destination style */
.input-search-destination input {
    padding: 8px 16px 8px 40px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
    border-radius: 2px;
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    border: none;
    width: 250px;
}

.input-search-destination input::placeholder {
    color: var(--primary-color);
}

.input-search-destination img {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.title-menu-destination {
    color: black;
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.menu-destination select {
    padding: 8px 16px;
    width: 195px;
    border-radius: 2px;
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.custom-select {
    position: relative;
}

.menu-destination .custom-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-30%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    pointer-events: none;

}


.card-destination {
    width: calc(25% - 24px);
    padding: 8px;
    transition: 0.3s ease-in-out;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.card-destination:hover {
    background: var(--primary-color-lighter);
}

.card-destination .img-destination {
    max-width: 290px;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .card-destination {
        width: calc(33.3% - 22px);
    }
}

@media (max-width: 992px) {
    .card-destination {
        width: calc(50% - 16px);
    }

    .card-destination .img-destination {
        max-width: none;
    }
}

.title-card-destination {
    display: block;
    margin-top: 12px;
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
}

.sub-card-destination {
    margin-top: 4px;
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media (max-width: 500px) {

    .menu-destination select,
    .menu-destination .custom-select {
        width: -webkit-fill-available;
    }

    .menu-destination {
        flex: 1;
    }
}


/* map section leaflet */
#map {
    width: 100%;
    height: 100%;
}

.map-seaction {
    position: relative;
    height: 100vh;
}

/* Navigation arrows */
.map-swiper {
    position: absolute;
    top: calc(20px + clamp(32px, 5vw, 64px));
    right: 20px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.map-swiper button {
    padding: 12px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.map-swiper #prevBtn img {
    transform: rotate(180deg);
}

/* Popup card styling */

.leaflet-popup-content {
    margin: 0 !important;
    width: fit-content !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 0 !important;
    overflow: hidden !important;
}

.popup-card {
    width: 300px;
    max-width: 90vw;
    font-family: sans-serif;
}

.popup-card h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.popup-card p {
    margin: 4px 0 8px;
    font-size: 13px;
    color: #666;
}

.popup-card button {
    background: #f97316;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.leaflet-marker-icon svg {
    fill: var(--primary-color-dark);
    background-color: white;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.leaflet-marker-icon.active svg {
    fill: white;
    background-color: #B9913C;

}

.img-map-popup {
    height: 149px;
    overflow: hidden;
}

.title-map-popup {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 23.80px;
}

.sub-map-popup {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.leaflet-container a.leaflet-popup-close-button {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    border: none !important;
    text-align: center !important;
    width: 24px !important;
    height: 24px !important;
    font: 16px / 24px Tahoma, Verdana, sans-serif !important;
    color: #000000 !important;
    text-decoration: none !important;
    background: #ffffff !important;
    border-radius: 50% !important;
}

/* Hotels In */
.hotels-image {
    height: 175px;
    overflow: hidden;
}

.hotels-content {
    padding: 12px;
}

.hotels-content h2 {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.1;
}

.hotels-card {
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    border-radius: 2px;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.route-hotels {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.1;
}

.item-hotels {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.price-hotels {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color-light);
    position: relative;
    overflow: hidden;
}

.stars span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #B9913C;
    width: 0%;
    border-radius: 50%;
}

.stars span.active::after {
    width: 100%;
}

.stars span.partial::after {
    width: var(--partial-width);
}

.three-quarters-top-banner {
    height: 80vh;
    overflow: hidden;
    min-height: 650px;
}

.three-quarters-top-banner h1 {
    color: var(--white, white);
    font-size: 64px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 76.80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: calc(100vw - 16px);
    width: 100%;
}

.tab-top-des {
    padding: 0 24px;
    border-right: 1px solid white;
    flex: 1;
}

.tab-top-des:last-child {
    padding: 0 0 0 24px;
    border-right: 0;
}

.tab-top-des:first-child {
    padding: 0 24px 0 0;
}

.tabs-header-destination {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.title-top-destination {
    color: var(--primary-color-light);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.sub-top-destination {
    color: var(--white, white);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 16.80px;
}

@media (max-width: 992px) {
    .tab-top-des {
        padding: 0 16px !important;
        border-left: 1px solid white;
        border-right: none;
        flex: 1 1 calc(50% - 20px);
    }
}

/* Overview */
.header-overview {
    color: var(--primary-color-darke);
    font-size: clamp(32px, 3.5vw, 40px);
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 52.80px;
}

.title-overview {
    color: var(--primary-color-darke);
    font-size: clac(20px, 1.5vw, 24px);
    font-family: var(--font-main-bold);
    font-weight: 400;
    max-width: 843px;
}

.sub-overview {
    color: var(--primary-color-darke);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
    max-width: 843px;
}

/* Cities In ... */
.header-cities {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 23.80px;
}

.card-cities-des {
    padding: 8px;
    border-radius: 2px;
    cursor: pointer;
}

.card-cities-des:hover {
    background-color: var(--primary-color-lighter);
}

.card-cities-des:hover .btn-card-hover {
    opacity: 1;
}

.img-cities {
    height: 110px;
    overflow: hidden;
}

/* Must See Attractions */
.must-see-attr {
    background-color: var(--primary-color-lighter);
}

.img-see-attr {
    height: 400px;
    overflow: hidden;
}

.header-see-attr {
    margin-top: 20px;
    color: var(--primary-color-dark);
    font-size: 24px;
    font-family: var(--font-main-bold);
    font-weight: 400;
}

.sub-see-attr {
    margin-top: 8px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* local experts */
.local-experts-card {
    height: 420px;
    overflow: hidden;
    cursor: pointer;
}

.local-experts-card.swiper-slide-active {
    height: 480px;
}

.ic-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 10px 8px 10px 12px;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.content-card-local-experts {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: calc(100% - 14px);
    text-align: center;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.local-experts-card .img-object-fit {
    filter: brightness(0.6);
}

.name-local-experts {
    color: var(--white, white);
    font-size: clamp(15px, 1.5vw, 24px);
    font-family: var(--font-main-bold);
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.title-local-experts {
    color: var(--white, white);
    font-size: clamp(8.75px, 1vw, 14px);
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 16.80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.sub-local-experts {
    color: var(--white, white);
    font-size: clamp(8.75px, 1vw, 14px);
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.local-experts-card.swiper-slide-active .ic-play,
.local-experts-card.swiper-slide-active .content-card-local-experts {
    opacity: 1;
}

.img-gems {
    height: 400px;
    overflow: hidden;
}

.header-gems {
    margin-top: 20px;
    color: var(--primary-color-dark);
    font-size: 24px;
    font-family: var(--font-main-bold);
    font-weight: 400;
}

.sub-gems {
    margin-top: 8px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}




.card-help-you-plan {
    background: var(--gold-200, #FBF7EC);
    border-radius: 2px;
    outline: 1px var(--gold-300, #E6D6B2) solid;
    outline-offset: -1px;
    padding: 20px;
    width: calc(25% - 15px);
}

.btn-help-plan span {
    color: var(--gold-800, #7B6129);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 16.80px;
}

@media (max-width: 1400px) {
    .card-help-you-plan {
        width: calc(33.3% - 15px);
    }
}

@media (max-width: 992px) {
    .card-help-you-plan {
        width: calc(50% - 10px);
    }
}

@media (max-width: 550px) {
    .card-help-you-plan {
        width: 100%;
    }
}

.img-last-inspirations {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.date-last-inspirations {
    color: var(--primary-color);
    font-size: 12px;
    font-family: var(--font-main-regular);
    font-weight: 400;

}

.header-last-inspirations {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 23.80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.card-last-inspirations {
    padding: 8px;
    border-radius: 2px;
    cursor: pointer;
}

.card-last-inspirations:hover {
    background-color: var(--primary-color-lighter);
}

.img-help-plan {
    max-width: 36px;
    max-height: 36px;
}

.title-help-plan {
    color: var(--primary-color-dark);
    font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 32px;
}

.sub-help-plan {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

@media (max-width: 992px) {
    .title-help-plan {
        font-size: 20px;
    }
}

/* login style */
.login-section {
    min-height: calc(100vh - 88px);
}

.sec-or span {
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
}

.border-or {
    flex: 1;
    height: 1px;
    width: auto;
    background: #AFBDBF;
}

.content-login {
    max-width: 654px;
    width: 100%;
}

.header-login {
    color: var(--primary-color-dark);
    font-size: clamp(32px, 4vw, 64px);
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
}

.title-login {
    color: var(--primary-color-dark);
    font-size: clamp(16px, 2vw, 32px);
    font-family: var(--font-main-bold);
    font-weight: 400;
}

.card-login {
    padding: clamp(16px, 2vw, 32px);
    background: var(--primary-color-lighter);
    max-width: 453px;
    width: 100%;
}

.sub-login {
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.btn-google {
    padding: 16px;
    border: unset;
    border-radius: 2px;
    background: white;
    color: var(--primary-color-dark);
    font-size: clamp(14px, 1vw, 16px);
    font-family: var(--font-main);
    font-weight: 400;
    border: 1px var(--primary-color-light) solid;
}

.input-email-login span {
    color: var(--primary-color);
    font-size: clamp(14px, 1vw, 16px);
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 23.80px;
}

.input-email-login input {
    padding: 16px;
    border: 1px var(--primary-color-light) solid;
}

.btn-card-login {
    padding: 16px 24px;
    background-color: var(--secondary-color-light);
    text-align: center;
    width: 100%;
    color: white;
    border: none;
    transition: 0.3s ease-in-out;
}

.btn-card-login:hover {
    transform: translateY(-2px);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

.has-account {
    color: var(--primary-color);
    font-size: clamp(14px, 1vw, 16px);
    font-family: var(--font-main-regular);
    font-weight: 400;
}

.has-account a {
    color: var(--secondary-color);
}

/* settings and save login  */
.header-setting {
    color: var(--primary-color-dark);
    font-size: clamp(32px, 4vw, 64px);
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
}

.email-setting {
    color: var(--primary-color);
    font-size: clamp(14px, 1vw, 16px);
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
}

.tab-set-save {
    padding: 10px;
    border-bottom: 1px solid var(--primary-color-light);
    color: var(--primary-color-dark);
    font-size: 16px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    transition: 0.3s ease-in-out;
    min-width: 110px;
    align-items: center;
    justify-content: center;
}

.tab-set-save.active,
.tab-set-save:hover {
    border-bottom: 1px solid var(--primary-color-dark);
}

.tab-set-save svg {
    stroke-width: 2px;
    stroke: var(--primary-color-dark);
    transition: 0.5s ease-in-out;
}

.tab-set-save.active svg,
.tab-set-save:hover svg {
    fill: var(--primary-color-dark);
    stroke-width: 1px;
}

.link-setting {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
    padding: 10px;
    border-radius: 2px;
    border: 1px solid var(--primary-color-dark);
    width: fit-content;
    transition: 0.3s ease-in-out;
    background: white;
    cursor: pointer;
}

.link-setting:hover {
    background: var(--primary-color-lighter);
}


.title-setting {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: var(--font-main-medium);
    font-weight: 400;
    line-height: 1.1;
}

.sub-setting {
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
}

.sub-links-setting {
    color: var(--primary-color-dark);
    font-size: 16px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
}

.setting-data {
    padding-block: 32px;
    border-top: 1px solid var(--primary-color-light);
    margin-top: 32px;
}

.link-setting-delete {
    color: var(--critical-700, #E51C00);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 1.1;
    transition: 0.3s ease-in-out;
}

.link-setting-delete:hover {
    color: #b91902;
}


.confirm-card {
    max-width: 450px;
}

.list-change-password li {
    margin-top: 8px;
    list-style: initial;
}

.change-pass-confirm-popup,
.email-confirm-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.close-icon {
    position: relative;
    width: 15px;
    height: 15px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.close-icon span {
    width: 15px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--primary-color-dark);
}

.close-icon span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-icon:hover {
    background: rgba(0, 0, 0, 0.1);
}

.title-confirm-popup {
    color: var(--primary-color-dark);
    font-size: 16px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    text-transform: capitalize;
}

.confairm-popup-card {
    width: 700px;
    padding: 32px 24px;
    z-index: 1;
    background: white;
}

.btn-update {
    background-color: var(--secondary-color-light);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: capitalize;
}

.btn-update:hover {
    background-color: var(--secondary-color);
}

.min-350 {
    min-width: 350px;
}

.title-confirm {
    color: var(--primary-color-dark);
    font-size: 40px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
}

.overlay-confirm {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
    display: none;
}

.change-pass-confirm-popup.active,
.email-confirm-popup.active,
.change-pass-confirm-popup.active .overlay-confirm,
.email-confirm-popup.active .overlay-confirm {
    display: flex;
}


/* save login */
.save-cards-sec {
    padding-block: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--primary-color-light);
}

.img-save {
    max-height: 300px;
    min-height: 300px;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 2px;
    position: relative;
}

.item-type-badge {
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    line-height: 1;
}

.content-save-card {
    height: 100%;
}

.title-card-save {
    color: var(--primary-color-dark);
    font-size: 24px;
    font-family: var(--font-main-bold);
    font-weight: 400;
}

.sub-card-save {
    color: var(--primary-color);
    font-size: 16px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.3;
}

.pra-card-save {
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 1.2;
}

.card-save {
    width: calc(33.3% - 22px);
    padding: 8px;
    transition: 0.3s ease-in-out;
    border-radius: 2px;
}

.card-save:hover {
    background: var(--primary-color-lighter);
}

.card-save:hover .btn-card-hover {
    opacity: 1;
}

.img-save .save-icon {
    padding: 8px 9px 5px;
}

.img-save .top-choice-icon {
    top: 15px;
    right: 15px;
}

@media (max-width:992px) {
    .card-save {
        width: calc(50% - 16px);
    }

    .img-save {
        max-height: none;
        min-height: auto;
        height: auto;
        overflow: hidden;
        aspect-ratio: 1/1;
        border-radius: 2px;
    }

    .content-save-card {
        height: fit-content;
    }
}

/* =========================
   FAQ page styles
   ========================= */
.faq-subtitle {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.faq-tabs .faq-tab {
    padding: 10px 24px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
    outline: 0.50px var(--primary-color-dark) solid;
    outline-offset: -0.50px;
    background: white;
    border: none;
    cursor: pointer;
}

.faq-tabs .faq-tab:hover {
    background: var(--primary-color-lighter);
}

.faq-tabs .faq-tab.active {
    color: var(--white, white);
    background: #B9913C;
    outline: 0.50px #B9913C solid;
}

.faq-sections {
    margin-top: 48px;
}

.faq-section-title {
    color: var(--primary-color-dark);
    font-size: 24px;
    font-family: var(--font-main-bold);
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--primary-color-lighter);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: var(--primary-color-lighter);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    line-height: 16.80px;
    padding: 16px 20px;
    cursor: pointer;
}

.faq-item .chev {
    transition: transform 0.3s ease;
}

.faq-item.open .chev {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 16px 20px;
    background: var(--primary-color-lighter);
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    line-height: 19.60px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* About Us Image Cards */
.about-section {
    margin-top: 32px;
    border-bottom: 1px solid #AFBDBF;
    padding-block: 32px clamp(32px, 6vw, 86px);
}

.about-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.image-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-height: 300px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.about-card {
    background: var(--secondary-color-lighter);
    outline: 1px var(--secondary-color-dark) solid;
    outline-offset: -1px;
    padding: 24px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

/* Blog Section Styles */

.blog-tab {
    padding: 10px 24px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 19.60px;
    outline: 0.50px var(--primary-color-dark) solid;
    outline-offset: -0.50px;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-tab.active {
    color: var(--white, white);
    background: var(--secondary-color);
    outline: 0.50px var(--secondary-color) solid;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    z-index: 1;
}



.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-family: var(--font-main-regular);
    font-weight: 400;
    color: var(--primary-color-dark);
}

.filter-select {
    padding: 12px 16px;
    border: 1px solid var(--primary-color-dark);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-main-regular);
    color: var(--primary-color-dark);
    background: white;
    cursor: pointer;
}

.blog-post-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-category {
    font-size: 12px;
    font-family: var(--font-main-bold);
    color: var(--secoundry-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 20px;
    font-family: var(--font-main-bold);
    font-weight: 400;
    color: var(--primary-color-dark);
    margin: 8px 0;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 14px;
    font-family: var(--font-main-regular);
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-family: var(--font-main-regular);
    color: #999;
}


/* =========================
    Things To Do
    ========================= */
.things-Todo-card {
    width: calc(33.3% - 22px);
}

.img-todo {
    height: 300px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 2px;
    position: relative;
}

.img-todo .top-choice-icon {
    top: 15px;
    right: 15px;
}

.img-todo .save-icon {
    top: 15px;
    right: 60px;
}

@media (max-width: 992px) {
    .things-Todo-card {
        width: calc(50% - 16px);
    }
}

.img-todo {
    height: auto;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 2px;
    position: relative;
}


/* ====================
things Todo details
 ===================== */
.content-todo-details h2,
.content-todo-details h3,
.content-todo-details h4,
.content-todo-details h5,
.content-todo-details h6 {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: 'Santral-SemiBold';
    font-weight: 400;
    line-height: 32px;
    margin-top: 24px;
}

.content-todo-details p,
.content-todo-details li,
.content-todo-details span {
    color: var(--primary-color-dark);
    font-size: 16px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 25.60px;
    margin-top: 8px;
}

.content-todo-details blockquote {
    border-left: 2px solid var(--primary-color-dark);
    padding: 16px 24px;
    margin: 0;
    margin-top: 8px;
}

.content-todo-details img {
    max-height: 375px;
    height: 100%;
    width: 100%;
    margin-top: 24px;
    object-fit: cover;

}

/* CKEditor Image Classes */
.content-todo-details figure.image {
    margin: 24px 0;
    display: table;
    clear: both;
}

.content-todo-details figure.image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Image alignment */
.content-todo-details figure.image-style-align-left,
.content-todo-details figure.image-style-side {
    float: left;
    margin-right: 24px;
    margin-left: 0;
    max-width: 50%;
}

.content-todo-details figure.image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}

.content-todo-details figure.image-style-align-right {
    float: right;
    margin-left: 24px;
    margin-right: 0;
    max-width: 50%;
}

/* Resized images */
.content-todo-details figure.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.content-todo-details figure.image_resized img {
    width: 100%;
}

/* Image captions */
.content-todo-details figure.image figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: #666;
    background-color: #f7f7f7;
    padding: 8px;
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
}

/* Clear floats for content after images */
.content-todo-details figure.image::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive: stack floated images on mobile */
@media (max-width: 768px) {

    .content-todo-details figure.image-style-align-left,
    .content-todo-details figure.image-style-align-right,
    .content-todo-details figure.image-style-side {
        float: none;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

.img-todo {
    max-height: 300px;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.content-todo-details {
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    padding-bottom: 50px;
}

.content-todo-details.active {
    max-height: 5000px;
}

.read-more-less {
    height: 250px;
    display: flex;
    align-items: end;
    justify-content: center;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
}

.read-more-less.active {
    height: 100px;
}

.read-more-less.active img {
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}

/* ====================
Blog details
 ===================== */


.links-blog-details h2,
.links-blog-details h3,
.links-blog-details h4,
.links-blog-details h5,
.links-blog-details h6 {
    color: var(--primary-color-dark);
    font-size: 20px;
    font-family: 'Santral-SemiBold';
    font-weight: 400;
    line-height: 32px;
    margin-top: 24px;
}

.links-blog-details p,
.links-blog-details li,
.links-blog-details span {
    color: var(--primary-color-dark);
    font-size: 16px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 25.60px;
    margin-top: 8px;
}

.links-blog-details blockquote {
    border-left: 2px solid var(--primary-color-dark);
    padding: 16px 24px;
    margin: 0;
    margin-top: 8px;
}

.links-blog-details img {
    max-height: 375px;
    height: 100%;
    width: 100%;
    margin-top: 24px;
    object-fit: cover;

}

.img-blog {
    max-height: 300px;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.img-inner-think {
    height: 50vh;
    overflow: hidden;
    min-height: 460px;
}


/* 404 */
.container-404 {
    min-height: 63vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-context {
    padding: 0 16px;
    text-align: center;
}

.title-404 {
    color: var(--cyan-blue-600, #81989C);
    font-size: clamp(128px, 10vw, 192px);
    font-family: 'Santral-Medium';
    font-weight: 400;
    line-height: 1.3;
}

.headerContext {
    color: var(--secondary-1000, #0E161F);
    font-size: clamp(32px, 3.5vw, 40px);
    font-family: 'Goudy Bookletter 1911';
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.1;
}

.paraContext {
    color: var(--secondary-1000, #0E161F);
    font-size: 20px;
    font-family: 'Santral-Medium';
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}

.btn-Context {
    display: flex;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Santral-Regular';
    font-weight: 300;
    word-wrap: break-word;
    padding: 12px 24px;
    border: 1px solid var(--secondary-color-light);
    background: var(--secondary-color-light);
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    transition: 0.3s ease-in-out;

}

.btn-Context img {
    transform: rotate(180deg);
}

.btn-Context:hover {
    background-color: #B9913C;
}

/* Extra page */
.extra-page-section .content-extra-page p,
.extra-page-section .content-extra-page li,
.extra-page-section .content-extra-page span {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.60px;
    font-family: 'Santral-Book', sans-serif;
}

.extra-page-section .content-extra-page p,
.extra-page-section .content-extra-page span {
    margin-top: 16px;
}

.extra-page-section .content-extra-page li {
    margin-top: 8px;
}

.extra-page-section .content-extra-page h2,
.extra-page-section .content-extra-page h3,
.extra-page-section .content-extra-page h4,
.extra-page-section .content-extra-page h5,
.extra-page-section .content-extra-page h6 {
    color: var(--primary-color-dark);
    font-size: 24px;
    font-family: 'Santral-SemiBold';
    font-weight: 400;
    margin-top: clamp(32px, 4.5vw, 48px);
}

/* cotact us */
.form-contact-us input,
.form-contact-us textarea {
    padding: 16px;
    outline: 0.50px rgba(0, 0, 0, 0.40) solid;
    outline-offset: -0.50px;
    background-color: white;
    border: unset;
    font-family: var(--font-main-regular);
}

.card-info-contact {
    padding: 24px;
    outline: 1px rgba(0, 0, 0, 0.10) solid;
    outline-offset: -1px;
    border-radius: 8px;
    background-size: 16px 16px;
}

.card-info-contact a {
    color: #0099DD;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color-dark, #001629);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color, #D4AF37);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 15px;
    height: 15px;
}

.btn-contact {
    display: flex;
    background: var(--secondary-color-light);
    padding: 16px 24px;
    color: white;
    border: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    transition: 0.3s ease-in-out;
    font-family: 'Santral-Book', sans-serif;
}

.btn-contact:hover {
    background-color: #B9913C;
}

/* ============================================
   Travel Booking Section Styles
   ============================================ */

.travel-booking-box {
    margin-top: 8px;
    padding: 32px clamp(16px, 2vw, 32px);
    border-radius: 2px;
    outline: 1px var(--cyan-blue-400, #AFBDBF) solid;
    outline-offset: -1px;
}

.travel-booking-input input.travel-input-field::placeholder {
    color: var(--primary-color);
    font-size: 14px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 1;
}

.travel-booking-input input.travel-input-field,
.travel-booking-input input.travel-input-field[type="date"],
.travel-booking-input select.travel-input-field {
    padding: 16px 16px 16px 48px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 1;
    width: -webkit-fill-available;
    width: 100%;
    background-color: var(--primary-color-lighter);
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    border: none;
    height: 100%;
    min-height: 52px;
}

.travel-booking-input input.travel-input-field.with-label {
    padding: 24px 16px 8px 48px;
}

.travel-booking-input img {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.travel-search-btn {
    padding: 16px 24px;
    display: flex;
    gap: 8px;
    color: var(--white, white);
    font-size: 14px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 19.60px;
    width: fit-content;
    background: var(--secondary-color-light);
    align-items: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    min-height: 52px;
}

.travel-search-btn:hover {
    opacity: 0.9;
}

.travel-input-label {
    position: absolute;
    top: 8px;
    left: 48px;
    color: var(--primary-color);
    font-size: 12px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 1.2;
    pointer-events: none;
    z-index: 1;
}

.travel-tabs-container {
    padding: 0 24px;
}

.travel-tab-item {
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: 'Santral-Regular';
    font-weight: 400;
    line-height: 19.60px;
    padding-block: 16px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.travel-tab-item.active,
.travel-tab-item.active:hover {
    border-bottom: 2px solid var(--primary-color-dark);
}

.travel-tab-item:hover {
    border-bottom: 2px solid var(--primary-color-light);
}

.travel-flight-options {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.travel-trip-type label,
.travel-direct-flights label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    cursor: pointer;
    color: #1a2b3c;
}

.travel-booking-section input[type="radio"],
.travel-booking-section input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #001a2b;
    border-radius: 50%;
    appearance: none;
    display: grid;
    place-content: center;
    margin-top: 0;
    cursor: pointer;
}

.travel-booking-section input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #001a2b;
    border-radius: 50%;
}

.travel-booking-section input[type="checkbox"] {
    border-radius: 4px;
}

.travel-booking-section input[type="checkbox"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #001a2b;
    border-radius: 2px;
}

.travel-class-selector {
    position: relative;
    min-width: 325px;
    outline: 1px var(--cyan-blue-200, #DDE3E4) solid;
    outline-offset: -1px;
    border-radius: 2px;
}

.travel-class-selector::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #001A2C;
    position: absolute;
    left: calc(100% - 30px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.travel-class-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    min-width: 325px;
    text-align: left;
    width: 100%;
}

.travel-class-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    border: 1px solid #cdd3d6;
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    display: none;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.travel-class-dropdown li {
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    color: #1a2b3c;
}

.travel-class-dropdown li:hover {
    background: #f1f5f9;
}

.travel-class-dropdown li.active::after {
    content: "✔";
    float: right;
    color: #001a2b;
}

.travel-class-dropdown.show {
    display: block;
}

/* Guest selector styles */
.travel-guest-wrapper {
    position: relative;
}

.travel-guest-display {
    padding: 24px 16px 8px 48px;
    color: var(--primary-color-dark);
    font-size: 14px;
    font-family: 'Santral-Regular';
    background-color: var(--primary-color-lighter);
    outline: 1px var(--primary-color-light) solid;
    outline-offset: -1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 52px;
}

.travel-guest-text {
    color: var(--primary-color-dark);
    font-size: 13px;
    line-height: 1.4;
    white-space: pre-line;
}

.travel-guest-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--cyan-blue-200, #DDE3E4);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 100;
    display: none;
    width: 250px;
    min-width: 100%;
}

.travel-guest-dropdown.show {
    display: block;
}

.travel-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--cyan-blue-200, #DDE3E4);
}

.travel-guest-row:last-child {
    border-bottom: none;
}

.travel-guest-info {
    flex: 1;
}

.travel-guest-label {
    font-weight: 600;
    color: var(--primary-color-dark);
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.travel-guest-description {
    font-size: 12px;
    color: var(--primary-color);
}

.travel-guest-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.travel-guest-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--cyan-blue-200, #DDE3E4);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    color: var(--primary-color-dark);
}

.travel-guest-btn:hover:not(:disabled) {
    background: var(--primary-color-lighter);
}

.travel-guest-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.travel-guest-count {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color-dark);
}

/* Autocomplete */
.travel-autocomplete {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
    z-index: 100;
}

.travel-autocomplete.hidden {
    display: none;
}

.travel-autocomplete-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    background: white;
    border: 1px solid var(--cyan-blue-200, #DDE3E4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    max-height: 300px;
    overflow: auto;
}

.travel-autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 2px;
    color: var(--primary-color-dark);
}

.travel-autocomplete-item:hover,
.travel-autocomplete-item.active {
    background: var(--primary-color-lighter);
}

.travel-autocomplete-sub {
    display: block;
    color: var(--primary-color);
    font-size: 12px;
    margin-top: 2px;
}

.travel-tab-content {
    display: none;
}

.travel-tab-content.active {
    display: block;
}

/* Visa Card Section */
.visa-card-ksa {
    padding: clamp(64px, 7.5vw, 96px) clamp(32px, 5vw, 64px);
    position: relative;
    min-height: 350px;
    background-image: radial-gradient(#044A46, #03322F);
}

/* Responsive Design */
@media (max-width: 768px) {
    .travel-class-selector {
        min-width: 100%;
    }

    .travel-class-btn {
        min-width: 100%;
    }
}

.language-switcher {
    position: relative;
    height: -webkit-fill-available;
    display: flex;
}

.lang-switcher-btn {
    padding: 8px 12px;
    background: none;
    cursor: pointer;
    transition: all 0.4s ease;
    color: white;
    border: none;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.2;
}

.lang-switcher-btn:hover {
    background-color: var(--primary-color-lighter);
    color: var(--primary-color-dark);
    fill: var(--primary-color-dark);
}

.navbar.white-bg .lang-switcher-btn {
    color: #001629;
}

.logout-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: 0.4s 
ease-in-out;
}

.logout-btn svg{
    stroke: #ffffff;
}

.logout-btn:hover {
    background-color: var(--primary-color-lighter) !important;
}

.logout-btn:hover svg {
    stroke: var(--primary-color-dark);
}

.navbar.white-bg .logout-btn svg{
    stroke: #001629;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    padding: 8px 0;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    flex-direction: column;
    padding: 10px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}

.lang-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-native {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.lang-name {
    font-size: 12px;
    opacity: 0.7;
}

/* Hide native browser clear button for search input */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none !important;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
    display: none !important;
    width: 0;
    height: 0;
}

.about-us {
    border-bottom: 1px solid #AFBDBF;
}

.about-us .container {
    margin-block: clamp(16px, 2vw, 32px);
}

.about-us:last-of-type {
    border-bottom: none;
}

input:placeholder-shown {
    text-overflow: ellipsis;
}

.leaflet-top,
.leaflet-bottom {
    z-index: 999 !important;
}