@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Maven+Pro:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --web-primary: #046991;
    --web-secondary: #eb6f33;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

@media (min-width: 768px) {
    .w-md-25 {
        width: 25% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }
}

@media (min-width: 992px) {
    .w-lg-25 {
        width: 25% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }
}


body {
    /* font-family: "Inter", sans-serif !important; */
    /* font-family: "Manrope", sans-serif !important; */
    font-family: "Maven Pro", sans-serif !important;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: #161e2d;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

/* header */

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidespace-large {
    padding: 0 7vw;
}

.sidespace-small {
    padding: 0 5vw;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.top-header {
    background: #242d33;
}

.top-header-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    padding: .65rem 0;
}

.header-contact {

    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}

.header-contact a {
    color: #fff;
    font-size: 12px;
    transition: .3s;
}

.header-contact a:hover {
    color: var(--web-secondary);
}

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social a {

    color: #fff;

    width: 34px;

    aspect-ratio: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transition: .3s;
}

.header-social a:hover {

    background: var(--web-secondary);
}

.main-header {
    position: relative;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    z-index: 9999;
    transition: all 0.3s ease;
}

.main-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Main menu links after scroll */
.main-header.is-sticky .main-menu>ul>li>a {
    color: #000 !important;
}

/* Icons inside main menu */
.main-header.is-sticky .main-menu>ul>li>a i {
    color: #000 !important;
}

/* Search icon */
.main-header.is-sticky .search-toggle {
    color: #000 !important;
}

/* Mobile/menu icon */
.main-header.is-sticky .menu-toggle span {
    background: #000 !important;
}

.header-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding: 18px 0;
}

.logo img {

    display: block;

    max-width: 170px;

    width: 100%;

    height: auto;
}

.main-menu {

    flex: 1;
}

.main-menu ul {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 28px;

    list-style: none;
}

.main-menu ul li a {

    color: #fff;

    font-size: 17px;

    font-weight: 700;

    transition: .3s;
}

.main-menu ul li a:hover {

    color: var(--web-secondary);
}

.header-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--web-secondary);

    color: #fff;

    padding: .85rem 1.5rem;

    border-radius: 50px;

    transition: .3s;
}

.header-btn:hover {

    background: var(--web-primary);

    color: #fff;
}

@media (max-width:991px) {

    .top-header {
        display: none;
    }

    .header-wrapper {
        justify-content: flex-end;
        align-items: center;
        padding: 14px 0;
    }

    .logo img {
        max-width: 150px;
    }

}

@media(max-width:576px) {

    .top-header-inner {

        justify-content: center;

    }

    .header-contact {

        justify-content: center;

    }

    .main-menu ul {

        flex-direction: column;

    }

    .header-btn {

        width: 100%;

    }

}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-toggle {
    width: 42px;
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.site-header.sticky .search-toggle {
    background: #f3f4f6;
    color: #161e2d;
}

.search-toggle:hover {
    background: var(--web-secondary);
    color: #fff;
}

@media (max-width:991px) {

    .search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

.menu-item-has-mega {

    position: relative;

}

.menu-item-has-mega>a {

    display: flex;

    align-items: center;

    gap: 8px;

}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 700px;
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
}

.menu-item-has-mega:hover .mega-dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(10px);

}

.mega-dropdown-header {

    margin-bottom: 22px;

    padding-bottom: 18px;

    border-bottom: 1px solid #eef2f7;

}

.mega-dropdown-header h4 {

    margin-bottom: 6px;

    font-size: 22px;

}

.mega-dropdown-header p {

    margin: 0;

    color: #777;

}

.mega-dropdown-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

}

.mega-item {

    display: flex;

    gap: 14px;

    align-items: center;

    padding: 16px;

    border-radius: 16px;

    text-decoration: none;

    transition: .3s;

}

.mega-item:hover {

    background: #f7f9fc;

}

.mega-icon {

    width: 52px;

    height: 52px;

    border-radius: 14px;

    background: #fff5eb;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--web-secondary);

    font-size: 20px;

    flex-shrink: 0;

}

.mega-item strong {

    display: block;

    color: #222;

    font-size: 15px;

    margin-bottom: 4px;

}

.mega-item small {

    color: #888;

}


.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;

    padding: 0;

    cursor: pointer;

    position: relative;

    z-index: 10001;
}

.menu-toggle span {

    display: block;

    width: 24px;

    height: 2px;

    background: #fff;

    margin: 5px auto;

    transition: .35s;
}

.site-header.sticky .menu-toggle span {

    background: #161e2d;
}

.menu-toggle.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}

.menu-toggle.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}

.mobile-menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 9998;
}

.mobile-menu-overlay.active {

    opacity: 1;

    visibility: visible;

}

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: min(90vw, 340px);

    height: 100vh;

    background: #fff;

    z-index: 9999;

    transition: .35s ease;

    display: flex;

    flex-direction: column;

    overflow-y: auto;

    box-shadow: -10px 0 35px rgba(0, 0, 0, .12);

}

.mobile-menu.active {

    right: 0;

}

.mobile-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

    border-bottom: 1px solid #eee;
}

.mobile-header img {

    max-width: 150px;

    height: auto;
}

.menu-close {

    width: 40px;

    height: 40px;

    border: none;

    border-radius: 50%;

    background: #f5f5f5;

    cursor: pointer;
}

.mobile-menu ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

.mobile-menu ul li {

    border-bottom: 1px solid #f1f1f1;

}

.mobile-menu ul li a {

    display: block;

    padding: 16px 22px;

    color: #161e2d;

    font-weight: 600;

}

.mobile-menu ul li a:hover {

    color: var(--web-secondary);

    background: #fafafa;

}

.mobile-btn {

    margin: 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: var(--web-secondary);

    color: #fff;

    min-height: 50px;

    border-radius: 50px;

    font-weight: 600;
    width: 50%;

}

@media (max-width:991px) {

    .main-menu {

        display: none;

    }

    .header-btn {

        display: none;

    }

    .menu-toggle {

        display: block;

        align-items: center;

        justify-content: center;

    }

}

/* Banner */
.hero-banner {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 100svh;

    padding-top: 130px;

    padding-bottom: 170px;

    overflow: hidden;

}

.hero-media {

    position: absolute;

    inset: 0;

    z-index: -2;
}

.hero-media video,

.hero-media img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to right,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .2));

    z-index: -1;
}

.hero-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 18px;

    width: 100%;

    max-width: 720px;

    color: #fff;

    position: relative;

    z-index: 2;

}

.hero-tag {

    display: inline-flex;

    align-self: flex-start;

    background: rgba(255, 255, 255, .15);

    padding: .6rem 1.2rem;

    border-radius: 30px;

    backdrop-filter: blur(12px);
}

.hero-content h1 {

    font-size: clamp(2rem, 5vw, 4rem);

    line-height: 1.15;

    font-weight: 800;

}

.hero-content p {

    font-size: clamp(1rem, 2vw, 1.2rem);

    max-width: 650px;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}

.btn-primary {

    background: var(--web-secondary);

    color: #fff;

    padding: 1rem 2rem;

    border-radius: 50px;
}

.btn-outline {

    border: 2px solid #fff;

    color: #fff;

    padding: 1rem 2rem;

    border-radius: 50px;
}

@media(max-width:768px) {

    .hero-content {

        text-align: center;

        align-items: center;

        padding-top: 9rem;

    }

    .hero-content p {

        max-width: 100%;

    }

}

.hero-search-bar {

    position: absolute;

    left: 50%;

    bottom: 40px;

    transform: translateX(-50%);

    width: min(95%, 1320px);

    z-index: 30;

}

.search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-item {
    width: 100%;

    min-height: 92px;

    background: #f6f6f6;

    border-radius: 14px;

    display: flex;
    align-items: center;

    padding: 18px 20px;

    box-sizing: border-box;

    transition: background 0.2s ease;
}

.search-item:hover {
    background: #f2f2f2;
}

.search-item>i {
    width: 32px;

    margin-right: 3px;

    font-size: 20px;

    color: #0086b8;

    flex-shrink: 0;
}


/* Content */

.search-item>div {
    flex: 1;

    min-width: 0;
}

.search-item label {

    display: block;

    font-size: 12px;

    color: #888;

    margin-bottom: 2px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.search-item label {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    color: #777;
}


/* Input */

.search-item input {
    width: 100%;

    border: 0;
    outline: 0;

    padding: 0;

    background: transparent;

    font-size: 15px;

    font-weight: 500;

    color: #333;

    font-family: inherit;
}

.search-item input::placeholder {
    color: #555;
    opacity: 1;
}

.search-item select {
    width: 100%;

    border: 0;
    outline: 0;

    padding: 0;

    background: transparent;

    font-size: 15px;

    font-weight: 600;

    color: #333;

    font-family: inherit;

    cursor: pointer;

    appearance: auto;
}


/* ================================
   SEARCH BUTTON
================================ */

.search-btn {
    width: 100%;

    height: 42px;

    margin-top: 0;

    border: 0;

    border-radius: 25px;

    background: #f36c2b;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    font-family: inherit;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    transition: all 0.25s ease;
}

.search-btn:hover {
    background: #e85e1d;

    transform: translateY(-1px);
}

.search-btn i {
    font-size: 14px;
}

@media (max-width:991px) {

    .hero-search-bar {
        display: none;
    }

    .search-wrapper {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;

        border-radius: 24px;

        padding: 15px;

    }

    .search-item {

        border: none;

        min-width: unset;

        background: #f8f8f8;

        border-radius: 14px;

    }

    .search-btn {

        width: 100%;

        margin: 0;

        min-height: 54px;

        grid-column: 1/-1;

    }

    .hero-banner {

        padding-bottom: 260px;

    }

}


@media (max-width:767px) {

    .hero-banner {

        align-items: flex-start;

        padding-top: 120px;

        padding-bottom: 40px;

        min-height: auto;

    }

    .hero-content {

        text-align: center;

        align-items: center;

    }

    .hero-tag {

        align-self: center;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-search-bar {

        position: relative;

        left: auto;

        bottom: auto;

        transform: none;

        width: 100%;

        margin-top: 40px;

    }

    .search-wrapper {

        display: flex;

        flex-direction: column;

        border-radius: 20px;

        padding: 18px;

    }

    .search-item {

        width: 100%;

        border: none;

        padding: 14px;

        background: #f8f8f8;

        border-radius: 14px;

    }

    .search-btn {

        width: 100%;

        margin-top: 10px;

        min-height: 52px;

    }

}

@media (max-width:480px) {

    .hero-content h1 {

        font-size: 2rem;

    }

    .hero-content p {

        font-size: .95rem;

    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }

    .hero-buttons a {

        width: 100%;

        justify-content: center;

    }

}

.search-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease;
    z-index: 10000;
}

.search-popup {
    position: fixed;

    top: 50%;
    left: 50%;

    width: 600px;
    max-width: calc(100% - 30px);

    max-height: 90vh;
    overflow-y: auto;

    transform: translate(-50%, -45%) scale(0.96);

    background: #fff;

    border-radius: 18px;

    padding: 28px 38px 35px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    z-index: 10001;

    box-sizing: border-box;
}


/* OPEN */

.search-popup.active {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, -50%) scale(1);
}

.search-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.search-popup-header h5 {
    margin: 0;

    font-size: 15px;
    font-weight: 500;

    color: #202020;
}

/* Close button */
.search-close {
    width: 28px;
    height: 28px;

    border: 0;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #555;

    font-size: 17px;

    cursor: pointer;

    padding: 0;

    border-radius: 5px;

    transition: all 0.2s ease;
}

.search-close:hover {
    background: #f1f1f1;
    color: #222;
}

/* Mobile */
@media (max-width: 576px) {

    .search-popup {
        width: calc(100% - 30px);
        max-width: none;

        padding: 16px;
        border-radius: 14px;

        max-height: 90vh;
    }

    .search-popup-header {
        margin-bottom: 15px;
    }
}

/*==============================
Destination Section
===============================*/

.destination-section {

    padding: 6rem 0;

    background: #fff;

}

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 3rem;

    flex-wrap: wrap;

}

.section-subtitle {

    display: inline-block;

    color: var(--web-secondary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.section-title {

    font-size: clamp(2rem, 4vw, 2.8rem);

    font-weight: 700;

    margin-bottom: 12px;

}

.section-description {

    color: #666;

    max-width: 750px;

}

.swiper-navigation {

    display: flex;

    gap: 12px;

}

.swiper-navigation button {

    width: 48px;

    aspect-ratio: 1;

    border: none;

    border-radius: 50%;

    background: #f4f6f8;

    transition: .3s;

    color: #222;

}

.swiper-navigation button:hover {

    background: var(--web-secondary);

    color: #fff;

}

.destination-card {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 24px;

    height: clamp(320px, 32vw, 420px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

.destination-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s ease;

}

.destination-card::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .45),
            transparent);

    z-index: 1;
}

.destination-card::before {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 120px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    mask-image: linear-gradient(to top, #000 55%, transparent);
    -webkit-mask-image: linear-gradient(to top, #000 55%, transparent);

    z-index: 2;
}


.destination-content {

    position: absolute;

    left: 24px;

    right: 24px;

    bottom: 22px;

    z-index: 3;

}

.destination-content h3 {

    margin: 0;

    color: #fff;

    font-size: 2.1rem;

    font-weight: 700;

    line-height: 1.1;

    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);

}

.destination-content span {

    display: block;

    margin-top: 6px;

    color: rgba(255, 255, 255, .92);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

}

.destination-card:hover img {

    transform: scale(1.08);

}

.destination-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, .18);

}

.destination-card:hover .destination-content {

    transform: translateY(-5px);

}

.destination-content {

    transition: .4s;

}



@media(max-width:991px) {

    .section-header {

        text-align: center;

        justify-content: center;

    }

    .swiper-navigation {

        justify-content: center;

        width: 100%;

    }

}

@media(max-width:576px) {

    .destination-section {

        padding: 4rem 0;

    }

    .section-title {

        font-size: 30px;

    }

    .destination-content h3 {

        font-size: 24px;

    }

}

/*==================================================
Campaign Section
==================================================*/

.campaign-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.campaign-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.campaign-media img,
.campaign-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .campaign-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(8,22,38,.75),
        rgba(8,22,38,.82)
    );
    z-index:-1;
} */

.campaign-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .12) 0%,
            rgba(0, 0, 0, .20) 30%,
            rgba(0, 0, 0, .40) 65%,
            rgba(0, 0, 0, .55) 100%);
    z-index: -1;
}

.campaign-content {
    max-width: 1400px;
    margin: auto;
}

/*==================================================
Heading
==================================================*/

.campaign-header {
    text-align: center;
    margin-bottom: 30px;
}

.campaign-header h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    margin-bottom: 10px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .35),
        0 8px 24px rgba(0, 0, 0, .35);
}

.campaign-subtitle {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
    margin: auto;

    text-shadow:
        0 2px 6px rgba(0, 0, 0, .45);
}

/*==================================================
Rows
==================================================*/

.campaign-row {
    margin-bottom: 45px;
}

.campaign-row-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/*==================================================
Glass Cards
==================================================*/

.campaign-small-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 28px 15px;

    border-radius: 20px;

    color: #fff;

    text-decoration: none;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .18);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    transition: .35s;

    height: 170px;
}

.campaign-small-card:hover {

    transform: translateY(-8px);

    background: rgba(255, 255, 255, .16);

    border-color: rgba(255, 255, 255, .35);

}

.card-icon {

    width: 70px;
    height: 70px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .12);

    margin-bottom: 18px;

    font-size: 28px;

    color: #fff;

    transition: .3s;
}

.campaign-small-card:hover .card-icon {

    background: var(--web-secondary);

    transform: rotate(8deg);

}

.campaign-small-card h5 {

    color: #fff;

    font-size: 18px;

    margin-bottom: 8px;

    font-weight: 700;
}

.campaign-small-card span {

    color: rgba(255, 255, 255, .75);

    font-size: 14px;
}

/*==================================================
Tour Card
==================================================*/

.campaign-tour-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    height: clamp(320px, 32vw, 420px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.campaign-tour-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    mask-image: linear-gradient(to top, #000 55%, transparent);
    -webkit-mask-image: linear-gradient(to top, #000 55%, transparent);
    z-index: 2;
}

.campaign-tour-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, .88), rgba(0, 0, 0, .45), transparent);
    z-index: 1;
}

.campaign-tour-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 45px rgba(0, 0, 0, .18);

}

.tour-image {
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.campaign-tour-card:hover img {

    transform: scale(1.08);

}

.tour-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .15));

}

.tour-info {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    z-index: 3;
}

.tour-location {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.tour-info h4 {
    color: #222;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
}

.tour-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

.tour-bottom span {

    color: var(--web-secondary);

    font-weight: 700;

    font-size: 18px;
}

.tour-bottom small {

    color: #888;

    font-size: 13px;
}

.tour-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.tour-discounted-price {
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.tour-discount-badge {
    position: absolute;
    left: 0;
    top: 15px;

    z-index: 2;

    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    background: #e53935;
    color: #fff;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    border-radius: 0 4px 4px 0;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/*==================================================
Button
==================================================*/

.campaign-footer {

    text-align: center;

    margin-top: 45px;
}

.campaign-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 42px;

    border-radius: 60px;

    background: var(--web-secondary);

    color: #fff;

    font-weight: 700;

    text-decoration: none;

    transition: .35s;
}

.campaign-btn:hover {

    background: var(--web-primary);

    color: #fff;

    transform: translateY(-3px);
}


/*==================================================
Responsive
==================================================*/

@media(max-width:992px) {

    .campaign-section {

        padding: 70px 0;
    }

    .campaign-header {

        margin-bottom: 45px;
    }

    .campaign-row {

        margin-bottom: 35px;
    }

}

@media(max-width:768px) {

    .campaign-header h2 {

        font-size: 36px;
    }

    .campaign-subtitle {

        font-size: 16px;
    }

    .campaign-row-title {

        font-size: 20px;
    }

    .campaign-small-card {

        height: 150px;

        padding: 20px;
    }

    .card-icon {

        width: 60px;
        height: 60px;
        font-size: 24px;
    }

}

@media(max-width:576px) {

    .campaign-section {

        padding: 55px 0;
    }

    .campaign-header {

        margin-bottom: 35px;
    }

    .campaign-row-title {

        text-align: center;
    }

    .tour-info {

        padding: 16px;
    }

    .tour-info h4 {

        font-size: 18px;
    }

    .campaign-btn {

        width: 100%;
    }

}

.campaignSwiper .swiper-wrapper {
    height: auto !important;
}


/*==================================================
Trip Planner Section
==================================================*/

.trip-planner-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin: 0;

}

.trip-planner-bg {

    position: absolute;

    inset: 0;

    z-index: -2;

}

.trip-planner-bg img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.trip-planner-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(7, 20, 34, .72) 0%,
            rgba(7, 20, 34, .58) 45%,
            rgba(7, 20, 34, .42) 100%);

    z-index: -1;

}

.trip-planner-wrapper {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;

}

/*==================================================
Left Content
==================================================*/

.trip-subtitle {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;

    margin-bottom: 25px;

}

.trip-content h2 {

    color: #fff;

    font-size: 38px line-height:1.1;

    font-weight: 800;

    margin-bottom: 25px;

    text-shadow: 0 8px 30px rgba(0, 0, 0, .45);

}

.trip-content p {

    color: rgba(255, 255, 255, .88);

    font-size: 18px;

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 35px;

}

/*==================================================
Features
==================================================*/

.trip-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 45px;

}

.trip-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #fff;

    font-size: 16px;

    font-weight: 600;

}

.trip-feature i {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 15px;

}

/*==================================================
Stats
==================================================*/

.trip-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}

.trip-stat {

    min-width: 150px;

    padding: 20px 25px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(18px);

}

.trip-stat strong {

    display: block;

    color: #fff;

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 6px;

}

.trip-stat span {

    color: rgba(255, 255, 255, .85);

    font-size: 14px;

}

/*==================================================
Form Card
==================================================*/

.trip-form-card {

    background: rgba(255, 255, 255, .94);

    backdrop-filter: blur(24px);

    border-radius: 30px;

    padding: 20px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .22);

}

.trip-form-card h3 {

    color: #222;

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 10px;

}

.trip-form-card>p {

    color: #777;

    margin-bottom: 30px;

    line-height: 1.7;

}

/*==================================================
Inputs
==================================================*/

.trip-form-card .form-group {

    margin-bottom: 18px;

}

.trip-form-card .form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}

.trip-form-card .form-control {

    width: 100%;

    height: 40px;

    border-radius: 14px;

    border: 1px solid #e5e7eb;

    padding: 0 18px;

    font-size: 15px;

    box-shadow: none;

    transition: .3s;

    background: #fff;

}

.trip-form-card textarea.form-control {

    height: 70px;

    padding: 16px 18px;

    resize: none;

}

.trip-form-card .form-control:focus {

    border-color: var(--web-secondary);

    box-shadow: 0 0 0 4px rgba(255, 110, 40, .12);

}

/*==================================================
Popular Tags
==================================================*/

.trip-popular {

    margin: 25px 0 30px;

}

.trip-popular label {

    display: block;

    font-weight: 700;

    margin-bottom: 12px;

    color: #444;

}

.trip-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.trip-tags span {

    padding: 9px 16px;

    border-radius: 50px;

    background: #f3f5f8;

    cursor: pointer;

    transition: .3s;

    font-size: 14px;

}

.trip-tags span:hover {

    background: var(--web-secondary);

    color: #fff;

}

/*==================================================
Button
==================================================*/

.trip-submit-btn {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 60px;

    background: var(--web-secondary);

    color: #fff;

    font-size: 17px;

    font-weight: 700;

    transition: .35s;

}

.trip-submit-btn:hover {

    background: var(--web-primary);

    transform: translateY(-2px);

}

/*==================================================
Responsive
==================================================*/

@media(max-width:1200px) {

    .trip-planner-wrapper {

        gap: 45px;

    }

}

@media(max-width:992px) {

    .trip-planner-section {

        padding: 80px 0;

    }

    .trip-planner-wrapper {

        grid-template-columns: 1fr;

    }

    .trip-content {

        text-align: center;

    }

    .trip-content p {

        margin: auto auto 35px;

    }

    .trip-features {

        max-width: 700px;

        margin: 0 auto 40px;

    }

    .trip-stats {

        justify-content: center;

        margin-bottom: 45px;

    }

}

@media(max-width:768px) {

    .trip-content h2 {

        font-size: 42px;

    }

    .trip-content p {

        font-size: 16px;

    }

    .trip-features {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .trip-form-card {

        padding: 28px;

    }

    .trip-form-card .form-row {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .trip-planner-section {

        padding: 65px 0;

    }

    .trip-content h2 {

        font-size: 34px;

    }

    .trip-subtitle {

        font-size: 12px;

    }

    .trip-form-card {

        padding: 22px;

        border-radius: 22px;

    }

    .trip-form-card h3 {

        font-size: 28px;

    }

    .trip-stat {

        width: 100%;

        text-align: center;

    }

}

/*==================================================
HOME HERO SLIDER
==================================================*/

.home-top-swiper {
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

.home-top-swiper .swiper-slide {
    overflow: hidden;
    cursor: grab;
}

.home-top-swiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.home-top-swiper .swiper-slide:hover img {
    transform: scale(1.04);
}

/* Optional: Active slide animation */
.home-top-swiper .swiper-slide-active img {
    animation: heroZoomOut 6s linear forwards;
}

@keyframes heroZoomOut {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

/*==================================================
Responsive
==================================================*/
@media (max-width:1400px) {
    .home-top-swiper .swiper-slide img {
        height: 560px;
    }
}

@media (max-width:1200px) {
    .home-top-swiper {
        border-radius: 26px;
    }

    .home-top-swiper .swiper-slide img {
        height: 500px;
    }
}

@media (max-width:992px) {
    .home-top-section {
        padding: 20px 0 40px;
    }

    .home-top-swiper {
        border-radius: 22px;
    }

    .home-top-swiper .swiper-slide img {
        height: 420px;
    }
}

@media (max-width:768px) {
    .home-top-swiper {
        border-radius: 18px;
    }

    .home-top-swiper .swiper-slide img {
        height: 300px;
    }
}

@media (max-width:576px) {
    .home-top-section {
        padding: 15px 0 30px;
    }

    .home-top-swiper {
        border-radius: 14px;
    }

    .home-top-swiper .swiper-slide img {
        height: 220px;
    }
}


/*=====================================
Home Middle Slider
=====================================*/

.home-middle-section {
    margin: 30px 0 35px 0;
}

.home-middle-swiper {
    overflow: visible;
}

.home-middle-swiper .swiper-slide {
    border-radius: 28px;
    overflow: hidden;
    transition: .35s;
}

.home-middle-swiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    transition: .5s;
}

.home-middle-swiper .swiper-slide:hover {
    transform: translateY(-6px);
}

.home-middle-swiper .swiper-slide:hover img {
    transform: scale(1.03);
}

/* Pagination */

.home-middle-swiper .swiper-pagination {
    bottom: 18px !important;
}

.home-middle-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .45;
    transition: .3s;
}

.home-middle-swiper .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 20px;
    background: var(--web-secondary);
    opacity: 1;
}

/*==============================
Responsive
==============================*/



@media (max-width:992px) {

    .home-middle-section {
        padding: 60px 0;
    }

    .home-middle-section {
        margin: 0;
    }

}

@media (max-width:768px) {

    .home-middle-section {
        padding: 20px 0;
    }

    .home-middle-swiper {
        border-radius: 0;
    }

    .home-middle-swiper .swiper-slide {
        border-radius: 0px;
    }

    .home-middle-section {
        margin: 0;
    }

}

@media (max-width:576px) {

    .home-middle-swiper {
        border-radius: 0px;
    }
}

/*==================================================
COLLABORATORS
==================================================*/
.home-collaborators {
    padding: 0 0 100px 0;
    background: #fff;
    overflow: hidden;
}

/*=============================
Marquee
=============================*/
.collaborator-marquee {
    position: relative;
    overflow: hidden;
    /* margin-top: 60px; */
}

/* Fade Effect */
.collaborator-marquee::before,
.collaborator-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.collaborator-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.collaborator-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/*=============================
Track
=============================*/
.collaborator-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partnerScroll 35s linear infinite;
}

.collaborator-marquee:hover .collaborator-track {
    animation-play-state: paused;
}

/*=============================
Item
=============================*/
.collaborator-item {
    width: 220px;
    height: 120px;
    margin: 10px 18px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .35s;
}

.collaborator-item:hover {
    transform: translateY(-8px);
    border-color: var(--web-secondary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.collaborator-item img {
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    opacity: .75;
    transition: .35s;
}

.collaborator-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
}

/*=============================
Animation
============================*/
@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*=============================
Responsive
=============================*/

@media(max-width:768px) {
    .home-collaborators {
        padding: 0 0;
    }

    .collaborator-item {
        width: 170px;
        height: 95px;
        margin: 0 10px;
    }

    .collaborator-item img {
        max-width: 110px;
        max-height: 55px;
    }

    .collaborator-track {
        animation-duration: 25s;
    }
}



/*==================================================
HOME Bottom SLIDER
==================================================*/

.home-bottom-swiper {
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

.home-bottom-swiper .swiper-slide {
    overflow: hidden;
    cursor: grab;
}

.home-bottom-swiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.home-bottom-swiper .swiper-slide:hover img {
    transform: scale(1.04);
}

/* Optional: Active slide animation */
.home-bottom-swiper .swiper-slide-active img {
    animation: heroZoomOut 6s linear forwards;
}

@keyframes heroZoomOut {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

/*==================================================
Responsive
==================================================*/
@media (max-width:1400px) {
    .home-bottom-swiper .swiper-slide img {
        height: 560px;
    }
}

@media (max-width:1200px) {
    .home-bottom-swiper {
        border-radius: 26px;
    }

    .home-bottom-swiper .swiper-slide img {
        height: 500px;
    }
}

@media (max-width:992px) {
    .home-bottom-section {
        padding: 20px 0 40px;
    }

    .home-bottom-swiper {
        border-radius: 22px;
    }

    .home-bottom-swiper .swiper-slide img {
        height: 420px;
    }
}

@media (max-width:768px) {
    .home-bottom-swiper {
        border-radius: 18px;
    }

    .home-bottom-swiper .swiper-slide img {
        height: 300px;
    }
}

@media (max-width:576px) {
    .home-bottom-section {
        padding: 15px 0 30px;
    }

    .home-bottom-swiper {
        border-radius: 14px;
    }

    .home-bottom-swiper .swiper-slide img {
        height: 220px;
    }
}


/*==================================================
Activity Section
==================================================*/

.activity-section {

    padding: 50px 0 90px 0;

    position: relative;

    overflow: hidden;
}

/*==================================================
Grid
==================================================*/

.activity-grid {

    display: flex;

    gap: 18px;

    height: 520px;
}

/*==================================================
Card
==================================================*/

.activity-card {

    position: relative;

    flex: .9;

    overflow: hidden;

    border-radius: 28px;

    text-decoration: none;

    transition:
        flex .55s cubic-bezier(.2, .8, .2, 1),
        transform .35s ease,
        box-shadow .35s ease;

    cursor: pointer;

    min-width: 0;
}

.activity-card:hover,
.activity-card.active {

    flex: 2.6;

    box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
}

.activity-card img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.activity-card:hover img,
.activity-card.active img {

    transform: scale(1.08);
}

/*==================================================
Gradient
==================================================*/

.activity-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 0, 0, .35) 40%,
            rgba(0, 0, 0, .10) 100%);

    transition: .4s;
}

.activity-card:hover .activity-overlay,
.activity-card.active .activity-overlay {

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .08));
}

/*==================================================
Top Tags
==================================================*/

.activity-top {

    position: absolute;

    top: 22px;

    left: 22px;

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    opacity: 0;

    transform: translateY(-10px);

    transition: .35s;

    z-index: 2;
}

.activity-card:hover .activity-top,
.activity-card.active .activity-top {

    opacity: 1;

    transform: none;
}

.activity-top span {

    padding: 8px 14px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    border: 1px solid rgba(255, 255, 255, .2);
}

/*==================================================
Arrow
==================================================*/

.activity-arrow {

    position: absolute;

    right: 22px;

    top: 22px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #fff;

    color: var(--web-primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    opacity: 0;

    transform: translateY(-10px);

    transition: .35s;

    z-index: 2;
}

.activity-card:hover .activity-arrow,
.activity-card.active .activity-arrow {

    opacity: 1;

    transform: none;
}

/*==================================================
Content
==================================================*/

.activity-content {

    position: absolute;

    left: 24px;

    right: 24px;

    bottom: 28px;

    z-index: 2;
}

/* collapsed */

.activity-content h3 {

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    margin: 0;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    transition: .45s;

    white-space: nowrap;
}

/* expanded */

.activity-card:hover .activity-content h3,
.activity-card.active .activity-content h3 {

    writing-mode: horizontal-tb;

    transform: none;

    font-size: 34px;

    margin-bottom: 10px;
}

.activity-content p {

    color: rgba(255, 255, 255, .92);

    line-height: 1.7;

    max-width: 420px;

    margin-bottom: 14px;

    opacity: 0;

    transform: translateY(12px);

    transition: .4s;
}

.activity-content small {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-weight: 600;

    opacity: 0;

    transform: translateY(12px);

    transition: .4s;
}

.activity-content small::before {

    content: "";

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--web-secondary);
}

.activity-card:hover .activity-content p,
.activity-card:hover .activity-content small,
.activity-card.active .activity-content p,
.activity-card.active .activity-content small {

    opacity: 1;

    transform: none;
}

/*==================================================
Hover Lift
==================================================*/

.activity-card:hover {

    transform: translateY(-6px);
}

/*==================================================
Tablet
==================================================*/

@media(max-width:991px) {

    .activity-grid {
        gap: 12px;
    }

    .activity-card:hover,
    .activity-card.active {

        flex: 2;
    }

    .activity-card:hover .activity-content h3,
    .activity-card.active .activity-content h3 {

        font-size: 26px;
    }

    .activity-content p {

        font-size: 14px;
    }

}

/*==================================================
Mobile
==================================================*/

@media(max-width:767px) {
    .activity-section {
        padding: 0 0 90px 0;
    }

    .activity-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: 100vh;
    }

    .activity-card {
        position: relative;
        display: block;
        width: 100%;
        height: 340px;
        overflow: hidden;
        border-radius: 22px;
        transition: .4s ease;
    }

    .activity-card.active {
        height: 340px;
    }

    .activity-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s;
    }

    .activity-card.active img {
        transform: scale(1.05);
    }

    /* Hide extra content initially */
    .activity-top,
    .activity-arrow,
    .activity-content p,
    .activity-content small {
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    .activity-card.active .activity-top,
    .activity-card.active .activity-arrow,
    .activity-card.active .activity-content p,
    .activity-card.active .activity-content small {
        opacity: 1;
        visibility: visible;
    }

    .activity-content {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 24px;
        color: #fff;
    }

    .activity-content h3 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
    }

    /* Collapsed title */
    .activity-card:not(.active) .activity-content {
        bottom: 18px;
    }

    .activity-card:not(.active) .activity-content h3 {
        font-size: 24px;
    }


}


/*==================================
Home Tour Section
==================================*/

.home-tour-section {
    padding: 0 0 90px 0;
    background: #f8fafc;
}

.tour-section-header {
    padding-top: 20px;
    text-align: center;
}

.tour-block {
    margin-top: 30px;
}

.tour-block-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.tour-block-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-block-header p {
    color: #666;
    margin: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--web-secondary);
    text-decoration: none;
    font-weight: 700;
}

.view-all-btn:hover {
    gap: 12px;
}

/*==================================
Card
==================================*/

.tour-card {
    display: block;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    text-decoration: none;
}

.tour-card-image {
    position: relative;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 245px;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: .5s;
}

.tour-card:hover img {
    transform: scale(1.08);
}

.tour-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
}

.tour-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fff;
    color: #111;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.tour-duration {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(255, 255, 255, .92);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.tour-card-body {
    padding: 24px;
}

.tour-country {
    color: var(--web-secondary);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.tour-card-body h4 {
    margin: 0;
    font-size: 22px;
    line-height: 1.4;
    color: #222;
    font-weight: 700;
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.tour-features li {
    padding: 3px 0;
    color: #666;
    font-size: 14px;
}

.tour-features li::before {
    content: "✓";
    color: #17b26a;
    font-weight: bold;
    margin-right: 10px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.tour-card-footer small {
    display: block;
    color: #999;
    margin-bottom: 3px;
}

.tour-card-footer strong {
    color: var(--web-secondary);
    font-size: 24px;
}

.tour-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.tour-card:hover .tour-arrow {
    background: var(--web-secondary);
    color: #fff;
}

/*==================================
Responsive
==================================*/

@media(max-width:991px) {

    .home-tour-section {
        padding: 0px 0;
    }

    .tour-block-header {
        align-items: flex-start;
    }

    .tour-block-header h3 {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .tour-card-body {
        padding: 18px;
    }

    .tour-card-body h4 {
        font-size: 18px;
    }

    .tour-card-footer strong {
        font-size: 20px;
    }

    .view-all-btn {
        width: 100%;
        justify-content: flex-start;
    }

}

.domesticTourSwiper .swiper-wrapper {
    height: auto !important;
}

.internationalTourSwiper .swiper-wrapper {
    height: auto !important;
}


/*=========================================
World Section
=========================================*/

.world-section {

    padding: 0 0 70px 0;

    background: #f7fbff;

    overflow: hidden;

    position: relative;

}

.world-header {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 0px;

}

.world-header .section-title {

    font-size: 38px;

    font-weight: 800;

    color: #16263c;

    margin-bottom: 15px;

}

.world-header .section-description {

    color: #667085;

    line-height: 1.8;

    font-size: 18px;

}

.world-explorer {

    position: relative;

}

.world-map {

    position: relative;

    min-height: 760px;

    background: url("../images/world-map.png") center center no-repeat;

    background-size: contain;

}

/*=========================================
Featured Card
=========================================*/

.world-featured {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 340px;

    border-radius: 26px;

    overflow: hidden;

    background: #fff;

    text-decoration: none;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

    transition: .35s;

    z-index: 10;

}

.world-featured:hover {

    transform: translate(-50%, -55%);

}

.world-featured img {

    width: 100%;

    aspect-ratio: 16/10;

    object-fit: cover;

    transition: .5s;

}

.world-featured:hover img {

    transform: scale(1.08);

}

.world-featured-content {

    padding: 22px;

}

.country-flag {

    font-size: 28px;

}

.world-featured h3 {

    font-size: 28px;

    margin: 12px 0;

    color: #16263c;

}

.world-featured p {

    color: #777;

    margin-bottom: 18px;

}

.explore-link {

    color: var(--web-secondary);

    font-weight: 700;

}

/*=========================================
Card Animation
=========================================*/

.world-featured {

    transition: all .45s ease;

}

.world-featured.changing {

    opacity: 0;

    transform: translate(-50%, -50%) translateX(-40px);

}

.world-featured img {

    transition: transform .6s ease;

}

.world-featured:hover img {

    transform: scale(1.08);

}

.world-featured.changing img {

    transform: scale(1.15);

}

/*=========================================
Country Chips
=========================================*/

.world-chip {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 13px 22px;

    border-radius: 40px;

    text-decoration: none;

    color: #16263c;

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, .45);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .35s;

    font-weight: 700;

    animation: float 5s ease-in-out infinite;

}

.world-chip:hover,

.world-chip.active {

    background: var(--web-secondary);

    color: #fff;

    transform: translateY(-8px);

}

.chip-flag {

    font-size: 18px;

}

/*=========================================
Different Floating Delay
=========================================*/

.chip-1 {
    top: 8%;
    left: 12%;
    animation-delay: 0s;
}

.chip-2 {
    top: 22%;
    right: 10%;
    animation-delay: .4s;
}

.chip-3 {
    top: 38%;
    left: 3%;
    animation-delay: .8s;
}

.chip-4 {
    top: 62%;
    left: 15%;
    animation-delay: 1.2s;
}

.chip-5 {
    bottom: 12%;
    left: 35%;
    animation-delay: 1.6s;
}

.chip-6 {
    bottom: 18%;
    right: 10%;
    animation-delay: 2s;
}

.chip-7 {
    top: 60%;
    right: 5%;
    animation-delay: 2.4s;
}

.chip-8 {
    top: 35%;
    right: 18%;
    animation-delay: 2.8s;
}

.chip-9 {
    bottom: 35%;
    left: 5%;
    animation-delay: 3.2s;
}

.chip-10 {
    bottom: 8%;
    right: 30%;
    animation-delay: 3.6s;
}

/*=========================================
Floating Animation
=========================================*/

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

/*=========================================
Footer
=========================================*/

.world-footer {

    text-align: center;

}

.world-btn {

    display: inline-flex;

    gap: 10px;

    align-items: center;

    padding: 16px 34px;

    border-radius: 50px;

    text-decoration: none;

    background: var(--web-secondary);

    color: #fff;

    font-weight: 700;

}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px) {

    .world-map {

        background: none;

        min-height: auto;

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;

    }

    .world-featured {

        position: relative;

        left: auto;

        top: auto;

        transform: none;

        width: 100%;

        max-width: 420px;

        order: -1;

        margin-bottom: 25px;

    }

    .world-featured.changing {

        transform: translateY(20px);

    }

    .world-chip {

        position: relative;

        left: auto;

        right: auto;

        top: auto;

        bottom: auto;

        animation: none;

    }

}

@media(max-width:576px) {

    .world-chip {

        width: calc(50% - 10px);

        justify-content: center;

    }

    .world-btn {

        width: 100%;

        justify-content: center;

    }

}


/*==================================================
WHY BENTO SECTION
==================================================*/

.why-bento-section {
    padding: 30px 0 90px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.why-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/*==================================================
Common Card
==================================================*/

.bento-card {

    background: #fff;

    border-radius: 24px;

    padding: 28px;

    position: relative;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

    transition: .35s;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.bento-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 22px 45px rgba(0, 0, 0, .12);

}

.bento-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--web-secondary);

    transform: scaleX(0);

    transition: .35s;

}

.bento-card:hover::before {

    transform: scaleX(1);

}

/*==================================================
Hero Card
==================================================*/

.bento-hero {

    grid-column: span 2;

    grid-row: span 2;

    background:
        linear-gradient(135deg,
            var(--web-primary),
            #15365c);

    color: #fff;

}

.bento-hero::after {

    content: "";

    position: absolute;

    right: -80px;
    bottom: -80px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

}

.bento-subtitle {

    display: inline-flex;

    width: max-content;

    padding: 7px 14px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .12);

    margin-bottom: 18px;

    font-size: 13px;

    letter-spacing: 1px;

}

.bento-hero h2 {

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 18px;

    font-weight: 800;

}

.bento-hero p {

    font-size: 16px;

    line-height: 1.8;

    opacity: .92;

    max-width: 480px;

    margin-bottom: 30px;

}

.bento-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: max-content;

    padding: 14px 28px;

    border-radius: 50px;

    background: #fff;

    color: var(--web-primary);

    font-weight: 700;

    text-decoration: none;

    transition: .35s;

}

.bento-btn:hover {

    background: var(--web-secondary);

    color: #fff;

}

/*==================================================
Stats
==================================================*/

.bento-stat {

    align-items: center;

    text-align: center;

}

.bento-icon {

    width: 62px;
    height: 62px;

    border-radius: 18px;

    background: rgba(255, 111, 0, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--web-secondary);

    font-size: 24px;


}

.bento-stat h3 {

    font-size: 38px;

    font-weight: 800;

    color: var(--web-primary);

    margin-bottom: 8px;

}

.bento-stat h4 {

    font-size: 28px;

    font-weight: 800;

    color: var(--web-primary);

    margin-bottom: 8px;

}

.bento-stat p {

    color: #666;

    margin: 0;

}

/*==================================================
Feature Cards
==================================================*/

.bento-feature {

    justify-content: flex-start;

}

.bento-feature i {

    font-size: 30px;

    color: var(--web-secondary);

    margin-bottom: 18px;

}

.bento-feature h4 {

    font-size: 22px;

    margin-bottom: 10px;

    color: #1f2937;

}

.bento-feature p {

    color: #666;

    line-height: 1.7;

    margin: 0;

}

/*==================================================
Services
==================================================*/

.bento-services {

    grid-column: span 2;

    justify-content: flex-start;

}

.bento-services h4 {

    font-size: 24px;

    margin-bottom: 20px;

    color: #1f2937;

}

.service-list {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.service-list span {

    padding: 10px 18px;

    border-radius: 30px;

    background: #eef4ff;

    color: #234;

    font-weight: 600;

    transition: .3s;

}

.service-list span:hover {

    background: var(--web-secondary);

    color: #fff;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:1200px) {

    .why-bento-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .bento-hero {

        grid-column: span 2;

    }

    .bento-services {

        grid-column: span 2;

    }

}

@media(max-width:768px) {

    .why-bento-section {

        padding: 0 0;

    }

    .why-bento-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: auto;

    }

    .bento-card,
    .bento-hero,
    .bento-services {

        grid-column: auto;

        grid-row: auto;

    }

    .bento-card {

        padding: 24px;

    }

    .bento-hero h2 {

        font-size: 32px;

    }

    .bento-hero p {

        font-size: 15px;

    }

    .bento-stat h3 {

        font-size: 30px;

    }

    .bento-feature h4 {

        font-size: 20px;

    }

    .service-list {

        gap: 10px;

    }

}

@media(max-width:576px) {

    .bento-btn {

        width: 100%;

        justify-content: center;

    }

    .service-list {

        justify-content: center;

    }

}


/*==================================================
Review + Blog Section
==================================================*/

.review-blog-section {

    padding: 20px 0 70px 0;

    background: #f8fafc;

}

.review-blog-section .section-heading {

    margin-bottom: 60px;

}

.review-blog-section .section-title {

    font-size: 38px;

    font-weight: 800;

    color: #1b2430;

    margin-bottom: 12px;

}

.review-blog-section .section-subtitle {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 40px;

    background: rgba(255, 111, 0, .08);

    color: var(--web-secondary);

    font-weight: 700;

    letter-spacing: 1px;

    font-size: 13px;

    margin-bottom: 18px;

}

/*==================================================
Common Box
==================================================*/

.review-side,
.blog-side {

    background: #fff;

    border-radius: 24px;

    padding: 28px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);

}

.review-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;

}

.review-header h3 {

    font-size: 24px;

    margin: 0;

    font-weight: 700;

    color: #1b2430;

}

.review-header a {

    color: var(--web-secondary);

    font-weight: 700;

    text-decoration: none;

}

.review-header a:hover {

    color: var(--web-primary);

}

/*==================================================
Review Card
==================================================*/

.review-card {

    border: 1px solid #eef2f6;

    border-radius: 20px;

    padding: 30px;

    background: #fff;

    min-height: 330px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    transition: .35s;

}

.review-card:hover {

    border-color: rgba(255, 111, 0, .25);

    transform: translateY(-6px);

}

.review-top {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 22px;

}

.review-top img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #fff;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);

}

.review-top h5 {

    margin-bottom: 4px;

    font-size: 20px;

    font-weight: 700;

}

.review-top small {

    color: #777;

}

.review-rating {

    font-size: 22px;

    color: #ffc107;

    margin-bottom: 18px;

}

.review-card p {

    color: #666;

    line-height: 1.9;

    font-size: 16px;

}

/*==================================================
Swiper Pagination
==================================================*/

.review-pagination {

    position: relative;

    margin-top: 25px;

}

.review-pagination .swiper-pagination-bullet {

    width: 10px;

    height: 10px;

    opacity: 1;

    background: #d9d9d9;

}

.review-pagination .swiper-pagination-bullet-active {

    width: 32px;

    border-radius: 20px;

    background: var(--web-secondary);

}

/*==================================================
Blog Card
==================================================*/

.blog-item {

    display: flex;

    gap: 20px;

    align-items: center;

    padding: 5px;

    border-radius: 18px;

    text-decoration: none;

    border: 1px solid #edf2f7;

    transition: .35s;

    margin-bottom: 10px;

    background: #fff;

}

.blog-item:last-child {

    margin-bottom: 0;

}

.blog-item:hover {

    transform: translateX(8px);

    border-color: rgba(255, 111, 0, .25);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    text-decoration: none;

}

.blog-image {

    width: 160px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 16px;

}

.blog-image img {

    width: 100%;

    height: 120px;

    object-fit: cover;

    transition: .5s;

}

.blog-item:hover img {

    transform: scale(1.08);

}

.blog-date {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--web-secondary);

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 10px;

}

.blog-content h4 {

    font-size: 21px;

    color: #222;

    margin-bottom: 10px;

    line-height: 1.35;

    font-weight: 700;

}

.blog-content p {

    margin: 0;

    color: #6d7582;

    line-height: 1.7;

    font-size: 15px;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:1199px) {

    .blog-image {

        width: 130px;

    }

    .blog-image img {

        height: 100px;

    }

}

@media(max-width:991px) {

    .review-side {

        margin-bottom: 30px;

    }

    .review-card {

        min-height: auto;

    }

}

@media(max-width:768px) {

    .review-blog-section {

        padding: 70px 0;

    }

    .review-blog-section .section-title {

        font-size: 34px;

    }

    .review-side,
    .blog-side {

        padding: 22px;

    }

    .blog-item {

        flex-direction: column;

        align-items: flex-start;

    }

    .blog-image {

        width: 100%;

    }

    .blog-image img {

        height: 220px;

    }

    .blog-content h4 {

        font-size: 18px;

    }

}

@media(max-width:576px) {

    .review-blog-section .section-title {

        font-size: 28px;

    }

    .review-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .review-card {

        padding: 22px;

    }

    .review-top {

        flex-direction: column;

        text-align: center;

    }

    .blog-image img {

        height: 180px;

    }

}

.reviewSwiper .swiper-wrapper {
    height: auto !important;
}

/* Tour Section */
/*==================================================
Tour Hero
==================================================*/

.tour-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    overflow: hidden;

}

.tour-hero-media {

    position: absolute;

    inset: 0;

    z-index: -2;

}

.tour-hero-media img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.tour-hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to right,
            rgba(8, 22, 38, .88) 0%,
            rgba(8, 22, 38, .70) 45%,
            rgba(8, 22, 38, .55) 100%);

    z-index: -1;

}

.tour-hero-content {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    padding: 100px 0 120px;
}

.tour-hero-top {
    display: flex;
    justify-content: flex-start;
    margin: 45px 0 21px;
}

/*==================================================
Breadcrumb
==================================================*/

.tour-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-breadcrumb li {

    color: rgba(255, 255, 255, .75);

    font-size: 14px;

}

.tour-breadcrumb li:not(:last-child)::after {

    content: "/";

    margin-left: 12px;

    color: rgba(255, 255, 255, .4);

}

.tour-breadcrumb a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.tour-breadcrumb a:hover {

    color: var(--web-secondary);

}

/*==================================================
Badge
==================================================*/

.tour-hero-badge {

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .18);

    backdrop-filter: blur(16px);

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 25px;
    max-width: fit-content;

}

/*==================================================
Heading
==================================================*/

.tour-hero-content h1 {

    color: #fff;

    font-size: 42px;

    line-height: 1.12;

    font-weight: 800;

    margin-bottom: 25px;

}

.tour-hero-content h1 span {

    color: var(--web-secondary);

    display: block;

}

.tour-hero-content p {

    color: rgba(255, 255, 255, .88);

    font-size: 18px;

    line-height: 1.9;

    max-width: 620px;

    margin-bottom: 40px;

}

/*==================================================
Buttons
==================================================*/

.tour-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 55px;

}

.tour-primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 38px;

    border-radius: 60px;

    background: var(--web-secondary);

    color: #fff;

    font-weight: 700;

    text-decoration: none;

    transition: .35s;

}

.tour-primary-btn:hover {

    background: #fff;

    color: #111;

    transform: translateY(-4px);

}

.tour-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 38px;

    border-radius: 60px;

    border: 1px solid rgba(255, 255, 255, .35);

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(14px);

    color: #fff;

    font-weight: 700;

    text-decoration: none;

    transition: .35s;

}

.tour-outline-btn:hover {

    background: #fff;

    color: #111;

}

/*==================================================
Stats
==================================================*/

.tour-hero-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}

.hero-stat {

    min-width: 150px;

    padding: 18px 22px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(16px);

}

.hero-stat strong {

    display: block;

    color: #fff;

    font-size: 28px;

    font-weight: 800;

    margin-bottom: 6px;

}

.hero-stat span {

    color: rgba(255, 255, 255, .78);

    font-size: 14px;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:991px) {

    .tour-hero {

        min-height: 500px;

    }

    .tour-hero-content {

        padding: 80px 0;

    }

    .tour-hero-content h1 {

        font-size: 48px;

    }

    .tour-hero-stats {

        gap: 15px;

    }

    .hero-stat {

        flex: 1 1 calc(50% - 15px);

    }

}

@media(max-width:767px) {

    .tour-hero {

        min-height: 400px;

    }

    .tour-hero-content {

        text-align: center;

        max-width: 100%;

        padding: 70px 0;

    }

    .tour-breadcrumb {

        justify-content: center;

        flex-wrap: wrap;

    }

    .tour-hero-content p {

        font-size: 16px;

        margin-bottom: 30px;

    }

    .tour-hero-buttons {

        justify-content: center;

        margin-bottom: 35px;

    }

    .tour-primary-btn,

    .tour-outline-btn {

        width: 100%;

    }

    .tour-hero-stats {

        justify-content: center;

    }

    .hero-stat {

        width: 100%;

        min-width: unset;

    }

}


/*==================================================
Floating Filter
==================================================*/

.tour-filter-section {

    position: relative;

    margin-top: 15px;

    z-index: 20;

}

.tour-filter-card {

    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .6);

    border-radius: 28px;

    padding: 28px;

    box-shadow: 0 25px 70px rgba(18, 38, 63, .12);

}

.tour-filter-form {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1fr 1fr auto;

    gap: 18px;

    align-items: end;

}

.filter-item {

    display: flex;

    flex-direction: column;

}

.filter-item label {

    font-size: 13px;

    font-weight: 700;

    color: #777;

    margin-bottom: 10px;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.filter-item input,

.filter-item select {

    height: 56px;

    border: none;

    outline: none;

    border-radius: 16px;

    background: #f6f8fb;

    padding: 0 18px;

    font-size: 15px;

    transition: .3s;

}

.filter-item input:focus,

.filter-item select:focus {

    background: #fff;

    box-shadow: 0 0 0 3px rgba(255, 128, 0, .12);

}

.tour-search-btn {

    height: 56px;

    border: none;

    border-radius: 16px;

    background: var(--web-secondary);

    color: #fff;

    padding: 0 34px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    cursor: pointer;

    transition: .35s;

}

.tour-search-btn:hover {

    transform: translateY(-3px);

    background: var(--web-primary);

}

/*==================================================
Toolbar
==================================================*/

.tour-toolbar-section {
    padding: 45px 0 35px;
}

.tour-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;

}

.tour-toolbar-left h2 {

    font-size: 34px;

    font-weight: 800;

    color: #222;

    margin-bottom: 8px;

}

.tour-toolbar-left p {

    margin: 0;

    color: #777;

    font-size: 16px;

}

.tour-toolbar-left strong {

    color: var(--web-secondary);

}

.tour-toolbar-right {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}

/*==================================================
Active Filters
==================================================*/

.active-filters {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.active-filters span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    background: #f5f7fa;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    color: #444;

}

.active-filters i {

    font-size: 12px;

    cursor: pointer;

    transition: .3s;

}

.active-filters i:hover {

    color: #e63946;

}

/*==================================================
Sort
==================================================*/

.tour-sort {

    display: flex;

    align-items: center;

    gap: 12px;

}

.tour-sort label {

    font-size: 14px;

    font-weight: 700;

    color: #666;

    white-space: nowrap;

}

.tour-sort select {

    min-width: 190px;

    height: 48px;

    border: none;

    outline: none;

    border-radius: 14px;

    background: #f6f8fb;

    padding: 0 18px;

    cursor: pointer;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:1200px) {

    .tour-filter-form {

        grid-template-columns: repeat(3, 1fr);

    }

    .tour-search-btn {

        width: 100%;

    }

}

@media(max-width:991px) {

    .tour-filter-section {

        margin-top: -40px;

    }

    .tour-filter-card {

        padding: 22px;

    }

    .tour-filter-form {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:767px) {

    .tour-filter-section {
        margin-top: 30px;
    }

    .tour-toolbar-section {
        padding: 0;
    }

    .tour-filter-card {

        border-radius: 20px;

        padding: 18px;

    }

    .tour-filter-form {

        grid-template-columns: 1fr;

    }

    .tour-toolbar {

        flex-direction: column;

        align-items: flex-start;

    }

    .tour-toolbar-left h2 {

        font-size: 28px;

    }

    .tour-toolbar-right {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

    }

    .active-filters {

        width: 100%;

    }

    .tour-sort {

        width: 100%;

        flex-direction: column;

        align-items: flex-start;

    }

    .tour-sort select {

        width: 100%;

    }

}

/*==================================================
Tour Grid
==================================================*/

.tour-grid-section {

    padding: 20px 0 80px;

}

.tour-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    align-items: start;

}


/*==================================================
Featured Card
==================================================*/

.featured-tour-card {

    grid-column: span 2;

    display: grid;

    grid-template-columns: 1.15fr 1fr;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(18, 38, 63, .08);

    transition: .4s;

}

.featured-tour-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 70px rgba(18, 38, 63, .12);

}

.featured-tour-image {

    position: relative;

    overflow: hidden;

}

.featured-tour-image img {

    width: 100%;

    height: 100%;

    min-height: 450px;

    object-fit: cover;

    transition: .7s;

}

.featured-tour-card:hover img {

    transform: scale(1.08);

}

.featured-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, .55),

            transparent);

}

.featured-badge {

    position: absolute;

    top: 22px;

    left: 22px;

    background: var(--web-secondary);

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    z-index: 2;

}

.featured-tour-content {

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.featured-country {

    display: inline-flex;

    width: max-content;

    padding: 8px 16px;

    background: #f5f5f5;

    border-radius: 30px;

    color: var(--web-secondary);

    font-weight: 600;

    margin-bottom: 20px;

}

.featured-tour-content h2 {

    font-size: 38px;

    line-height: 1.2;

    margin-bottom: 18px;

    color: #222;

}

.featured-tour-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 30px;

}

.featured-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 35px;

}

.featured-meta span {

    padding: 10px 18px;

    border-radius: 30px;

    background: #f8f9fb;

    font-size: 14px;

}

.featured-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: auto;

}

.featured-price small {

    display: block;

    color: #888;

    margin-bottom: 4px;

}

.featured-price strong {

    font-size: 32px;

    color: var(--web-secondary);

}


/*==================================================
Tour Card
==================================================*/

.tour-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 18px 45px rgba(18, 38, 63, .08);

    transition: .35s;

    display: flex;

    flex-direction: column;

}

.tour-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 28px 60px rgba(18, 38, 63, .12);

}

.tour-card-image {

    position: relative;

    overflow: hidden;

}

.tour-card-image img {

    width: 100%;

    aspect-ratio: 4/3;

    object-fit: cover;

    transition: .6s;

}

.tour-card:hover img {

    transform: scale(1.08);

}

.tour-country {
    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}

.tour-card-body {

    padding: 24px;

    display: flex;

    flex-direction: column;

    flex: 1;

}

.tour-rating {

    color: #f6b100;

    font-size: 14px;

    font-weight: 700;

}

.tour-rating span {

    color: #555;

    margin-left: 6px;

}

.tour-card-body h3 {
    font-size: 24px;
    line-height: 1.35;
    margin: 0px;

}

.tour-card-body a {

    color: #222;

    text-decoration: none;

}

.tour-card-body p {

    color: #777;

    line-height: 1.8;

    margin-bottom: 10px;

}

.tour-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 10px;

}

.tour-meta span {

    background: #f7f8fa;

    border-radius: 30px;

    padding: 8px 0px;

    font-size: 13px;

}

.tour-footer {

    margin-top: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.tour-footer small {

    display: block;

    color: #999;

}

.tour-footer strong {

    font-size: 24px;

    color: var(--web-secondary);

}

.tour-view-btn,

.tour-footer-explore-btn {

    padding: 12px 24px;

    border-radius: 50px;

    background: var(--web-secondary);

    color: #fff !important;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;

}

.tour-view-btn:hover,

.tour-footer-explore-btn:hover {

    background: var(--web-primary);

    color: #fff;

}


/*==================================================
Pagination
==================================================*/
.tour-pagination-wrapper {

    display: flex;

    justify-content: center;

}

.tour-pagination-wrapper .pagination {

    gap: 10px;

}

.tour-pagination-wrapper .page-link {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #f5f7fa;

    color: #444;

    font-weight: 700;

    transition: .3s;

}

.tour-pagination-wrapper .page-item.active .page-link {

    background: var(--web-secondary);

    color: #fff;

}

.tour-pagination-wrapper .page-link:hover {

    background: var(--web-primary);

    color: #fff;

}


/*==================================================
Responsive
==================================================*/

@media(max-width:1200px) {

    .tour-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .featured-tour-card {

        grid-column: span 2;

    }

}

@media(max-width:991px) {

    .featured-tour-card {

        grid-template-columns: 1fr;

    }

    .featured-tour-image img {

        min-height: 320px;

    }

    .featured-tour-content {

        padding: 30px;

    }

    .featured-tour-content h2 {

        font-size: 30px;

    }

}

@media(max-width:767px) {

    .tour-grid {

        grid-template-columns: 1fr;

    }

    .featured-tour-card {

        grid-column: span 1;

    }

    .featured-footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

    .tour-footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

    .tour-view-btn,

    .tour-footer a {

        width: 100%;

        text-align: center;

    }

}


/*==================================================
Common Section
==================================================*/

.tour-why-section {
    padding: 70px 0;
}

.section-heading {

    text-align: center;

    margin-bottom: 40px;

}

.section-between {

    display: flex;

    justify-content: space-between;

    align-items: end;

    text-align: left;

}

.section-subtitle {

    display: inline-block;

    color: var(--web-secondary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin: 20px 0 8px 0;

}

.section-heading h2 {

    font-size: 34px;

    font-weight: 800;

    color: #222;

    margin-bottom: 10px;

}

.section-link {

    color: #222;

    text-decoration: none;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: .3s;

}

.section-link:hover {

    color: var(--web-secondary);

}

/*==================================================
Why Choose
==================================================*/

.tour-why-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}

.tour-feature-card {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid #eef2f7;

    transition: .35s;

}

.tour-feature-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.feature-icon {

    width: 56px;

    height: 56px;

    border-radius: 16px;

    background: #f8f8f8;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--web-secondary);

    font-size: 22px;

    flex-shrink: 0;

    transition: .3s;

}

.tour-feature-card:hover .feature-icon {

    background: var(--web-secondary);

    color: #fff;

}

.tour-feature-card h4 {

    font-size: 18px;

    margin-bottom: 6px;

    color: #222;

}

.tour-feature-card p {

    margin: 0;

    font-size: 14px;

    color: #777;

    line-height: 1.6;

}

/*==================================================
Destination Cards
==================================================*/

.destination-card {

    display: block;

    position: relative;

    border-radius: 20px;

    overflow: hidden;

    text-decoration: none;

}

.destination-card img {

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition: .5s;

}

.destination-card:hover img {

    transform: scale(1.08);

}

.destination-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, .78),

            rgba(0, 0, 0, .08));

}

.destination-content {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 20px;

    color: #fff;

    z-index: 2;

}

.destination-content span {

    display: inline-block;

    padding: 6px 12px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .18);

    backdrop-filter: blur(10px);

    font-size: 12px;

    margin-bottom: 12px;

}

.destination-content h3 {

    font-size: 26px;

    margin-bottom: 15px;

    color: #fff;

}

.destination-arrow {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: #fff;

    color: #222;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.destination-card:hover .destination-arrow {

    background: var(--web-secondary);

    color: #fff;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:991px) {

    .tour-why-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .section-between {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

}

@media(max-width:767px) {

    .tour-why-section,
    .related-destination-section {

        padding: 50px 0;

    }

    .tour-why-grid {

        grid-template-columns: 1fr;

    }

    .section-heading {

        margin-bottom: 30px;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .destination-content h3 {

        font-size: 22px;

    }

}

/*==================================================
FAQ
==================================================*/

.tour-faq-section {

    padding: 70px 0;

}

.tour-faq-wrapper {

    max-width: 900px;

    margin: 0 auto;

}

.tour-faq-item {

    background: #fff;

    border: 1px solid #eef2f7;

    border-radius: 18px;

    margin-bottom: 16px;

    overflow: hidden;

    transition: .35s;

}

.tour-faq-item:hover {

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

}

.tour-faq-question {

    width: 100%;

    border: none;

    background: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 24px 28px;

    cursor: pointer;

    font-size: 18px;

    font-weight: 700;

    color: #222;

}

.tour-faq-question i {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: #f5f7fa;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--web-secondary);

    transition: .35s;

}

.tour-faq-answer {

    display: none;

    padding: 0 28px 24px;

}

.tour-faq-answer p {

    margin: 0;

    color: #666;

    line-height: 1.9;

}

.tour-faq-item.active .tour-faq-answer {

    display: block;

}

.tour-faq-item.active .tour-faq-question i {

    transform: rotate(45deg);

    background: var(--web-secondary);

    color: #fff;

}

/*=================================================
Responsi
==================================================*/
@media(max-width:767px) {
    .tour-faq-section {
        padding: 50px 0;
    }

    .tour-faq-question {
        padding: 20px;
        font-size: 16px;
        gap: 15px;
    }

    .tour-faq-answer {
        padding: 0 20px 20px;
    }
}

/*==================================================
Blog Hero
==================================================*/

.blog-hero-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
    background: url("../../../images/tour/tour-details-banner.webp") center/cover;
}

.blog-hero-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 55px;
}

.blog-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 18px 0;
}

.blog-hero-content p {
    max-width: 680px;
    margin: 0 auto 35px;
    font-size: 18px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
}

.blog-search {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 70px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.blog-search input {
    flex: 1;
    border: none;
    padding: 0 28px;
    height: 68px;
    font-size: 16px;
    outline: none;
}

.blog-search button {
    width: 72px;
    border: none;
    background: var(--web-secondary);
    color: #fff;
    cursor: pointer;
    transition: .35s;
}

.blog-search button:hover {
    background: var(--web-primary);
}

/*==================================================
Featured Blog
==================================================*/
.featured-blog-section {
    padding: 80px 0 30px;
}

.featured-blog-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(18, 38, 63, .08);
    transition: .4s;
}

.featured-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(18, 38, 63, .12);
}

.featured-blog-image {
    overflow: hidden;
    position: relative;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: .8s;
}

.featured-blog-card:hover img {
    transform: scale(1.08);
}

.featured-blog-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label {
    display: inline-flex;
    width: max-content;
    padding: 8px 18px;
    border-radius: 40px;
    background: #fff5eb;
    color: var(--web-secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-blog-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 20px;
}

.featured-blog-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 600;
}

.featured-meta span:last-child {
    color: var(--web-secondary);
}

/*==================================================
Responsive
==================================================*/

@media(max-width:991px) {
    .blog-hero-content h1 {
        font-size: 46px;
    }

    .featured-blog-card {
        grid-template-columns: 1fr;
    }

    .featured-blog-image img {
        min-height: 320px;
    }

    .featured-blog-content {
        padding: 35px;
    }

    .featured-blog-content h2 {
        font-size: 32px;
    }
}

@media(max-width:767px) {
    .blog-hero-section {
        padding: 110px 0 70px;
    }

    .blog-hero-top {
        justify-content: center;
        margin-bottom: 35px;
    }

    .blog-hero-content h1 {
        font-size: 36px;
    }

    .blog-hero-content p {
        font-size: 16px;
    }

    .blog-search {
        height: 56px;
    }

    .blog-search input {
        height: 56px;
        font-size: 15px;
    }

    .blog-search button {
        width: 60px;
    }

    .featured-blog-content {
        padding: 28px;
    }

    .featured-blog-content h2 {
        font-size: 28px;
    }

    .featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/*==================================================
Blog Categories
==================================================*/

.blog-category-section {

    padding: 20px 0 60px;

}

.blog-category-list {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}

.blog-category-list a {

    padding: 12px 22px;

    border-radius: 50px;

    background: #f6f8fb;

    color: #555;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: .35s;

}

.blog-category-list a:hover,
.blog-category-list a.active {

    background: var(--web-secondary);

    color: #fff;

    transform: translateY(-2px);

}

/*==================================================
Blog Grid
==================================================*/
.blog-grid-section {
    padding-bottom: 80px;
}

.blog-count {
    font-weight: 700;
    color: #777;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    transition: .35s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .10);
}

.blog-card-image {
    display: block;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: .6s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 28px;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.blog-card-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.35;
}

.blog-card-content h3 a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.blog-card-content h3 a:hover {
    color: var(--web-secondary);
}

.blog-card-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--web-secondary);
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.blog-read-more:hover {
    gap: 14px;
}

/*==================================================
Pagination
==================================================*/

.blog-pagination-section {
    padding-bottom: 90px;
}

.blog-pagination-section .pagination {
    justify-content: center;
    gap: 12px;
}

.blog-pagination-section .page-link {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #444;
    background: #f5f7fa;
    transition: .3s;
}

.blog-pagination-section .page-item.active .page-link,
.blog-pagination-section .page-link:hover {
    background: var(--web-secondary);
    color: #fff;
}

/*==================================================
CTA
==================================================*/
.blog-cta-section {
    padding-bottom: 100px;
}

.blog-cta {
    background: linear-gradient(135deg, #0c233c, #16395d);
    border-radius: 28px;
    padding: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.blog-cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -120px;
    right: -120px;
}

.blog-cta h2 {
    color: #fff;
    font-size: 40px;
    margin: 15px 0;
}

.blog-cta p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
    max-width: 550px;
    line-height: 1.8;
}

.blog-cta .campaign-btn {
    flex-shrink: 0;
}

/*==================================================
Responsive
==================================================*/
@media(max-width:1199px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:991px) {
    .blog-cta {
        flex-direction: column;
        text-align: center;
        padding: 45px;
    }
}

@media(max-width:767px) {
    .blog-category-section {
        padding: 20px 0 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-content {
        padding: 22px;
    }

    .blog-card-content h3 {

        font-size: 21px;
    }

    .blog-cta {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .blog-cta h2 {
        font-size: 30px;
    }

    .blog-pagination-section {
        padding-bottom: 60px;
    }
}

/*==================================================
Blog Details Hero
==================================================*/

.blog-details-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
    background: url("../../../images/tour/tour-details-banner.webp") center/cover no-repeat;
}

.blog-hero-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 55px;
}

.blog-details-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-details-header h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 18px 0;
}

.blog-details-header p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
}

.blog-details-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.blog-details-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    font-weight: 600;
}

.blog-details-meta i {
    color: var(--web-secondary);
}


/*==================================================
Cover Image
==================================================*/
.blog-cover-section {
    margin-top: 70px;
    position: relative;
    z-index: 5;
}

.blog-cover-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}

.blog-cover-image img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
    transition: .7s;
}

.blog-cover-image:hover img {
    transform: scale(1.05);
}


/*==================================================
Article Section
==================================================*/

.blog-article-section {
    padding: 80px 0;
}

.blog-article {
    max-width: 860px;
    margin: 0 auto;
    color: #444;
    font-size: 18px;
    line-height: 2;
}

.blog-article>*:first-child {
    margin-top: 0;
}

.blog-article h2 {
    font-size: 38px;
    color: #222;
    font-weight: 800;
    margin: 55px 0 22px;
    line-height: 1.3;
}

.blog-article h3 {
    font-size: 30px;
    color: #222;
    margin: 45px 0 18px;
    font-weight: 700;
}

.blog-article h4 {
    font-size: 24px;
    color: #222;
    margin: 35px 0 15px;
}

.blog-article p {
    margin-bottom: 26px;
    color: #555;
}

.blog-article strong {
    color: #222;
    font-weight: 700;
}

.blog-article img {
    width: 100%;
    border-radius: 24px;
    margin: 45px 0;
    display: block;
}

.blog-article ul {
    margin: 25px 0 35px 22px;
}

.blog-article ol {
    margin: 25px 0 35px 22px;
}

.blog-article li {
    margin-bottom: 14px;
}

.blog-article blockquote {
    position: relative;
    margin: 45px 0;
    padding: 35px 40px;
    border-left: 5px solid var(--web-secondary);
    background: #f8fafc;
    border-radius: 18px;
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #222;
}

.blog-article table {
    width: 100%;
    margin: 40px 0;
    border-collapse: collapse;
}

.blog-article table th {
    background: #0c233c;
    color: #fff;
    padding: 16px;
}

.blog-article table td {
    padding: 16px;
    border: 1px solid #ececec;
}

.blog-article a {
    color: var(--web-secondary);
    font-weight: 600;
}

.blog-article hr {
    margin: 60px 0;
    border: none;
    border-top: 1px solid #eee;
}


/*==================================================
Responsive
==================================================*/
@media(max-width:991px) {
    .blog-details-header h1 {
        font-size: 46px;
    }

    .blog-cover-image img {
        aspect-ratio: 16/9;
    }
}

@media(max-width:767px) {
    .blog-details-hero {
        padding: 110px 0 70px;
    }

    .blog-hero-top {
        justify-content: center;
        margin-bottom: 30px;
    }

    .blog-details-header h1 {
        font-size: 34px;
    }

    .blog-details-header p {
        font-size: 16px;
    }

    .blog-details-meta {
        gap: 18px;
    }

    .blog-cover-section {
        margin-top: -35px;
    }

    .blog-cover-image {
        border-radius: 18px;
    }

    .blog-article-section {
        padding: 55px 0;
    }

    .blog-article {
        font-size: 16px;
        line-height: 1.9;
    }

    .blog-article h2 {
        font-size: 28px;
    }

    .blog-article h3 {
        font-size: 24px;
    }

    .blog-article blockquote {
        padding: 25px;
        font-size: 18px;
    }
}

/*==================================================
Share Section
==================================================*/
.blog-share-section {
    padding: 0 0 90px;
}

.blog-share-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 35px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-tags span {
    padding: 10px 18px;
    background: #f6f8fb;
    border-radius: 40px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
    cursor: pointer;
}

.blog-tags span:hover {
    background: var(--web-secondary);
    color: #fff;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog-share>span {
    color: #555;
    font-weight: 600;
}

.blog-share a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f6f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #444;
    transition: .35s;
}

.blog-share a:hover {
    background: var(--web-secondary);
    color: #fff;
    transform: translateY(-4px);
}

/*==================================================
Related Blogs
==================================================*/
.related-blog-section {
    padding: 0 0 90px;
}

.related-blog-section .swiper {
    overflow: visible;
    padding: 15px 0 40px;
}

.related-blog-section .swiper-slide {
    height: auto;
}

.related-blog-section .blog-card {
    height: 100%;
}

.related-blog-section .blog-card-image {
    display: block;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.related-blog-section .blog-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: .7s;
}

.related-blog-section .blog-card:hover img {
    transform: scale(1.08);
}

.related-blog-section .blog-card-content {
    padding: 24px;
}

.related-blog-section .blog-card h3 {
    font-size: 22px;
    margin: 15px 0;
    line-height: 1.4;
}

.related-blog-section .blog-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.related-blog-section .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--web-secondary);
    font-weight: 700;
    transition: .35s;
}

.related-blog-section .blog-read-more:hover {
    gap: 14px;
}


/*==================================================
Swiper Navigation
==================================================*/

.related-blog-section .swiper-button-next,
.related-blog-section .swiper-button-prev {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
    color: #222;
    transition: .35s;
}

.related-blog-section .swiper-button-next:hover .related-blog-section .swiper-button-prev:hover {
    background: var(--web-secondary);
    color: #fff;
}

.related-blog-section .swiper-button-next:after,
.related-blog-section .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}


/*==================================================
Bottom CTA
==================================================*/
.blog-cta-section {
    padding-bottom: 100px;
}

.blog-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2238, #173c61);
    border-radius: 30px;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.blog-cta::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    right: -120px;
    top: -120px;
}

.blog-cta>* {
    position: relative;
    z-index: 2;
}

.blog-cta h2 {
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
}

.blog-cta p {
    color: rgba(255, 255, 255, .80);
    line-height: 1.8;
    max-width: 560px;
    margin: 0;
}

.blog-cta .campaign-btn {
    flex-shrink: 0;
}


/*==================================================
Responsive
==================================================*/
@media(max-width:991px) {
    .blog-share-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-cta {
        flex-direction: column;
        text-align: center;
        padding: 45px;
    }
}

@media(max-width:767px) {
    .blog-share-section {
        padding-bottom: 60px;
    }

    .blog-share-wrapper {
        gap: 25px;
    }

    .blog-share {
        flex-wrap: wrap;
    }

    .related-blog-section {
        padding-bottom: 70px;
    }

    .blog-cta {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .blog-cta h2 {
        font-size: 30px;
    }

    .blog-cta-section {
        padding-bottom: 70px;
    }
}


/*==================================================
ABOUT HERO
==================================================*/
.about-hero-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
    background: url("../../../images/tour/tour-details-banner.webp") center/cover no-repeat;
}

.about-hero-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 55px;
}

.about-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 18px 0;
}

.about-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
}

/*==================================================
OUR STORY
==================================================*/
.about-story-section {
    padding: 50px 0;
}

.about-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-story-images img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.about-story-images img {
    height: 100%;
}

.about-story-content h2 {
    font-size: 40px;
    margin: 18px 0 25px;
    line-height: 1.25;
}

.about-story-content h3 {
    font-size: 28px;
    margin: 18px 0 25px;
    line-height: 1.25;
}

.about-story-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0 45px;
}

.about-check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
}

.about-check-list i {
    color: var(--web-secondary);
    font-size: 18px;
}


/*==================================================
WHAT WE DO
==================================================*/
.about-services-section {
    padding: 70px 0;
    background: #f8fafc;
}

.about-services-section .section-heading p {
    max-width: 700px;
    margin: 15px auto 0;
    color: #555;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: 0.35s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border-color: #eee;
}

.service-card i {
    font-size: 42px;
    color: var(--web-secondary);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/*==================================================
OUR COMMITMENT
==================================================*/
.about-commitment-section {
    padding: 70px 0;
}

.commitment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-content h2 {
    font-size: 38px;
    margin: 15px 0 20px;
}

.commitment-content > p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.commitment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.commitment-item {
    display: flex;
    gap: 15px;
}

.commitment-icon {
    width: 45px;
    height: 45px;
    background: #f0f7ff;
    color: var(--web-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.commitment-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.commitment-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.commitment-image {
    height: 100%;
}

.commitment-card-bg {
    background: url("../../../images/tour/tour-details-banner.webp") center/cover no-repeat;
    border-radius: 24px;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.commitment-card-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.commitment-card-bg h3, .commitment-card-bg p {
    position: relative;
    z-index: 2;
    color: #fff;
}

.commitment-card-bg h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

/*==================================================
OUR TRACK RECORD & PROMISE
==================================================*/
.about-promise-section {
    padding: 0 0 70px;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promise-card {
    background: #fff;
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.promise-card.highlight-card {
    background: linear-gradient(135deg, #0d2238, #173c61);
}

.promise-card h2 {
    font-size: 36px;
    margin: 15px 0 20px;
}

.promise-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.promise-card.highlight-card p {
    color: rgba(255,255,255,0.85);
}

.promise-card.highlight-card h4 {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 30px;
}

/*==================================================
Responsive Added
==================================================*/
@media(max-width: 1199px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .commitment-wrapper { grid-template-columns: 1fr; }
    .promise-grid { grid-template-columns: 1fr; }
}
@media(max-width: 767px) {
    .services-grid { grid-template-columns: 1fr; }
    .commitment-list { grid-template-columns: 1fr; }
    .promise-card { padding: 40px 30px; }
}

/*==================================================
COMPANY STAT
==================================================*/
.company-stats-section {
    padding-bottom: 100px;
}

.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    border-radius: 22px;
    text-align: center;
    padding: 45px 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);
    transition: .35s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .10);
}

.stat-card h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--web-secondary);
    margin-bottom: 12px;
}

.stat-card span {
    color: #666;
    font-weight: 600;
}

/*==================================================
Responsive
==================================================*/
@media(max-width:1199px) {
    .about-story-wrapper {
        gap: 45px;
    }
}

@media(max-width:991px) {
    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-story-wrapper {
        grid-template-columns: 1fr;
    }

    .about-story-images {
        max-width: 650px;
        margin: auto;
    }

    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:767px) {
    .about-hero-section {
        padding: 110px 0 70px;
    }

    .about-hero-top {
        justify-content: center;
        margin-bottom: 35px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-story-section {
        padding: 70px 0;
    }

    .about-story-images {
        grid-template-columns: 1fr;
    }

    .about-story-images img:first-child {
        height: 320px;
    }

    .about-story-images img:last-child {
        height: 220px;
        margin: 0;
    }

    .about-story-content h2 {
        font-size: 32px;
    }

    .about-check-list {
        grid-template-columns: 1fr;
    }

    .company-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-card h2 {
        font-size: 38px;
    }
}

/*==================================================
WHY CHOOSE US
==================================================*/
.about-why-section {
    padding: 0 0 50px 0;
    background: #f8fafc;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}

.about-feature-card i {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    background: rgba(255, 140, 0, .08);
    color: var(--web-secondary);
    font-size: 28px;
    margin-bottom: 22px;
}

.about-feature-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.about-feature-card p {
    color: #666;
    line-height: 1.8;
}

/*==================================================
TIMELINE
==================================================*/
.about-timeline-section {
    padding: 50px 0 50px 0;
}

.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    position: relative;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 42px;
    height: 3px;
    background: #ececec;
}

.timeline-item {
    position: relative;
    text-align: center;
    width: 20%;
}

.timeline-item::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--web-secondary);
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, .20);
}

.timeline-item span {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: var(--web-secondary);
    margin-bottom: 55px;
}

.timeline-item h4 {
    font-size: 18px;
    margin-top: 25px;
}

/*==================================================
TEAM
==================================================*/
.about-team-section {
    padding: 50px 0 50px 0;
    background: #f8fafc;
}

.about-team {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    transition: .35s;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    width: calc((100% - 90px) / 4);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    object-fit: cover;
}

.team-card h4 {
    margin-top: 25px;
    font-size: 22px;
}

.team-card span {
    display: block;
    color: #777;
    margin: 10px 0 25px;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 30px;
}

.team-card .team-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: .35s;
}

.team-card .team-social a:hover {
    background: var(--web-secondary);
    color: #fff;
}

@media (max-width: 1024px) {
    .team-card {
        /* 100% minus 1 gap of 30px divided by 2 */
        width: calc((100% - 30px) / 2);
    }
}

/* Mobile Devices: 1 card per row */
@media (max-width: 600px) {
    .team-card {
        width: 100%;
    }
}

/*==================================================
GALLERY
==================================================*/
.about-gallery-section {
    padding: 50px 0 50px 0;
}

.gallery-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 22px;
    position: relative;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/*=================================================
Responsiv
==================================================*/
@media(max-width:991px) {
    .about-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .timeline-wrapper::before {
        display: none;
    }

    .timeline-item {
        width: 45%;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-item span {
        margin-bottom: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:767px) {

    .about-why-section,
    .about-timeline-section,
    .about-team-section,
    .about-gallery-section {
        padding: 70px 0;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .timeline-item {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-row: auto;
    }
}

/*==================================================
DIRECTORs
==================================================*/
/* .directors-section{
    padding:50px 0 50px 0;
    background:#fff;
}
.directors-section .section-heading{
    max-width:760px;
    margin:0 auto 80px;
}
.director-row{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:80px;
    margin-bottom:100px;
    position:relative;
}
.director-row:last-child{
    margin-bottom:0;
}
.director-row.reverse{
    grid-template-columns:.9fr 1.1fr;
}
.director-row.reverse .director-content{
    order:2;
}
.director-row.reverse .director-image{
    order:1;
}
.director-content{
    position:relative;
}
.director-content::before{
    content:"";
    position:absolute;
    left:-30px;
    top:0;
    width:4px;
    height:90px;
    border-radius:20px;
    background:var(--web-secondary);
}
.director-position{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,140,0,.10);
    color:var(--web-secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:22px;
}
.director-content h3{
    font-size:44px;
    line-height:1.15;
    font-weight:800;
    color:#1b2430;
    margin-bottom:25px;
}
.director-content p{
    color:#5d6674;
    font-size:16px;
    text-align:justify;
}
.director-image{
    position:relative;
}
.director-image img{
    width:100%;
    max-width:500px;
    display:block;
    margin:auto;
    border-radius:28px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
    transition:.45s;
}
.director-image:hover img{
    transform:translateY(-10px);
}
.director-image::after{
    content:"";
    position:absolute;
    right:-18px;
    bottom:-18px;
    width:120px;
    height:120px;
    border-radius:24px;
    background:rgba(255,140,0,.08);
    z-index:-1;
}
.director-row.reverse .director-image::after{
    left:-18px;
    right:auto;
}

.director-row:not(:last-child)::after{
    content:"";
    position:absolute;
    bottom:-50px;
    left:15%;
    width:70%;
    height:1px;
    background:#eceff3;
} */

/*==================================================
Responsive
==================================================*/
/* @media(max-width:1199px){
    .director-row{
        gap:50px;
    }
    .director-content h3{
        font-size:38px;
    }
}
@media(max-width:991px){
    .director-row,
    .director-row.reverse{
        grid-template-columns:1fr;
        gap:40px;
    }
    .director-row.reverse .director-content,
    .director-row.reverse .director-image{
        order:unset;
    }
    .director-content{
        text-align:center;
    }
    .director-content::before{
        display:none;
    }
    .director-content p{
        text-align:left;
    }
    .director-image img{
        max-width:420px;
    }
    .director-row::after{
        width:100%;
        left:0;
    }
}

@media(max-width:767px){
    .directors-section{
        padding:70px 0;
    }
    .directors-section .section-heading{
        margin-bottom:50px;
    }
    .director-row{
        margin-bottom:70px;
    }
    .director-content h3{
        font-size:30px;
    }
    .director-content p{
        font-size:15px;
        line-height:1.9;
    }
    .director-image img{
        border-radius:20px;
    }
    .director-image::after{
        display:none;
    }
} */


/*=============================
DIRECTORS
==============================*/

.director-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin: 20px 0;

}

.director-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

    transition: .35s;

}

.director-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);

}

.director-image {

    height: 340px;

    overflow: hidden;

}

.director-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.director-card:hover img {

    transform: scale(1.06);

}

.director-body {

    padding: 20px 20px;

}

.director-position {

    display: inline-block;

    background: #eef7ff;

    color: var(--web-primary);

    padding: 7px 18px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}

.director-body h3 {
    margin: 10px;
    font-size: 22px;
    font-weight: 600;
}

.director-short {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.director-btn {
    border: none;
    background: var(--web-secondary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    transition: .3s;
}

.director-btn:hover {

    transform: translateY(-3px);

}

.modal-header {
    padding: 20px 0 0 20px;
}

.modal-header .close {
    margin: 20px;
}

/*=============================
MODAL
==============================*/



@media(max-width:1200px) {

    .director-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {
    .director-grid {
        grid-template-columns: 1fr;
    }

    .director-modal {
        grid-template-columns: 1fr;

    }

}

/*==================================================
CONTACT HERO
==================================================*/
.contact-hero-section {
    padding: 130px 0 90px;
    background: url("../../../images/tour/tour-details-banner.webp") center/cover;
}

.contact-hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.contact-hero-content {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-breadcrumb a {
    color: #fff;
    opacity: .75;
    text-decoration: none;
    transition: .3s;
}

.contact-breadcrumb span {
    color: #fff;
    opacity: .75;
}

.contact-hero-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-hero-content h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.8;
}

/*==================================================
CONTACT MAIN
==================================================*/
.contact-main-section {
    padding: 50px 0 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin: 15px 0 20px;
    font-size: 40px;
}

.contact-info>p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 140, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--web-secondary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h5 {
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 700;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/*==================================================
FORM
==================================================*/
.contact-form-card {
    background: #fff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.contact-form-card h3 {
    margin-bottom: 30px;
    font-size: 30px;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card .form-control {
    height: 56px;
    border-radius: 14px;
    border: 1px solid #e7e7e7;
    padding: 0 18px;
    box-shadow: none;
    transition: .3s;
}

.contact-form-card textarea.form-control {
    height: auto;
    padding-top: 16px;
    resize: none;
}

.contact-form-card .form-control:focus {
    border-color: var(--web-secondary);
    box-shadow: none;
}

.btn-primary-theme {
    height: 56px;
    padding: 0 35px;
    border: none;
    border-radius: 50px;
    background: var(--web-secondary);
    color: #fff;
    font-weight: 600;
    transition: .35s;
}

.btn-primary-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

/*==================================================
MAP
==================================================*/
.contact-map-section {
    padding-bottom: 100px;
}

.contact-map-section iframe {
    width: 100%;
    height: 480px;
    border: 0;
    border-radius: 28px;
}

/*==================================================
Responsive
==================================================*/
@media(max-width:1199px) {
    .contact-wrapper {
        grid-template-columns: 360px 1fr;
        gap: 40px;
    }
}

@media(max-width:991px) {
    .contact-hero-content h1 {
        font-size: 46px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .contact-hero-section {
        padding: 100px 0 70px;
    }

    .contact-hero-content h1 {
        font-size: 34px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-main-section {
        padding: 0;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-map-section {
        padding-bottom: 70px;
    }

    .contact-map-section iframe {
        height: 320px;
        border-radius: 18px;
    }
}

/*====================================================
TOUR DETAILS HERO
====================================================*/

.td-hero-section {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
}

.td-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("../../../images/tour/tour-details-banner.webp") center/cover no-repeat;
}

.td-hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

/*====================================================
Breadcrumb
====================================================*/

.td-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}

.td-breadcrumb li {
    color: #fff;
    font-size: 14px;
}

.td-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    opacity: .5;
}

.td-breadcrumb a {
    color: #fff;
    opacity: .75;
    text-decoration: none;
}

.td-breadcrumb a:hover {
    opacity: 1;
}

/*====================================================
Hero Grid
====================================================*/

.td-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: center;
}

/*====================================================
Left
====================================================*/

.td-tour-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.td-tour-badge i {
    color: var(--web-secondary);
}

.td-hero-left h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
}

.td-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.td-tour-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    padding: 11px 18px;
    border-radius: 40px;
    font-size: 14px;
}

.td-tour-meta i {
    color: var(--web-secondary);
}

/*====================================================
Right
====================================================*/

.td-tour-short-desc {
    color: rgba(255, 255, 255, .88);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 35px;
}

.td-tour-price small {
    color: rgba(255, 255, 255, .7);
    display: block;
    margin-bottom: 6px;
}

.td-tour-price h2 {
    color: #fff;
    font-size: 36px;
    margin: 0 0 35px;
    font-weight: 800;
}

.td-hero-btns {
    display: flex;
    gap: 16px;
}

.td-btn-primary,
.td-btn-outline {
    height: 54px;
    padding: 0 32px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .35s;
}

.td-btn-primary {
    background: var(--web-secondary);
    color: #fff;
}

.td-btn-outline {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.td-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.td-btn-outline:hover {
    background: #fff;
    color: #222;
}

/* ==========================================================
   WRITE REVIEW FORM
========================================================== */

.td-review-form-card {
    margin-top: 30px;
}

.td-review-form-intro {
    margin-top: 8px;
    max-width: 650px;
    color: #68707a;
    font-size: 15px;
    line-height: 1.7;
}


/* FORM GRID */

.td-review-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}


.td-review-field {
    display: flex;
    flex-direction: column;
}


.td-review-field-full {
    margin-top: 22px;
}


.td-review-field label,
.td-review-label {
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #252a30;
}


.td-review-field label span,
.td-review-label span {
    color: #e4572e;
}


.td-review-field .form-control {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    background: #fafafa;
    color: #222;
    font-size: 14px;
    outline: none;
    transition: all .25s ease;
}


.td-review-field textarea.form-control {
    min-height: 150px;
    resize: vertical;
}


.td-review-field .form-control:focus {
    border-color: #f4a000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(244, 160, 0, .10);
}


/* SAVE DETAILS */

.td-review-save-details {
    margin-top: 18px;
}


.td-review-save-details label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}


.td-review-save-details input {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: #f4a000;
}


/* ==========================================================
   STAR RATING
========================================================== */

.td-review-rating-field {
    margin-top: 28px;
}


.td-star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: fit-content;
    margin-top: 7px;
}


.td-star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


.td-star-rating label {
    margin: 0 4px 0 0;
    cursor: pointer;
    font-size: 27px;
    color: #dfe3e7;
    transition: color .2s ease,
        transform .2s ease;
}


.td-star-rating label:hover {
    transform: scale(1.08);
}


.td-star-rating label i {
    font-style: normal;
}


/* Hover */

.td-star-rating label:hover,
.td-star-rating label:hover~label {
    color: #f4a000;
}


/* Selected */

.td-star-rating input:checked~label {
    color: #f4a000;
}


.td-star-rating input:checked~label i,
.td-star-rating label:hover i,
.td-star-rating label:hover~label i {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


.td-rating-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #9299a1;
}


/* ==========================================================
   REVIEW FOOTER
========================================================== */

.td-review-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #edf0f2;
}


.td-review-note {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #737b84;
    font-size: 13px;
    line-height: 1.5;
}


.td-review-note i {
    color: #f4a000;
    font-size: 16px;
}


.td-review-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    min-height: 50px;
    padding: 12px 22px;
    border: 0;
    border-radius: 7px;
    background: #f4a000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}


.td-review-submit:hover {
    background: #df9000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 160, 0, .20);
}


.td-review-submit i {
    font-size: 12px;
}


/* ==========================================================
   PARSLEY
========================================================== */

.td-review-form .parsley-errors-list {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    color: #e4572e;
    font-size: 12px;
}


.td-review-form .parsley-error {
    border-color: #e4572e !important;
    background: #fffafa !important;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .td-review-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .td-review-field-full {
        margin-top: 18px;
    }

    .td-review-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .td-review-note {
        align-items: flex-start;
    }

    .td-review-submit {
        width: 100%;
    }

    .td-star-rating label {
        font-size: 25px;
    }

}

/*===================================================
Responsive
====================================================*/

@media(max-width:1200px) {

    .td-hero-grid {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }

}

@media(max-width:991px) {

    .td-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .td-hero-section {
        padding: 70px 0 50px;
    }

    .td-hero-left h1 {
        font-size: 32px;
    }

    .td-tour-price h2 {
        font-size: 38px;
    }

    .td-hero-btns {
        flex-direction: column;
    }

    .td-btn-primary,
    .td-btn-outline {
        width: 100%;
    }

    .td-nav-wrapper {
        gap: 25px;
    }

}

/*==================================================
MAIN WRAPPER
==================================================*/

.td-tour-main-wrapper {

    padding: 70px 0;

    background: #f7f9fc;

}

.td-tour-main-layout {

    display: grid;

    grid-template-columns: minmax(0, 1fr) 370px;

    gap: 40px;

    align-items: start;

}

.td-tour-content {

    display: flex;

    flex-direction: column;

    gap: 35px;

}


/*==================================================
GALLERY CARD
==================================================*/

.td-gallery-card {

    background: #fff;

    border-radius: 24px;

    padding: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

}

.td-gallery-main {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

}

.tdMainGallerySwiper {

    width: 100%;

    height: 560px;

}

.tdMainGallerySwiper img {

    width: 100%;

    height: 560px;

    object-fit: cover;

    display: block;

}


/*==================================================
THUMBNAILS
==================================================*/

.tdThumbGallerySwiper {

    margin-top: 18px;

    overflow: hidden;

}

.tdThumbGallerySwiper .swiper-slide {

    height: 90px;

    border-radius: 12px;

    overflow: hidden;

    cursor: pointer;

    opacity: .45;

    transition: .35s;

}

.tdThumbGallerySwiper .swiper-slide-thumb-active {

    opacity: 1;

    border: 3px solid var(--web-secondary);

}

.tdThumbGallerySwiper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/*==================================================
VIEW BUTTON
==================================================*/

.td-gallery-view {

    position: absolute;

    right: 20px;

    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 50px;

    background: rgba(0, 0, 0, .65);

    color: #fff;

    text-decoration: none;

    backdrop-filter: blur(10px);

    z-index: 10;

}

.td-gallery-view:hover {

    background: var(--web-secondary);

    color: #fff;

}


/*==================================================
ARROWS
==================================================*/

.td-gallery-prev,
.td-gallery-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 20;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);

    transition: .3s;

}

.td-gallery-prev {

    left: 20px;

}

.td-gallery-next {

    right: 20px;

}

.td-gallery-prev:hover,
.td-gallery-next:hover {

    background: var(--web-secondary);

    color: #fff;

}


/*==================================================
SIDEBAR
==================================================*/

.td-sidebar {

    position: sticky;

    top: 100px;

    align-self: start;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .td-tour-main-layout {

        grid-template-columns: 1fr;

    }

    .td-sidebar {

        position: relative;

        top: auto;

    }

}

@media(max-width:768px) {

    .td-tour-main-wrapper {

        padding: 50px 0;

    }

    .td-gallery-card {

        padding: 12px;

    }

    .tdMainGallerySwiper {

        height: 280px;

    }

    .tdMainGallerySwiper img {

        height: 280px;

    }

    .tdThumbGallerySwiper .swiper-slide {

        height: 65px;

    }

}

/*==================================================
SIDEBAR
==================================================*/

.td-sidebar {

    position: sticky;

    top: 100px;

    align-self: start;

}

.td-sidebar-card {

    background: #fff;

    border-radius: 22px;

    padding: 30px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

    margin-bottom: 25px;

}

.td-sidebar-card:last-child {

    margin-bottom: 0;

}


/*==================================================
BOOKING
==================================================*/

.td-book-price {

    text-align: center;

    margin-bottom: 28px;

    padding-bottom: 25px;

    border-bottom: 1px solid #ececec;

}

.td-book-price span {

    display: block;

    font-size: 14px;

    color: #777;

    margin-bottom: 8px;

}

.td-book-price h2 {

    font-size: 42px;

    margin: 0;

    color: var(--web-secondary);

    font-weight: 800;

}

.td-book-price small {

    display: block;

    color: #999;

    margin-top: 8px;

}

.td-booking-card .form-group {

    margin-bottom: 16px;

}

.td-booking-card .form-control {

    width: 100%;

    height: 52px;

    border-radius: 12px;

    border: 1px solid #e8e8e8;

    padding: 0 16px;

    box-shadow: none;

}

.td-booking-card textarea.form-control {

    height: 110px;

    resize: none;

    padding-top: 14px;

}

.td-booking-card .form-control:focus {

    border-color: var(--web-secondary);

}

.td-book-btn {

    width: 100%;

    height: 55px;

    border: none;

    border-radius: 50px;

    background: var(--web-secondary);

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.td-book-btn:hover {

    transform: translateY(-2px);

}


/*==================================================
HELP
==================================================*/

.td-help-card h4 {

    font-size: 22px;

    margin-bottom: 10px;

}

.td-help-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 20px;

}

.td-help-phone,
.td-help-whatsapp {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    height: 50px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    margin-top: 12px;

    transition: .3s;

}

.td-help-phone {

    background: #f5f5f5;

    color: #222;

}

.td-help-phone:hover {

    background: var(--web-secondary);

    color: #fff;

}

.td-help-whatsapp {

    background: #25D366;

    color: #fff;

}

.td-help-whatsapp:hover {

    opacity: .9;

    color: #fff;

}


/*==================================================
NAVIGATION
==================================================*/

.td-tour-navigation h4 {

    margin-bottom: 20px;

}

.td-tour-navigation ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

.td-tour-navigation li {

    margin-bottom: 10px;

}

.td-tour-navigation li:last-child {

    margin-bottom: 0;

}

.td-tour-navigation a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 18px;

    border-radius: 12px;

    color: #333;

    text-decoration: none;

    transition: .3s;

    font-weight: 500;

}

.td-tour-navigation a::after {

    content: "›";

    font-size: 18px;

    opacity: .5;

}

.td-tour-navigation a:hover,

.td-tour-navigation a.active {

    background: var(--web-secondary);

    color: #fff;

}

.td-tour-navigation a.active::after,

.td-tour-navigation a:hover::after {

    opacity: 1;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .td-sidebar {

        position: relative;

        top: auto;

        margin-top: 35px;

    }

}


/*==================================================
COMMON TOUR CARD
==================================================*/

.td-tour-card {

    background: #fff;

    border-radius: 24px;

    padding: 40px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}


/*==================================================
HEADER
==================================================*/

.td-card-header {

    margin-bottom: 35px;

}

.td-card-header span {

    display: inline-block;

    color: var(--web-secondary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 10px;

}

.td-card-header h2 {

    margin: 0;

    font-size: 34px;

    font-weight: 800;

    color: #222;

}


/*==================================================
FACTS
==================================================*/

.td-overview-facts {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 40px;

}

.td-overview-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px;

    border-radius: 18px;

    background: #f8fafc;

    border: 1px solid #eef2f5;

}

.td-overview-icon {

    width: 58px;

    height: 58px;

    border-radius: 16px;

    background: rgba(243, 126, 32, .12);

    color: var(--web-secondary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;

}

.td-overview-item small {

    display: block;

    color: #888;

    font-size: 13px;

    margin-bottom: 6px;

}

.td-overview-item strong {

    color: #222;

    font-size: 16px;

    font-weight: 700;

}


/*==================================================
DESCRIPTION
==================================================*/

.td-overview-content {

    color: #5b6472;

    line-height: 2;

    font-size: 16px;

}

.td-overview-content p {

    margin-bottom: 18px;

}

.td-overview-content h2,
.td-overview-content h3,
.td-overview-content h4 {

    margin-top: 35px;

    margin-bottom: 18px;

    color: #222;

    font-weight: 700;

}

.td-overview-content img {

    max-width: 100%;

    border-radius: 18px;

    margin: 30px 0;

}

.td-overview-content ul {

    margin: 25px 0;

    padding-left: 22px;

}

.td-overview-content li {

    margin-bottom: 12px;

}

.td-overview-content table {

    width: 100%;

    border-collapse: collapse;

    margin-top: 30px;

}

.td-overview-content table td,

.td-overview-content table th {

    border: 1px solid #eee;

    padding: 14px;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px) {

    .td-tour-card {

        padding: 24px;

        border-radius: 18px;

    }

    .td-card-header h2 {

        font-size: 28px;

    }

    .td-overview-facts {

        grid-template-columns: 1fr;

    }

}

/*==================================================
HIGHLIGHTS
==================================================*/

.td-highlight-grid {

    display: block;

}

.td-highlight-card {

    display: flex;
    gap: 18px;
    align-items: flex-start;
    /* padding: 10px; */
    /* border-radius: 18px; */
    /* background: #fff; */
    /* border: 1px solid #edf0f3; */
    padding: 0 0 20px 0;

}

.td-highlight-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

    border-color: var(--web-secondary);

}

.td-highlight-icon {
    width: 40px;
    height: 40px;
    color: var(--web-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.td-highlight-content {

    flex: 1;

}

.td-highlight-content h4 {

    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;

}

.td-highlight-content p {

    margin: 0;

    color: #64748b;

    line-height: 1.8;

    font-size: 15px;

}

.td-no-data {

    text-align: center;

    padding: 45px;

    background: #f8fafc;

    border-radius: 18px;

    color: #888;

    font-size: 16px;

}


/*==================================================
Responsive
==================================================*/



@media(max-width:767px) {

    .td-highlight-card {

        padding: 20px;

        gap: 15px;

    }

    .td-highlight-icon {

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

    .td-highlight-content h4 {

        font-size: 17px;

    }

}

/*==================================================
ITINERARY
==================================================*/

.td-itinerary-timeline {

    position: relative;

    padding: 20px 0;

}

/* Center Line */

.td-itinerary-timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 2px;

    background: #e8edf3;

    transform: translateX(-50%);

}

/* Progress */

.td-timeline-progress {

    position: absolute;

    left: 50%;

    top: 0;

    width: 3px;

    height: 0;

    background: var(--web-secondary);

    transform: translateX(-50%);

    z-index: 2;

}

/* Moving Dot */

.td-timeline-dot {

    position: absolute;

    left: 50%;

    top: 0;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: var(--web-secondary);

    border: 4px solid #fff;

    box-shadow: 0 0 15px rgba(0, 0, 0, .15);

    transform: translateX(-50%);

    z-index: 5;

}

/*==================================================
ITEM
==================================================*/

.td-itinerary-item {

    position: relative;

    width: 50%;

    padding: 0 35px;

    margin-bottom: -10px;

    opacity: .25;

    transition: .6s;

}

.td-itinerary-item.show {

    opacity: 1;

}

.td-itinerary-item.left {

    left: 0;

    transform: translate(-15px, -10px);

}

.td-itinerary-item.right {

    left: 50%;

    transform: translate(15px, 70px);

}

/*==================================================
CARD
==================================================*/

.td-itinerary-card {

    background: #fff;

    border: 1px solid #edf1f4;

    border-radius: 18px;

    padding: 24px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .35s;

}

.td-itinerary-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.td-itinerary-day {

    display: inline-flex;

    align-items: center;

    padding: 7px 18px;

    border-radius: 30px;

    background: var(--web-secondary);

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 16px;

}

.td-itinerary-card h4 {

    font-size: 20px;

    font-weight: 700;

    color: #222;

    margin-bottom: 14px;

}

.td-itinerary-description {

    color: #677281;

    line-height: 1.9;

    font-size: 15px;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:991px) {

    .td-itinerary-timeline::before,
    .td-timeline-progress,
    .td-timeline-dot {

        left: 18px;

    }

    .td-itinerary-item {

        width: 100%;

        left: 0 !important;

        transform: none !important;

        padding-left: 55px;

        padding-right: 0;

        margin-bottom: 25px;

    }

}

@media(max-width:767px) {

    .td-itinerary-card {

        padding: 20px;

    }

    .td-itinerary-card h4 {

        font-size: 18px;

    }

}


/*==================================================
INCLUSION / EXCLUSION
==================================================*/

.td-inc-exc-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}


/*==================================================
COMMON
==================================================*/

.td-include-box,
.td-exclude-box {

    border-radius: 20px;

    padding: 30px;

}

.td-inc-title {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 28px;

}

.td-inc-title i {

    font-size: 26px;

}


/*==================================================
INCLUDE
==================================================*/

.td-include-box {

    background: #f1fcf5;

    border: 1px solid #cfeeda;

}

.td-include-box .td-inc-title {

    color: #148a4c;

}


/*==================================================
EXCLUDE
==================================================*/

.td-exclude-box {

    background: #fff4f4;

    border: 1px solid #ffd6d6;

}

.td-exclude-box .td-inc-title {

    color: #d63d3d;

}


/*==================================================
LIST
==================================================*/

.td-include-box ul,
.td-exclude-box ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.td-include-box li,
.td-exclude-box li {

    position: relative;

    padding-left: 34px;

    margin-bottom: 18px;

    line-height: 1.8;

    color: #4f5b68;

}

.td-include-box li:last-child,
.td-exclude-box li:last-child {

    margin-bottom: 0;

}


/* Include icon */

.td-include-box li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 2px;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #16a34a;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    font-weight: 700;

}


/* Exclude icon */

.td-exclude-box li::before {

    content: "✕";

    position: absolute;

    left: 0;

    top: 2px;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #ef4444;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    font-weight: 700;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px) {

    .td-inc-exc-grid {

        grid-template-columns: 1fr;

    }

    .td-include-box,
    .td-exclude-box {

        padding: 22px;

    }

    .td-inc-title {

        font-size: 20px;

    }

}


/*==================================================
FAQ
==================================================*/

.td-faq-wrapper {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.td-faq-item {

    border: 1px solid #e9edf2;

    border-radius: 18px;

    overflow: hidden;

    transition: .35s;

    background: #fff;

}

.td-faq-item.active {

    border-color: var(--web-secondary);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

}

.td-faq-question {

    width: 100%;

    border: none;

    background: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 26px;

    cursor: pointer;

    font-size: 17px;

    font-weight: 600;

    color: #1b2430;

    transition: .35s;

    text-align: left;

}

.td-faq-question:hover {

    background: #fafafa;

}

.td-faq-question i {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: #f4f6f8;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

    color: #555;

    flex-shrink: 0;

}

.td-faq-item.active .td-faq-question {

    color: var(--web-secondary);

}

.td-faq-item.active .td-faq-question i {

    background: var(--web-secondary);

    color: #fff;

    transform: rotate(45deg);

}

.td-faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .45s ease;

}

.td-faq-answer div {

    padding: 0 26px 24px;

    color: #667085;

    line-height: 1.9;

    font-size: 15px;

}


/*==================================================
Responsive
==================================================*/

@media(max-width:768px) {

    .td-faq-question {

        padding: 18px;

        font-size: 16px;

    }

    .td-faq-answer div {

        padding: 0 18px 18px;

    }

}

/*==========================================
REVIEWS
==========================================*/

.td-review-list {

    display: flex;

    flex-direction: column;

    gap: 24px;

}

.td-review-item {

    border: 1px solid #edf1f5;

    border-radius: 18px;

    padding: 28px;

    transition: .35s;

}

.td-review-item:hover {

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

}

.td-review-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    gap: 20px;

}

.td-review-user {

    display: flex;

    align-items: center;

    gap: 16px;

}

.td-review-avatar {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: var(--web-secondary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 700;

}

.td-review-user h4 {

    margin: 0;

    font-size: 18px;

    font-weight: 700;

}

.td-review-user span {

    font-size: 13px;

    color: #8a8a8a;

}

.td-review-rating {

    color: #FFC107;

    font-size: 17px;

    display: flex;

    gap: 3px;

}

.td-review-comment {

    color: #606c7a;

    line-height: 1.9;

    font-size: 15px;

}

@media(max-width:768px) {

    .td-review-top {

        flex-direction: column;

        align-items: flex-start;

    }

}

/*==================================================
RELATED TOURS
==================================================*/

.td-related-section {
    padding: 90px 0;
    background: #f8fafc;
}

.tdRelatedTourSwiper {
    overflow: hidden;
    padding: 8px 5px 50px;
}

.td-related-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
    height: 100%;
}

.td-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

/* Image */

.td-related-image {
    display: block;
    position: relative;
    overflow: hidden;
}

.td-related-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}

.td-related-card:hover .td-related-image img {
    transform: scale(1.08);
}

/* Badge */

.td-related-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--web-secondary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

/* Content */

.td-related-content {
    padding: 24px;
}

.td-related-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
    margin-bottom: 12px;
}

.td-related-location i {
    color: var(--web-secondary);
}

.td-related-content h3 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.td-related-content h3 a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.td-related-content h3 a:hover {
    color: var(--web-secondary);
}

.td-related-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 22px;
    min-height: 82px;
}

/* Footer */

.td-related-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.td-related-price span {
    display: block;
    font-size: 13px;
    color: #888;
}

.td-related-price strong {
    font-size: 24px;
    color: var(--web-secondary);
    font-weight: 700;
}

.td-related-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--web-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .35s;
}

.td-related-btn::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.td-related-btn:hover {
    width: 120px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
}

.td-related-btn:hover::before {
    content: "Explore";
    font-family: inherit;
    font-weight: 600;
}

/* Swiper Buttons */

.tdRelatedTourSwiper .swiper-button-next,
.tdRelatedTourSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.tdRelatedTourSwiper .swiper-button-next:after,
.tdRelatedTourSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

/* Pagination */

.tdRelatedTourSwiper .swiper-pagination {
    bottom: 0 !important;
}

.tdRelatedTourSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.tdRelatedTourSwiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--web-secondary);
}

/* Responsive */

@media(max-width:991px) {

    .td-related-section {
        padding: 70px 0;
    }

    .td-related-image img {
        height: 220px;
    }

}

@media(max-width:767px) {

    .td-related-section {
        padding: 60px 0;
    }

    .td-related-content {
        padding: 18px;
    }

    .td-related-content h3 {
        font-size: 18px;
    }

    .td-related-content p {
        min-height: auto;
    }

    .td-related-image img {
        height: 210px;
    }

}


/* Plan Your Trip    */

/*==========================================================
PLANNER HERO
==========================================================*/

.planner-hero-section {

    position: relative;

    overflow: hidden;

    padding: 120px 0 90px;

    background: url(../../../images/tour/planmytrip.webp) center / cover;

}

.planner-hero-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(255, 255, 255, .12),
            transparent 45%),

        radial-gradient(circle at bottom left,
            rgba(255, 255, 255, .08),
            transparent 35%);

}

.planner-hero-wrapper {

    position: relative;
    padding-top: 20px;

    z-index: 2;

}

/*==========================================================
BREADCRUMB
==========================================================*/

.planner-hero-section .contact-breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 55px;

    font-size: 15px;

}

.planner-hero-section .contact-breadcrumb a {

    color: rgba(255, 255, 255, .75);

    text-decoration: none;

    transition: .3s;

}

.planner-hero-section .contact-breadcrumb a:hover {

    color: #fff;

}

.planner-hero-section .contact-breadcrumb span {

    color: rgba(255, 255, 255, .65);

}

/*==========================================================
CONTENT
==========================================================*/

.planner-hero-content {

    max-width: 760px;

}

.planner-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 28px;

}

.planner-badge::before {

    content: "";

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #fff;

}

.planner-hero-content h1 {

    font-size: 42px;

    font-weight: 800;

    color: #fff;

    line-height: 1.15;

    margin-bottom: 22px;

}

.planner-hero-content p {

    max-width: 620px;

    font-size: 18px;

    line-height: 2;

    color: rgba(255, 255, 255, .88);

    margin: 0;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:991px) {

    .planner-hero-section {

        padding: 90px 0 70px;

    }

    .planner-hero-content h1 {

        font-size: 48px;

    }

}

@media(max-width:767px) {

    .planner-hero-section {

        padding: 70px 0 55px;

    }

    .planner-hero-section .contact-breadcrumb {

        margin-bottom: 35px;

        font-size: 14px;

        flex-wrap: wrap;

    }

    .planner-hero-content h1 {

        font-size: 34px;

    }

    .planner-hero-content p {

        font-size: 15px;

        line-height: 1.9;

    }

    .planner-badge {

        font-size: 12px;

        padding: 8px 18px;

    }

}

/*=========================================================
PLANNER SECTION
=========================================================*/

.planner-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.planner-card {

    background: #fff;

    max-width: 1100px;

    margin: auto;

    border-radius: 28px;

    padding: 55px;

    box-shadow: 0 18px 60px rgba(0, 0, 0, .08);

    position: relative;

    overflow: hidden;

}


/*=========================================================
PROGRESS
=========================================================*/

.planner-progress {

    margin-bottom: 45px;

}

.planner-progress-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

}

.planner-step-text {

    font-size: 15px;

    color: #666;

    font-weight: 500;

}

.planner-step-text strong {

    color: var(--web-secondary);

    font-size: 18px;

    font-weight: 700;

}

.planner-progress-bar {

    width: 100%;

    height: 10px;

    background: #edf0f5;

    border-radius: 30px;

    overflow: hidden;

    position: relative;

}

.planner-progress-bar span {

    display: block;

    width: 50%;

    height: 100%;

    background: linear-gradient(90deg,
            var(--web-secondary),
            #ff9d2e);

    border-radius: 30px;

    transition: .45s ease;

}


/*=========================================================
STEPS
=========================================================*/

.planner-step {

    display: none;

    animation: plannerFade .45s ease;

}

.planner-step.active {

    display: block;

}

@keyframes plannerFade {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: none;

    }

}


/*=========================================================
HEADING
=========================================================*/

.planner-heading {

    margin-bottom: 40px;

}

.planner-heading span {

    display: inline-block;

    font-size: 13px;

    letter-spacing: 1px;

    font-weight: 700;

    color: var(--web-secondary);

    text-transform: uppercase;

    margin-bottom: 12px;

}

.planner-heading h2 {

    font-size: 28px;

    font-weight: 800;

    color: #1b2430;

    margin: 0;

    line-height: 1.2;

}

/*=========================================================
FORM LAYOUT
=========================================================*/

.planner-step .row {

    row-gap: 24px;

}

.planner-step .form-group {

    margin-bottom: 0;

    position: relative;

}


/*=========================================================
LABELS
=========================================================*/

.planner-step label {

    display: block;

    font-size: 14px;

    font-weight: 600;

    color: #2d3748;

    margin: 10px 0px;

}


/*=========================================================
FORM CONTROLS
=========================================================*/

.planner-step .form-control {

    width: 100%;

    height: 50px;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    background: #fff;

    padding: 0 18px;

    font-size: 15px;

    color: #2d3748;

    box-shadow: none;

    transition: .35s;

}

.planner-step textarea.form-control {

    height: 150px;

    padding: 18px;

    resize: none;

}


/*=========================================================
PLACEHOLDER
=========================================================*/

.planner-step .form-control::placeholder {

    color: #a0aec0;

    font-size: 14px;

}


/*=========================================================
FOCUS
=========================================================*/

.planner-step .form-control:focus {

    border-color: var(--web-secondary);

    box-shadow: 0 0 0 4px rgba(255, 145, 0, .10);

    outline: none;

}


/*=========================================================
SELECT
=========================================================*/

.planner-step select.form-control {

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

    cursor: pointer;

    padding-right: 50px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 18px center;

    background-size: 16px;

}


/*=========================================================
NUMBER INPUT
=========================================================*/

.planner-step input[type="number"] {

    text-align: center;

}


/*=========================================================
MONTH INPUT
=========================================================*/

.planner-step input[type="month"] {

    cursor: pointer;

}


/*=========================================================
READONLY / DISABLED
=========================================================*/

.planner-step .form-control:disabled {

    background: #f7f7f7;

    cursor: not-allowed;

}


/*=========================================================
FIELD HOVER
=========================================================*/

.planner-step .form-control:hover {

    border-color: #d2d7df;

}


/*=========================================================
TEXTAREA
=========================================================*/

.planner-step textarea {

    line-height: 1.8;

}


/*=========================================================
FORM GRID SPACING
=========================================================*/

.planner-step .col-md-12 {

    margin-top: 2px;

}



/*=========================================================
TRAVELLER SECTION
=========================================================*/

.planner-traveller {

    margin-top: 20px;

}

.planner-traveller h4 {

    font-size: 24px;

    font-weight: 700;

    color: #1f2937;

    margin-bottom: 22px;

}


/*=========================================================
GRID
=========================================================*/

.planner-traveller-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}


/*=========================================================
OPTION
=========================================================*/

.planner-option {

    display: block;

    cursor: pointer;

    margin: 0;

}

.planner-option input {

    display: none;

}


/*=========================================================
CARD
=========================================================*/

.planner-option div {

    position: relative;

    background: #fff;

    border: 2px solid #edf0f5;

    border-radius: 20px;

    padding: 28px 15px;

    text-align: center;

    font-size: 40px;

    transition: .35s;

    overflow: hidden;

    min-height: 160px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}

.planner-option div:hover {

    transform: translateY(-6px);

    border-color: var(--web-secondary);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}


/*=========================================================
TEXT
=========================================================*/

.planner-option span {

    display: block;

    margin-top: 16px;

    font-size: 17px;

    font-weight: 700;

    color: #1f2937;

}


/*=========================================================
SELECTED
=========================================================*/

.planner-option input:checked+div {

    background: #fff8ef;

    border-color: var(--web-secondary);

    box-shadow: 0 20px 45px rgba(255, 145, 0, .16);

    transform: translateY(-4px);

}


/*=========================================================
CHECK ICON
=========================================================*/

.planner-option div::after {

    content: "✓";

    position: absolute;

    top: 14px;

    right: 14px;

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: var(--web-secondary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 700;

    opacity: 0;

    transform: scale(.5);

    transition: .35s;

}

.planner-option input:checked+div::after {

    opacity: 1;

    transform: scale(1);

}


/*=========================================================
FOOTER
=========================================================*/

.planner-footer {

    display: flex;

    justify-content: flex-end;

    margin-top: 45px;

}


/*=========================================================
NEXT BUTTON
=========================================================*/

.planner-next {

    border: none;

    background: var(--web-secondary);

    color: #fff;

    height: 56px;

    padding: 0 38px;

    border-radius: 60px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

}

.planner-next:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(255, 145, 0, .30);

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .planner-traveller-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .planner-traveller-grid {

        grid-template-columns: 1fr;

    }

    .planner-option div {

        min-height: 120px;

        font-size: 34px;

    }

}

/*=========================================================
PLANNER BOX
=========================================================*/

.planner-box {

    margin-top: 40px;

    padding: 32px;

    background: #fafbfd;

    border: 1px solid #eef2f7;

    border-radius: 22px;

}

.planner-box h4 {

    margin: 0 0 24px;

    font-size: 24px;

    font-weight: 700;

    color: #1f2937;

}

.planner-box-title {

    font-size: 20px;

    font-weight: 700;

    margin: 18px 0;

    color: #1f2937;

}


/*=========================================================
TOUR TYPE PILLS
=========================================================*/

.planner-pill-group {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 25px;

}

.planner-pill {

    cursor: pointer;

}

.planner-pill input {

    display: none;

}

.planner-pill span {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 200px;

    height: 60px;

    border-radius: 60px;

    border: 2px solid #edf0f5;

    background: #fff;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.planner-pill input:checked+span {

    background: var(--web-secondary);

    color: #fff;

    border-color: var(--web-secondary);

    box-shadow: 0 15px 35px rgba(255, 145, 0, .20);

}

.planner-pill span:hover {

    border-color: var(--web-secondary);

}


/*=========================================================
BUDGET GRID
=========================================================*/

.planner-budget-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 18px;

}

.planner-budget {

    cursor: pointer;

}

.planner-budget input {

    display: none;

}

.planner-budget span {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 75px;

    border: 2px solid #edf0f5;

    border-radius: 18px;

    background: #fff;

    text-align: center;

    font-weight: 600;

    transition: .35s;

    padding: 15px;

}

.planner-budget span:hover {

    transform: translateY(-5px);

    border-color: var(--web-secondary);

}

.planner-budget input:checked+span {

    background: #fff8ef;

    border-color: var(--web-secondary);

    color: var(--web-secondary);

    box-shadow: 0 18px 40px rgba(255, 145, 0, .16);

}


/*=========================================================
EXPERIENCE CHIPS
=========================================================*/

.planner-chip-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}

.planner-chip {

    cursor: pointer;

}

.planner-chip input {

    display: none;

}

.planner-chip span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 22px;

    border-radius: 60px;

    background: #fff;

    border: 2px solid #edf0f5;

    font-weight: 600;

    transition: .30s;

}

.planner-chip span:hover {

    border-color: var(--web-secondary);

}

.planner-chip input:checked+span {

    background: var(--web-secondary);

    color: #fff;

    border-color: var(--web-secondary);

}


/*=========================================================
BUTTONS
=========================================================*/

.planner-footer {

    display: flex;

    align-items: center;
    gap: 20px;
    margin-top: 45px;

}

.planner-prev {

    border: 2px solid var(--web-secondary);

    background: #fff;

    color: var(--web-secondary);

    height: 56px;

    padding: 0 35px;

    border-radius: 60px;

    font-weight: 700;

    transition: .35s;

}

.planner-prev:hover {

    background: var(--web-secondary);

    color: #fff;

}

.planner-submit {

    border: none;

    background: linear-gradient(135deg, var(--web-secondary), #ff9d2e);

    color: #fff;

    height: 58px;

    padding: 0 45px;

    border-radius: 60px;

    font-size: 17px;

    font-weight: 700;

    transition: .35s;

    box-shadow: 0 18px 40px rgba(255, 145, 0, .25);

}

.planner-submit:hover {

    transform: translateY(-3px);

    box-shadow: 0 24px 45px rgba(255, 145, 0, .35);

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .planner-pill-group {

        flex-direction: column;

    }

    .planner-pill span {

        width: 100%;

    }

    .planner-footer {

        flex-direction: column;

        gap: 15px;

    }

    .planner-prev,

    .planner-submit {

        width: 100%;

    }

}

.travel-swal-popup {
    border-radius: 24px;
    padding: 35px;
}

.travel-swal-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
}

.travel-success-popup {
    text-align: center;
}

.travel-success-popup p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.travel-success-text {
    font-size: 18px !important;
    color: #222 !important;
}

.travel-success-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #FFF8E7;

    border: 1px solid #FFD66B;

    padding: 18px;

    border-radius: 16px;

    margin: 25px 0;
}

.travel-success-box i {
    font-size: 24px;
    color: #f59e0b;
}

.travel-success-footer {
    font-weight: 600;
    color: #111 !important;
}

.travel-swal-btn {
    padding: 14px 40px !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}


/* Footer section */

/*====================================
Footer CTA
====================================*/

.footer-cta {

    background: linear-gradient(135deg, var(--web-primary), #01344d);

    padding: 5rem 0;

}

.footer-cta-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    flex-wrap: wrap;

}

.footer-cta-content {

    flex: 1;

    min-width: 300px;

}

.footer-badge {

    display: inline-flex;

    align-items: center;

    padding: .65rem 1.2rem;

    border-radius: 50px;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 18px;

}

.footer-cta-content h2 {

    color: #fff;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;

    margin-bottom: 15px;

}

.footer-cta-content p {

    color: rgba(255, 255, 255, .85);

    max-width: 650px;

    margin: 0;

}

.footer-cta-action {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}

.btn-cta-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 1rem 2rem;

    border-radius: 50px;

    background: var(--web-secondary);

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.btn-cta-primary:hover {

    background: #fff;

    color: var(--web-primary);

}

.btn-cta-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 1rem 2rem;

    border-radius: 50px;

    border: 2px solid rgba(255, 255, 255, .5);

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.btn-cta-outline:hover {

    background: #fff;

    color: var(--web-primary);

}

@media(max-width:768px) {

    .footer-cta {

        padding: 4rem 0;

    }

    .footer-cta-wrapper {

        justify-content: center;

        text-align: center;

    }

    .footer-cta-content {

        min-width: 100%;

    }

    .footer-cta-action {

        justify-content: center;

        width: 100%;

    }

    .footer-cta-action .btn {

        flex: 1;

        min-width: 170px;

    }

}

/*=========================================
Main Footer
=========================================*/

.site-footer {

    background: url(../../../images/footer-bg.webp) center;

    color: #d7dee5;

    padding: 5rem 0 0 0;

}

.footer-widget {

    display: flex;

    flex-direction: column;
    gap: 10px;

}

.footer-title {

    color: #fff;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 1.5rem;

}

.footer-widget h4.footer-title {

    font-size: 18px;

}

.footer-about {

    margin-bottom: 2rem;

    color: #c6d0d9;

    line-height: 1.8;

}

.footer-features {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 20px;

}

.footer-feature {

    display: flex;

    align-items: center;

    gap: 12px;

}

.footer-feature i {

    color: var(--web-secondary);

    font-size: 15px;

}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer-links li {

    margin: 0;

}

.footer-links a {

    color: #d7dee5;

    transition: .3s;

    display: inline-flex;

    align-items: center;

}

.footer-links a::before {

    content: "›";

    margin-right: 10px;

    color: var(--web-secondary);

    transition: .3s;

}

.footer-links a:hover {

    color: #fff;

    transform: translateX(5px);

}

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 14px;

}

.footer-contact i {

    width: 18px;

    color: var(--web-secondary);

    margin-top: 3px;

}

.footer-contact a {

    color: #d7dee5;

}

.footer-contact a:hover {

    color: #fff;

}

/*=========================================
Footer Bottom
=========================================*/

.footer-bottom {

    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background-color: white;

}

.footer-bottom-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    flex-wrap: wrap;

}

.footer-copyright {

    color: #aeb9c5;

    font-size: 14px;

}

.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;

}

.footer-bottom-links a {

    color: #c9d2da;

    font-size: 14px;

    transition: .3s;

}

.footer-bottom-links a:hover {

    color: var(--web-secondary);

}

.footer-social {

    display: flex;

    align-items: center;

    gap: 12px;

}

.footer-social a {

    width: 42px;

    aspect-ratio: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    color: #c9d2da;

    transition: .3s;

}

.footer-social a:hover {

    background: var(--web-secondary);

    transform: translateY(-4px);

}

@media(max-width:991px) {

    .footer-bottom-wrapper {

        flex-direction: column;

        text-align: center;

    }

    .footer-bottom-links {

        justify-content: center;

    }

    .footer-social {

        justify-content: center;

    }

}

@media(max-width:576px) {

    .footer-bottom-links {

        flex-direction: column;

        gap: 12px;

    }

}


/* =========================================================
   CAREER HERO
========================================================= */

.career-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    /* background:
        linear-gradient(
            90deg,
            rgba(10, 20, 30, .88) 0%,
            rgba(10, 20, 30, .60) 48%,
            rgba(10, 20, 30, .15) 100%
        ),
        url('/images/career/career-banner.webp') center center / cover no-repeat; */
    background: radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.18), transparent 35%), linear-gradient(135deg, #101827 0%, #182235 55%, #202d42 100%);
    ;

    overflow: hidden;
}

.career-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 130px 0 0 0;
    color: #fff;
}

.career-eyebrow,
.career-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8a323;
    margin-bottom: 18px;
}

.career-hero h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
}

.career-hero p {
    max-width: 620px;
    margin: 25px 0 32px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
}

.career-hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.career-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    background: #e8a323;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.career-primary-btn:hover {
    background: #d89013;
    color: #fff;
    transform: translateY(-2px);
}

.career-open-count {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.career-open-count strong {
    font-size: 20px;
    color: #fff;
}


/* =========================================================
   INTRO
========================================================= */

.career-intro {
    padding: 50px 0 80px 0;
    background: #fff;
}

.career-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.career-intro h2,
.career-section-heading h2,
.career-jobs-header h2,
.career-cta h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    color: #18212b;
    font-weight: 700;
}

.career-intro h2 span,
.career-section-heading h2 span,
.career-jobs-header h2 span,
.career-cta h2 span {
    color: #e8a323;
}

.career-intro-content {
    max-width: 620px;
}

.career-intro-content p {
    margin: 0 0 20px;
    color: #68727d;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   BENEFITS
========================================================= */

.career-benefits {
    padding: 100px 0;
    background: #e1e7da;
}

.career-section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.career-benefit-card {
    height: 100%;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #edf0ed;
    border-radius: 8px;
    transition: .3s ease;
}

.career-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.career-benefit-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(232, 163, 35, .12);
    color: #e8a323;
    font-size: 20px;
}

.career-benefit-card h4 {
    margin-bottom: 13px;
    color: #18212b;
    font-size: 19px;
}

.career-benefit-card p {
    margin: 0;
    color: #737c84;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   JOBS
========================================================= */

.career-jobs {
    padding: 110px 0;
    background: #fff;
}

.career-jobs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.career-jobs-count {
    min-width: 150px;
    text-align: right;
}

.career-jobs-count strong {
    display: block;
    font-size: 34px;
    color: #18212b;
}

.career-jobs-count span {
    color: #8a9299;
    font-size: 13px;
}

.career-job-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.career-job-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    align-items: center;
    gap: 35px;
    padding: 30px;
    border: 1px solid #e9ece9;
    border-radius: 8px;
    background: #fff;
    transition: .3s ease;
}

.career-job-card:hover {
    border-color: rgba(232, 163, 35, .45);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transform: translateY(-3px);
}

.career-job-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.career-job-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #f8f4ea;
    color: #e8a323;
}

.career-job-department {
    display: block;
    margin-bottom: 6px;
    color: #e8a323;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.career-job-content h3 {
    margin: 0 0 7px;
    color: #18212b;
    font-size: 20px;
}

.career-job-content p {
    margin: 0;
    color: #7b838a;
    font-size: 13px;
    line-height: 1.6;
}

.career-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.career-job-meta div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #707982;
    font-size: 12px;
}

.career-job-meta i {
    color: #e8a323;
}

.career-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: #18212b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.career-view-btn i {
    color: #e8a323;
    transition: .3s ease;
}

.career-view-btn:hover {
    color: #e8a323;
}

.career-view-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.career-empty {
    max-width: 600px;
    margin: 40px auto;
    padding: 70px 30px;
    text-align: center;
    border: 1px dashed #dfe4df;
    border-radius: 8px;
}

.career-empty-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f8f4ea;
    color: #e8a323;
    font-size: 24px;
}

.career-empty h3 {
    margin-bottom: 10px;
    color: #18212b;
}

.career-empty p {
    margin: 0;
    color: #7b838a;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.career-cta {
    padding: 90px 0;
    background: #17222c;
    color: #fff;
}

.career-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.career-cta h2 {
    color: #fff;
}

.career-cta p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
}

.career-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #e8a323;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.career-cta-btn:hover {
    color: #fff;
    background: #d89013;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .career-hero {
        min-height: 560px;
    }

    .career-hero h1 {
        font-size: 28px;
    }

    .career-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .career-job-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-job-action {
        padding-top: 10px;
    }

    .career-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 767px) {

    .career-hero {
        min-height: 600px;
        background-position: 65% center;
    }

    .career-hero-content {
        padding: 80px 0;
    }

    .career-hero h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .career-hero p {
        font-size: 15px;
    }

    .career-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-intro,
    .career-benefits,
    .career-jobs {
        padding: 75px 0;
    }

    .career-intro h2,
    .career-section-heading h2,
    .career-jobs-header h2,
    .career-cta h2 {
        font-size: 32px;
    }

    .career-jobs-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-jobs-count {
        text-align: left;
    }

    .career-job-main {
        align-items: flex-start;
    }

    .career-job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .career-cta {
        padding: 70px 0;
    }

}






/* =========================================================
   CAREER DETAILS PAGE
   Fox Hill Tourism
========================================================= */

.career-detail-section,
.career-application-section {
    position: relative;
}


/* =========================================================
   HERO
========================================================= */

.career-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 95px;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(245, 158, 11, 0.18),
            transparent 35%),
        linear-gradient(135deg,
            #101827 0%,
            #182235 55%,
            #202d42 100%);
}

.career-detail-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -150px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.career-detail-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -120px;
    bottom: -150px;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.career-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 50px;
}

.career-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;

    color: #f5a623;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.career-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #f5a623;
}

.career-detail-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.career-detail-hero p {
    max-width: 760px;
    margin: 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   CAREER META
========================================================= */

.career-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    margin-top: 32px;
}

.career-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 17px;

    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50px;

    font-size: 13px;
    font-weight: 500;

    backdrop-filter: blur(8px);
}

.career-meta span i {
    color: #f5a623;
    font-size: 13px;
}


/* =========================================================
   DETAILS SECTION
========================================================= */

.career-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.career-detail-content {
    padding-right: 35px;
}

.career-content-block {
    color: #596579;
    font-size: 15px;
    line-height: 1.9;
}

.career-content-block h2 {
    position: relative;

    margin: 0 0 28px;

    color: #172033;
    font-size: 30px;
    font-weight: 700;
}

.career-content-block h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 13px;

    background: #f5a623;
    border-radius: 5px;
}

.career-content-block h3 {
    margin-top: 35px;
    margin-bottom: 15px;

    color: #1c2638;
    font-size: 21px;
    font-weight: 650;
}

.career-content-block p {
    margin-bottom: 18px;
}

.career-content-block ul,
.career-content-block ol {
    padding-left: 22px;
    margin-bottom: 25px;
}

.career-content-block li {
    margin-bottom: 9px;
}

.career-content-block strong {
    color: #273247;
}


/* =========================================================
   JOB SUMMARY CARD
========================================================= */

.career-summary-card {
    position: sticky;
    top: 100px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e8ebf0;
    border-radius: 18px;

    box-shadow:
        0 15px 45px rgba(21, 31, 48, 0.08);
}

.career-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;
    margin-bottom: 5px;

    border-bottom: 1px solid #edf0f4;
}

.career-summary-header span {
    color: #1a2436;
    font-size: 18px;
    font-weight: 700;
}

.career-summary-header i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #f5a623;
    background: #fff7e8;

    border-radius: 12px;
}


.career-summary-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid #edf0f4;
}

.career-summary-item span {
    color: #7a8494;
    font-size: 13px;
}

.career-summary-item strong {
    max-width: 55%;

    color: #202a3b;
    font-size: 14px;
    font-weight: 650;
    text-align: right;
}


.career-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;

    margin-top: 24px;
    padding: 15px 20px;

    color: #ffffff;
    background: #f5a623;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.career-apply-btn:hover {
    color: #ffffff;
    background: #e89a17;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(245, 166, 35, 0.25);
}

.career-apply-btn i {
    transition: transform 0.25s ease;
}

.career-apply-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   APPLICATION SECTION
========================================================= */

.career-application-section {
    padding: 95px 0;

    background:
        radial-gradient(circle at 10% 15%,
            rgba(245, 166, 35, 0.08),
            transparent 30%),
        #f7f8fa;
}

.career-application-wrapper {
    max-width: 1050px;

    margin: 0 auto;

    padding: 50px;

    background: #ffffff;

    border: 1px solid #e7eaf0;
    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(24, 35, 52, 0.07);
}


/* =========================================================
   APPLICATION INTRO
========================================================= */

.career-application-intro {
    max-width: 700px;

    margin-bottom: 40px;
}

.career-application-intro .career-eyebrow {
    margin-bottom: 12px;
}

.career-application-intro h2 {
    margin: 0 0 14px;

    color: #172033;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.career-application-intro p {
    margin: 0;

    color: #697386;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FORM
========================================================= */

.career-form-group {
    margin-bottom: 25px;
}

.career-form-group label,
.career-resume-upload label {
    display: block;

    margin-bottom: 9px;

    color: #263144;

    font-size: 13px;
    font-weight: 650;
}

.career-form-group label span,
.career-resume-upload label span {
    color: #e54848;
}


.career-form-group .form-control {
    width: 100%;

    min-height: 50px;

    padding: 13px 15px;

    color: #273247;
    background: #ffffff;

    border: 1px solid #dfe4eb;
    border-radius: 9px;

    font-size: 14px;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.career-form-group textarea.form-control {
    min-height: 115px;
    resize: vertical;
}

.career-form-group .form-control::placeholder {
    color: #a2a9b5;
}

.career-form-group .form-control:focus {
    color: #273247;
    background: #ffffff;

    border-color: #f5a623;

    box-shadow:
        0 0 0 3px rgba(245, 166, 35, 0.10);

    outline: none;
}


/* =========================================================
   RESUME UPLOAD
========================================================= */

.career-resume-upload {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 105px;

    margin-top: 4px;
    margin-bottom: 30px;
    padding: 22px;

    background: #fafbfc;

    border: 1px dashed #cfd6df;
    border-radius: 13px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.career-resume-upload:hover {
    background: #fffaf1;
    border-color: #f5a623;
}

.career-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    color: #f5a623;
    background: #fff4dd;

    border-radius: 12px;

    font-size: 20px;
}

.career-resume-upload label {
    margin-bottom: 4px;
}

.career-resume-upload p {
    margin: 0;

    color: #929baa;
    font-size: 12px;
}

.career-resume-upload input[type="file"] {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;
}


/* =========================================================
   SUBMIT
========================================================= */

.career-submit-wrapper {
    display: flex;
    justify-content: flex-end;

    padding-top: 5px;
}

.career-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 210px;

    padding: 15px 24px;

    color: #ffffff;
    background: #172033;

    border: 0;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.career-submit-btn:hover {
    color: #ffffff;
    background: #f5a623;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(245, 166, 35, 0.22);
}

.career-submit-btn i {
    transition: transform 0.25s ease;
}

.career-submit-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   PARSLEY VALIDATION
========================================================= */

.career-form-group .parsley-errors-list {
    margin: 7px 0 0;
    padding: 0;

    list-style: none;

    color: #dc3545;

    font-size: 12px;
    line-height: 1.4;
}

.career-form-group .parsley-error {
    border-color: #dc3545 !important;

    box-shadow:
        0 0 0 3px rgba(220, 53, 69, 0.07) !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .career-detail-hero {
        padding: 85px 0 75px;
    }

    .career-detail-section {
        padding: 70px 0;
    }

    .career-detail-content {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .career-summary-card {
        position: relative;
        top: auto;
    }

    .career-application-section {
        padding: 70px 0;
    }

}


@media (max-width: 767px) {

    .career-detail-hero {
        padding: 65px 0 60px;
    }

    .career-detail-hero h1 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .career-detail-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .career-meta {
        align-items: stretch;
        flex-direction: column;
    }

    .career-meta span {
        width: fit-content;
    }

    .career-detail-section {
        padding: 55px 0;
    }

    .career-content-block h2 {
        font-size: 26px;
    }

    .career-summary-card {
        padding: 22px;
    }

    .career-application-section {
        padding: 55px 0;
    }

    .career-application-wrapper {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .career-application-intro h2 {
        font-size: 28px;
    }

    .career-resume-upload {
        align-items: flex-start;
    }

    .career-submit-wrapper {
        justify-content: stretch;
    }

    .career-submit-btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .career-detail-hero h1 {
        font-size: 32px;
    }

    .career-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .career-summary-item {
        flex-direction: column;
        gap: 5px;
    }

    .career-summary-item strong {
        max-width: 100%;
        text-align: left;
    }

    .career-resume-upload {
        gap: 12px;
        padding: 17px;
    }

    .career-upload-icon {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;
    }

}

.career-selected-file {
    display: none;
    align-items: center;
    gap: 9px;

    margin-top: 8px;
    padding: 8px 10px;

    width: fit-content;
    max-width: 100%;

    color: #344054;
    background: #f0fdf4;

    border: 1px solid #bbf7d0;
    border-radius: 7px;

    font-size: 12px;
}

.career-selected-file i {
    color: #16a34a;
}

.career-selected-file span {
    max-width: 320px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.career-selected-file button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    padding: 0;

    color: #64748b;
    background: transparent;

    border: 0;
    border-radius: 50%;

    cursor: pointer;
}

.career-selected-file button:hover {
    color: #dc2626;
    background: #fee2e2;
}

.career-resume-upload.file-selected {
    background: #f8fff9;
    border-color: #86efac;
}

.career-resume-upload.file-selected .career-upload-icon {
    color: #16a34a;
    background: #dcfce7;
}

.career-resume-upload.file-selected .career-upload-icon i::before {
    content: "\f058";
}


/* =========================================================
   CORPORATE TOURS PAGE
   FoxHill Tourism
========================================================= */

:root {
    --corporate-primary: #bc551f;
    --corporate-primary-dark: #d88900;
    --corporate-dark: #17202a;
    --corporate-heading: #20252b;
    --corporate-text: #5f6872;
    --corporate-muted: #8a929b;
    --corporate-light: #f7f8fa;
    --corporate-border: #e8ebee;
    --corporate-white: #ffffff;
}


/* =========================================================
   GLOBAL
========================================================= */

.corporate-hero,
.corporate-intro,
.corporate-solutions,
.corporate-why,
.corporate-experiences,
.corporate-destinations,
.corporate-enquiry,
.corporate-final-cta {
    width: 100%;
}

.corporate-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--corporate-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    margin-bottom: 15px;
}

.corporate-section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.corporate-section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.corporate-section-heading h2,
.corporate-destination-heading h2,
.corporate-intro-heading h2,
.corporate-why-content h2,
.corporate-form-intro h2 {
    margin: 0;

    color: var(--corporate-heading);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -1px;
}

.corporate-section-heading h2 strong,
.corporate-destination-heading h2 strong,
.corporate-intro-heading h2 strong,
.corporate-why-content h2 strong,
.corporate-form-intro h2 strong {
    font-weight: 700;
}

.corporate-section-heading p {
    margin: 18px 0 0;

    color: var(--corporate-text);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HERO
========================================================= */

.corporate-hero {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #111820;
}

.corporate-hero-image {
    position: absolute;
    inset: 0;

    background-image: url('../../../images/corporate_tours_header.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.02);
}

.corporate-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(12, 18, 25, 0.94) 0%,
            rgba(12, 18, 25, 0.82) 35%,
            rgba(12, 18, 25, 0.42) 70%,
            rgba(12, 18, 25, 0.15) 100%);
}

.corporate-hero .container {
    position: relative;
    z-index: 2;
}

.corporate-hero-content {
    max-width: 720px;
    padding: 120px 0 0 0;
}

.corporate-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;

    color: #fff;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.corporate-eyebrow i {
    color: var(--corporate-primary);
}

.corporate-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 42px line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 400;
}

.corporate-hero h1 span {
    display: block;

    color: var(--corporate-primary);

    font-weight: 700;
}

.corporate-hero-content>p {
    max-width: 650px;

    margin: 25px 0 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
    line-height: 1.8;
}

.corporate-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;

    flex-wrap: wrap;
}

.corporate-primary-btn,
.corporate-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 4px;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.corporate-primary-btn {
    color: #fff;
    background: var(--corporate-primary);
}

.corporate-primary-btn:hover {
    color: #fff;

    background: var(--corporate-primary-dark);

    transform: translateY(-2px);
}

.corporate-primary-btn i {
    transition: transform 0.25s ease;
}

.corporate-primary-btn:hover i {
    transform: translateX(4px);
}

.corporate-secondary-btn {
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.06);
}

.corporate-secondary-btn:hover {
    color: #fff;

    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.corporate-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 35px;
}

.corporate-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}

.corporate-hero-trust i {
    color: var(--corporate-primary);
}


/* =========================================================
   INTRO
========================================================= */

.corporate-intro {
    padding: 50px 0 50px 0;

    background: #fff;
}

.corporate-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.corporate-intro-heading h2 {
    font-size: 46px;
}

.corporate-intro-content {
    position: relative;

    padding-left: 35px;

    border-left: 2px solid var(--corporate-primary);
}

.corporate-intro-content p {
    margin: 0 0 20px;

    color: var(--corporate-text);

    font-size: 17px;
    line-height: 1.9;
}

.corporate-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.corporate-solutions {
    padding: 50px 0 50px 0;

    background: var(--corporate-light);
}

.corporate-solution-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.corporate-solution-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    border: 1px solid var(--corporate-border);

    background: #fff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    overflow: hidden;
}

.corporate-solution-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--corporate-primary);
    transition: width 0.3s ease;
}

.corporate-solution-card:hover {
    transform: translateY(-6px);

    border-color: #dfe3e7;

    box-shadow: 0 18px 45px rgba(24, 32, 40, 0.08);
}

.corporate-solution-card:hover::after {
    width: 100%;
}

.corporate-solution-featured {
    background: #1d252d;
    border-color: #1d252d;
}

.corporate-solution-featured h3 {
    color: #fff !important;
}

.corporate-solution-featured p {
    color: rgba(255, 255, 255, 0.68);
}

.corporate-solution-featured .corporate-solution-number {
    color: rgba(255, 255, 255, 0.35);
}

.corporate-solution-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 40px;
}

.corporate-solution-number {
    color: #b9c0c7;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.corporate-solution-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--corporate-primary);

    background: rgba(244, 160, 0, 0.1);

    font-size: 18px;
}

.corporate-solution-card h3 {
    margin: 0 0 12px;

    color: var(--corporate-heading);

    font-size: 24px;
    font-weight: 700;
}

.corporate-solution-card p {
    margin: 0;

    color: var(--corporate-text);

    font-size: 14px;
    line-height: 1.75;
}

.corporate-solution-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 25px;
}

.corporate-solution-tags span {
    padding: 6px 10px;

    color: #69727b;

    border: 1px solid #e4e7ea;
    border-radius: 3px;

    font-size: 11px;
    font-weight: 600;
}

.corporate-solution-featured .corporate-solution-tags span {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   WHY FOXHILL
========================================================= */

.corporate-why {
    padding: 55px 0 55px 0;

    background: #fff;
}

.corporate-why-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 100px;

    align-items: start;
}

.corporate-why-content h2 {
    font-size: 45px;
}

.corporate-why-content>p {
    max-width: 650px;

    margin: 22px 0 35px;

    color: var(--corporate-text);

    font-size: 16px;
    line-height: 1.85;
}

.corporate-feature-list {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.corporate-feature-list>div {
    display: flex;
    align-items: flex-start;

    gap: 15px;
}

.corporate-feature-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--corporate-primary);

    background: rgba(244, 160, 0, 0.1);

    font-size: 12px;
}

.corporate-feature-list strong {
    display: block;

    color: var(--corporate-heading);

    font-size: 15px;

    margin-bottom: 4px;
}

.corporate-feature-list div div span {
    display: block;

    color: var(--corporate-text);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   PROCESS
========================================================= */

.corporate-process {
    padding: 35px;

    border: 1px solid var(--corporate-border);

    background: var(--corporate-light);
}

.corporate-process-header {
    padding-bottom: 25px;

    margin-bottom: 10px;

    border-bottom: 1px solid var(--corporate-border);
}

.corporate-process-header span {
    display: block;

    margin-bottom: 7px;

    color: var(--corporate-primary);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.corporate-process-header strong {
    color: var(--corporate-heading);

    font-size: 20px;
}

.corporate-process-item {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 15px;

    padding: 23px 0;

    border-bottom: 1px solid var(--corporate-border);
}

.corporate-process-item:last-child {
    border-bottom: 0;
}

.corporate-process-item>span {
    color: var(--corporate-primary);

    font-size: 12px;
    font-weight: 700;
}

.corporate-process-item strong {
    display: block;

    margin-bottom: 5px;

    color: var(--corporate-heading);

    font-size: 14px;
}

.corporate-process-item p {
    margin: 0;

    color: var(--corporate-text);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   EXPERIENCES
========================================================= */

.corporate-experiences {
    padding: 55px 0 0 0;

    background: var(--corporate-light);
}

.corporate-experience-grid {
    display: grid;

    grid-template-columns: 1.35fr 1fr 1fr;

    gap: 18px;
}

.corporate-experience-card {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    background: #111;
}

.corporate-experience-large {
    min-height: 500px;
}

.corporate-experience-image {
    position: absolute;
    inset: 0;
}

.corporate-experience-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.corporate-experience-card:hover .corporate-experience-image img {
    transform: scale(1.07);
}

.corporate-experience-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 20%,
            rgba(0, 0, 0, 0.78) 100%);
}

.corporate-experience-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 2;
}

.corporate-experience-content>span {
    color: var(--corporate-primary);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.corporate-experience-content h3 {
    max-width: 430px;

    margin: 10px 0 18px;

    color: #fff;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 600;
}

.corporate-experience-card:not(.corporate-experience-large) .corporate-experience-content h3 {
    font-size: 22px;
}

.corporate-experience-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.25s ease;
}

.corporate-experience-content a:hover {
    color: var(--corporate-primary);

    gap: 12px;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.corporate-destinations {
    padding: 80px 0 0 0;

    background: #fff;
}

.corporate-destination-heading {
    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 45px;
}

.corporate-destination-heading h2 {
    font-size: 43px;
}

.corporate-destination-heading p {
    margin: 0;

    color: var(--corporate-text);

    font-size: 15px;
    line-height: 1.8;
}

.corporate-destination-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.corporate-destination-card {
    position: relative;

    height: 300px;

    overflow: hidden;

    background: #111;
}

.corporate-destination-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.corporate-destination-card:hover img {
    transform: scale(1.08);
}

.corporate-destination-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 35%,
            rgba(0, 0, 0, 0.78) 100%);
}

.corporate-destination-card>div:last-child {
    position: absolute;

    left: 23px;
    bottom: 22px;

    z-index: 2;
}

.corporate-destination-card span {
    display: block;

    margin-bottom: 5px;

    color: var(--corporate-primary);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.corporate-destination-card h3 {
    margin: 0;

    color: #fff;

    font-size: 25px;
    font-weight: 600;
}


/* =========================================================
   ENQUIRY
========================================================= */

.corporate-enquiry {
    padding: 50px 0 50px 0;

    background: #f5f6f7;
}

.corporate-enquiry-wrapper {
    display: grid;

    grid-template-columns: 0.78fr 1.22fr;

    gap: 65px;

    align-items: start;
}


/* ---------------------------------------------------------
   Form Intro
--------------------------------------------------------- */

.corporate-form-intro {
    padding-top: 25px;
}

.corporate-form-intro h2 {
    font-size: 45px;
}

.corporate-form-intro>p {
    max-width: 500px;

    margin: 22px 0 35px;

    color: var(--corporate-text);

    font-size: 15px;
    line-height: 1.85;
}

.corporate-enquiry-points {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.corporate-enquiry-points>div {
    display: flex;

    gap: 14px;
}

.corporate-enquiry-points>div>i {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--corporate-primary);

    border-radius: 50%;

    background: rgba(244, 160, 0, 0.1);

    font-size: 14px;
}

.corporate-enquiry-points strong {
    display: block;

    color: var(--corporate-heading);

    font-size: 14px;

    margin-bottom: 4px;
}

.corporate-enquiry-points span {
    display: block;

    color: var(--corporate-text);

    font-size: 12px;
    line-height: 1.5;
}

.corporate-form-note {
    display: flex;

    gap: 13px;

    margin-top: 40px;

    padding: 17px;

    border: 1px solid #e3e6e9;

    background: #fff;
}

.corporate-form-note>i {
    color: var(--corporate-primary);

    margin-top: 2px;
}

.corporate-form-note strong {
    display: block;

    margin-bottom: 4px;

    color: var(--corporate-heading);

    font-size: 12px;
}

.corporate-form-note span {
    display: block;

    color: var(--corporate-text);

    font-size: 11px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   Form Card
--------------------------------------------------------- */

.corporate-form-card {
    padding: 38px;

    border: 1px solid var(--corporate-border);

    background: #fff;

    box-shadow: 0 20px 60px rgba(25, 35, 45, 0.06);
}

.corporate-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 28px;

    margin-bottom: 5px;

    border-bottom: 1px solid var(--corporate-border);
}

.corporate-form-header span {
    display: block;

    margin-bottom: 8px;

    color: var(--corporate-primary);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.corporate-form-header h3 {
    margin: 0;

    color: var(--corporate-heading);

    font-size: 25px;
    font-weight: 700;
}

.corporate-form-badge {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--corporate-primary);

    background: rgba(244, 160, 0, 0.1);
}


/* ---------------------------------------------------------
   Form Blocks
--------------------------------------------------------- */

.corporate-form-block {
    padding: 28px 0;

    border-bottom: 1px solid var(--corporate-border);
}

.corporate-form-block-heading {
    display: flex;

    gap: 13px;

    margin-bottom: 22px;
}

.corporate-form-block-heading>span {
    color: var(--corporate-primary);

    font-size: 11px;
    font-weight: 700;
}

.corporate-form-block-heading h4 {
    margin: 0 0 4px;

    color: var(--corporate-heading);

    font-size: 15px;
    font-weight: 700;
}

.corporate-form-block-heading p {
    margin: 0;

    color: var(--corporate-muted);

    font-size: 11px;
}


/* ---------------------------------------------------------
   Fields
--------------------------------------------------------- */

.corporate-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.corporate-field {
    min-width: 0;
}

.corporate-field-full {
    grid-column: 1 / -1;
}

.corporate-field label {
    display: block;

    margin-bottom: 8px;

    color: #4c555e;

    font-size: 12px;
    font-weight: 600;
}

.corporate-field label span {
    color: #e05252;
}

.corporate-field .form-control {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    border: 1px solid #e0e4e8;
    border-radius: 3px;

    color: #30373d;

    background: #fafbfc;

    font-size: 13px;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.corporate-field textarea.form-control {
    height: auto;

    min-height: 125px;

    padding-top: 13px;
    padding-bottom: 13px;

    resize: vertical;
}

.corporate-field .form-control::placeholder {
    color: #a5acb3;
}

.corporate-field .form-control:focus {
    border-color: var(--corporate-primary);

    background: #fff;

    box-shadow: 0 0 0 3px rgba(244, 160, 0, 0.08);
}


/* ---------------------------------------------------------
   Select
--------------------------------------------------------- */

.corporate-field select.form-control {
    cursor: pointer;
}


/* ---------------------------------------------------------
   Form Footer
--------------------------------------------------------- */

.corporate-form-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 28px;
}

.corporate-submit-info {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 280px;
}

.corporate-submit-info i {
    margin-top: 2px;

    color: var(--corporate-primary);

    font-size: 14px;
}

.corporate-submit-info span {
    color: var(--corporate-text);

    font-size: 11px;
    line-height: 1.6;
}

.corporate-submit-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 22px;

    border: 0;
    border-radius: 3px;

    color: #fff;

    background: var(--corporate-primary);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

.corporate-submit-btn:hover {
    background: var(--corporate-primary-dark);

    transform: translateY(-2px);
}

.corporate-submit-btn i {
    transition: transform 0.25s ease;
}

.corporate-submit-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.corporate-final-cta {
    padding: 75px 0;

    background: #1d252d;
}

.corporate-final-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.corporate-final-content>div>span {
    display: block;

    margin-bottom: 10px;

    color: var(--corporate-primary);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.corporate-final-content h2 {
    margin: 0;

    color: #fff;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 400;
}

.corporate-final-content h2 strong {
    font-weight: 700;
}

.corporate-final-content>a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    min-height: 52px;

    padding: 0 24px;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.25);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.corporate-final-content>a:hover {
    color: #fff;

    border-color: var(--corporate-primary);

    background: var(--corporate-primary);
}

.corporate-final-content>a i {
    transition: transform 0.25s ease;
}

.corporate-final-content>a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   PARSLEY VALIDATION
========================================================= */

.corporate-field .parsley-errors-list {
    margin: 6px 0 0;
    padding: 0;

    list-style: none;
}

.corporate-field .parsley-errors-list li {
    color: #dc3545;

    font-size: 11px;
    line-height: 1.4;
}

.corporate-field .parsley-error {
    border-color: #dc3545 !important;
}

.corporate-field .parsley-success {
    border-color: #28a745 !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .corporate-intro-grid {
        gap: 50px;
    }

    .corporate-why-grid {
        gap: 55px;
    }

    .corporate-enquiry-wrapper {
        gap: 40px;
    }

    .corporate-section-heading h2,
    .corporate-destination-heading h2,
    .corporate-intro-heading h2,
    .corporate-why-content h2,
    .corporate-form-intro h2 {
        font-size: 38px;
    }

    .corporate-hero h1 {
        font-size: 58px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .corporate-hero {
        min-height: 600px;
    }

    .corporate-hero-content {
        max-width: 650px;

        padding: 80px 0;
    }

    .corporate-hero h1 {
        font-size: 50px;
    }

    .corporate-intro,
    .corporate-solutions,
    .corporate-why,
    .corporate-experiences,
    .corporate-destinations,
    .corporate-enquiry {
        padding: 80px 0;
    }


    /* Intro */

    .corporate-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* Solutions */

    .corporate-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Why */

    .corporate-why-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    /* Experiences */

    .corporate-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-experience-large {
        grid-column: 1 / -1;

        min-height: 440px;
    }


    /* Destinations */

    .corporate-destination-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .corporate-destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Enquiry */

    .corporate-enquiry-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .corporate-hero {
        min-height: 620px;
    }

    .corporate-hero-image {
        background-position: 60% center;
    }

    .corporate-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(12, 18, 25, 0.92),
                rgba(12, 18, 25, 0.65));
    }

    .corporate-hero-content {
        padding: 70px 0;
    }

    .corporate-eyebrow {
        font-size: 10px;
    }

    .corporate-hero h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .corporate-hero-content>p {
        font-size: 15px;
    }

    .corporate-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .corporate-primary-btn,
    .corporate-secondary-btn {
        width: 100%;
    }

    .corporate-hero-trust {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;

        margin-top: 25px;
    }


    /* Section typography */

    .corporate-section-heading h2,
    .corporate-destination-heading h2,
    .corporate-intro-heading h2,
    .corporate-why-content h2,
    .corporate-form-intro h2 {
        font-size: 32px;
    }


    /* Intro */

    .corporate-intro,
    .corporate-solutions,
    .corporate-why,
    .corporate-experiences,
    .corporate-destinations,
    .corporate-enquiry {
        padding: 65px 0;
    }

    .corporate-intro-content {
        padding-left: 20px;
    }

    .corporate-intro-content p {
        font-size: 14px;
    }


    /* Solutions */

    .corporate-solution-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .corporate-solution-card {
        min-height: auto;

        padding: 25px;
    }


    /* Experiences */

    .corporate-experience-grid {
        grid-template-columns: 1fr;
    }

    .corporate-experience-large {
        grid-column: auto;

        min-height: 400px;
    }

    .corporate-experience-card {
        min-height: 360px;
    }


    /* Destinations */

    .corporate-destination-grid {
        grid-template-columns: 1fr;
    }

    .corporate-destination-card {
        height: 260px;
    }


    /* Form */

    .corporate-form-card {
        padding: 24px 20px;
    }

    .corporate-form-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .corporate-field-full {
        grid-column: auto;
    }

    .corporate-form-footer {
        flex-direction: column;

        align-items: stretch;
    }

    .corporate-submit-info {
        max-width: none;
    }

    .corporate-submit-btn {
        width: 100%;
    }


    /* Final CTA */

    .corporate-final-cta {
        padding: 55px 0;
    }

    .corporate-final-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .corporate-final-content h2 {
        font-size: 30px;
    }

    .corporate-final-content>a {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .corporate-hero {
        min-height: 650px;
    }

    .corporate-hero h1 {
        font-size: 36px;
    }

    .corporate-hero-content>p {
        font-size: 14px;
        line-height: 1.7;
    }

    .corporate-section-heading,
    .corporate-destination-heading {
        margin-bottom: 30px;
    }

    .corporate-section-heading h2,
    .corporate-destination-heading h2,
    .corporate-intro-heading h2,
    .corporate-why-content h2,
    .corporate-form-intro h2 {
        font-size: 29px;
    }

    .corporate-process {
        padding: 25px 20px;
    }

    .corporate-process-item {
        grid-template-columns: 30px 1fr;
    }

    .corporate-form-header {
        align-items: flex-start;
    }

    .corporate-form-header h3 {
        font-size: 21px;
    }

    .corporate-form-badge {
        flex: 0 0 42px;

        width: 42px;
        height: 42px;
    }

    .corporate-form-block {
        padding: 23px 0;
    }

    .corporate-experience-content h3,
    .corporate-experience-card:not(.corporate-experience-large) .corporate-experience-content h3 {
        font-size: 21px;
    }

}


/* ==========================================================
   GALLERY HERO
========================================================== */

.gallery-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.gallery-hero-bg {
    position: absolute;
    inset: 0;

    background-image:
        url('../../../images/tour/tour-details-banner.webp');

    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .52) 45%,
            rgba(0, 0, 0, .18) 100%);
}

.gallery-hero .container {
    position: relative;
    z-index: 2;
}

.gallery-hero-content {
    max-width: 760px;
    padding: 100px 0 0 0;
}

.gallery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.gallery-eyebrow i {
    font-size: 15px;
}

.gallery-hero h1 {
    margin: 0 0 24px;

    font-size: 42px;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -2px;
}

.gallery-hero h1 span {
    display: block;
}

.gallery-hero-content>p {
    max-width: 620px;

    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: rgba(255, 255, 255, .84);
}

.gallery-hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 32px;
}

.gallery-hero-meta span {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 13px;
    font-weight: 600;
}

.gallery-hero-meta i {
    font-size: 14px;
}


/* ==========================================================
   INTRO
========================================================== */

.gallery-intro {
    padding: 90px 0 65px;
    background: #fff;
}

.gallery-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: end;
}

.gallery-section-label {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: .65;
}

.gallery-intro h2 {
    max-width: 600px;

    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.gallery-intro h2 strong {
    display: block;
}

.gallery-intro-grid p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #666;
}


/* ==========================================================
   STORIES
========================================================== */

.gallery-stories {
    padding: 30px 0 110px;
    background: #fafafa;
}

.gallery-story-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 35px;
}


/* ==========================================================
   STORY CARD
========================================================== */

.gallery-story-card {
    background: #fff;

    border: 1px solid #eee;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.gallery-story-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .10);
}


/* ==========================================================
   IMAGE
========================================================== */

.gallery-story-image {
    position: relative;

    height: 380px;

    overflow: hidden;
}

.gallery-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.gallery-story-card:hover .gallery-story-image img {
    transform: scale(1.06);
}

.gallery-story-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .18),
            transparent 45%,
            rgba(0, 0, 0, .55));

    pointer-events: none;
}

.gallery-story-number {
    position: absolute;

    top: 20px;
    left: 20px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .95);

    font-size: 13px;
    font-weight: 700;
}

.gallery-image-count {
    position: absolute;

    right: 20px;
    top: 20px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 9px 13px;

    background: rgba(0, 0, 0, .55);
    color: #fff;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}

.gallery-view-btn {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -30%);

    opacity: 0;

    border: 0;

    padding: 13px 20px;

    border-radius: 30px;

    background: #fff;
    color: #222;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.gallery-story-card:hover .gallery-view-btn {
    opacity: 1;

    transform:
        translate(-50%, -50%);
}

.gallery-view-btn i {
    margin-right: 7px;
}


/* ==========================================================
   STORY CONTENT
========================================================== */

.gallery-story-content {
    padding: 28px 30px 30px;
}

.gallery-story-location span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;

    opacity: .55;
}

.gallery-story-content h3 {
    margin: 9px 0 12px;

    font-size: 26px;
    line-height: 1.2;
}

.gallery-story-content p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}

.gallery-story-footer {
    margin-top: 23px;

    padding-top: 19px;

    border-top: 1px solid #eee;
}

.gallery-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 0;
    padding: 0;

    background: none;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.gallery-explore-btn i {
    transition: transform .25s ease;
}

.gallery-explore-btn:hover i {
    transform: translateX(5px);
}


/* ==========================================================
   EMPTY
========================================================== */

.gallery-empty {
    text-align: center;
    padding: 100px 20px;
}

.gallery-empty-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f1f1;

    font-size: 28px;
}

.gallery-empty h3 {
    margin-bottom: 8px;
}

.gallery-empty p {
    color: #777;
}


/* ==========================================================
   CTA
========================================================== */

.gallery-cta {
    position: relative;

    padding: 100px 0;

    background:
        url('/assets/images/tour/tour-banner.webp') center / cover no-repeat;

    color: #fff;

    overflow: hidden;
}

.gallery-cta-overlay {
    position: absolute;
    inset: 0;

    background: #242d33;
}

.gallery-cta .container {
    position: relative;
    z-index: 2;
}

.gallery-cta-content {
    max-width: 720px;
}

.gallery-cta-content>span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-cta h2 {
    margin: 17px 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
}

.gallery-cta h2 strong {
    display: block;
}

.gallery-cta p {
    max-width: 600px;

    color: rgba(255, 255, 255, .78);

    font-size: 16px;
    line-height: 1.7;
}

.gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 20px;

    padding: 15px 23px;

    background: #fff;
    color: #222;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: transform .25s ease;
}

.gallery-cta-btn:hover {
    color: #222;
    transform: translateY(-3px);
}


/* ==========================================================
   LIGHTBOX
========================================================== */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.gallery-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .94);
}

.gallery-lightbox-content {
    position: relative;

    z-index: 2;

    width: min(1100px, 85vw);
}

.gallery-lightbox-content img {
    display: block;

    width: 100%;
    max-height: 78vh;

    object-fit: contain;
}

.gallery-lightbox-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 15px;

    color: #fff;
}

.gallery-lightbox-caption strong {
    font-size: 16px;
}

.gallery-lightbox-caption span {
    font-size: 12px;
    opacity: .65;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;

    z-index: 5;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    color: #fff;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    transition: background .2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, .25);
}

.gallery-lightbox-close {
    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    font-size: 17px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    top: 50%;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    transform: translateY(-50%);
}

.gallery-lightbox-prev {
    left: 30px;
}

.gallery-lightbox-next {
    right: 30px;
}

body.gallery-modal-open {
    overflow: hidden;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width: 991px) {

    .gallery-hero {
        min-height: 480px;
    }

    .gallery-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-story-grid {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox-prev {
        left: 15px;
    }

    .gallery-lightbox-next {
        right: 15px;
    }

}

@media(max-width: 767px) {

    .gallery-hero-content {
        padding: 80px 0;
    }

    .gallery-hero h1 {
        font-size: 43px;
    }

    .gallery-hero-content>p {
        font-size: 15px;
    }

    .gallery-hero-meta {
        flex-direction: column;
        gap: 12px;
    }

    .gallery-intro {
        padding: 65px 0 40px;
    }

    .gallery-stories {
        padding-bottom: 70px;
    }

    .gallery-story-image {
        height: 300px;
    }

    .gallery-story-content {
        padding: 23px;
    }

    .gallery-story-content h3 {
        font-size: 22px;
    }

    .gallery-view-btn {
        opacity: 1;
        transform:
            translate(-50%, -50%);
    }

    .gallery-lightbox-content {
        width: 94vw;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 42px;
        height: 42px;
    }

    .gallery-lightbox-caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

}


/* New CSS Start */

.main-menu ul li a:focus {
    outline: none !important;
}

/* ==========================================================
   PROFESSIONAL TRAVEL TOURISM - SEATS LEFT STYLING
========================================================== */

/* Card Image Floating Badge */
.tour-seat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-seat-badge {
    transform: scale(1.05);
}

.tour-seat-badge i {
    color: #f59e0b;
    font-size: 11px;
}

/* Featured Tour Card Badge (tour.blade.php) */
.featured-seat-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-seat-badge i {
    color: #f59e0b;
}

/* Meta Seats Left (in card meta lists) */
.tour-meta-seats {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b45309 !important;
    font-weight: 700 !important;
}

.tour-meta-seats i {
    color: #d97706;
}

/* Home Page Tour Card Body Seat Info Pill */
.tour-card-seat-info {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 11px;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 12px;
    width: fit-content;
}

.tour-card-seat-info i {
    color: #d97706;
}

.seat-live-dot {
    width: 7px;
    height: 7px;
    background: #ea580c;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    animation: tdSeatPulse 2s infinite;
}

/* Tour Details Page - Hero Badge */
.td-tour-badge-seats {
    background: rgba(245, 158, 11, 0.18) !important;
    border-color: rgba(245, 158, 11, 0.45) !important;
    color: #fff !important;
    margin-left: 8px;
}

.td-tour-badge-seats i {
    color: #f59e0b !important;
}

/* Tour Details Page - Booking Card Availability Box */
.td-booking-seats-box {
    background: linear-gradient(135deg, #fffcf6 0%, #fff7ed 100%);
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.08);
}

.td-seats-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}

.td-seats-status-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #9a3412;
}

.td-seats-live-dot {
    width: 8px;
    height: 8px;
    background: #ea580c;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    animation: tdSeatPulse 2s infinite;
}

@keyframes tdSeatPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 7px rgba(234, 88, 12, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

.td-seats-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ea580c;
    color: #fff;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.td-seats-count-badge i {
    font-size: 11px;
}

.td-seats-progress {
    height: 6px;
    background: #fed7aa;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.td-seats-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    border-radius: 10px;
    transition: width 0.8s ease-in-out;
}

.td-seats-note {
    font-size: 12px;
    color: #7c2d12;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

/* New CSS End */