    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: #ffffff;
        color: #111;
    }

    /* NAVBAR + HERO SESSION START */

    a {
        text-decoration: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .main-wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .container {
        max-width: 1400px;
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    @media (max-width:575.98px) {
        .container {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }
    }

    .intro-overlay {
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .intro-logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        white-space: nowrap;
        transform-origin: center center;
        will-change: transform, opacity;
    }

    .intro-logo-mark {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #31c6f7, #ff9a52);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
        box-shadow: 0 8px 18px rgba(49, 198, 247, 0.25);
        flex-shrink: 0;
    }

    .intro-logo-text {
        font-size: clamp(42px, 7vw, 88px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -1px;
        color: #111;
    }

    .intro-type-cursor {
        display: inline-block;
        margin-left: 2px;
        animation: blinkCursor 0.8s step-end infinite;
    }

    @keyframes blinkCursor {
        50% {
            opacity: 0;
        }
    }

    .custom-navbar {
        padding: 18px 0;
        background: #fff;
        position: relative;
        z-index: 1000;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 24px;
        font-weight: 700;
        color: #1d1d1d !important;
        position: relative;
        z-index: 3;
        opacity: 0;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: linear-gradient(135deg, #31c6f7, #ff9a52);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        box-shadow: 0 8px 18px rgba(49, 198, 247, 0.25);
        flex-shrink: 0;
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        position: relative;
        font-size: 15px;
        font-weight: 500;
        color: #1f1f1f !important;
        padding: 10px 14px !important;
        transition: all 0.35s ease;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        bottom: 5px;
        width: 0;
        height: 2px;
        border-radius: 20px;
        background: #ff964f;
        transition: width 0.35s ease;
    }

    .nav-link:hover {
        color: #ff964f !important;
        transform: translateY(-2px);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: calc(100% - 28px);
    }

    .nav-link.active {
        color: #111 !important;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none !important;
        padding: 8px 10px;
        border-radius: 12px;
        background: #f5f7fb;
    }

    .navbar-toggler i {
        font-size: 24px;
        color: #111;
    }

    .login-btn {
        position: relative;
        overflow: hidden;
        border: none;
        border-radius: 10px;
        padding: 10px 30px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, #ff9f59, #f68a43);
        transition: all 0.35s ease;
        box-shadow: 0 14px 28px rgba(246, 138, 67, 0.25);
        z-index: 1;
        min-width: 96px;
    }

    .login-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 120%;
        height: 100%;
        background: rgba(255, 255, 255, 0.22);
        transform: skewX(-25deg);
        transition: left 0.55s ease;
        z-index: -1;
    }

    .login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 35px rgba(246, 138, 67, 0.35);
    }

    .login-btn:hover::before {
        left: 130%;
    }

    .mobile-menu-wrap {
        margin-top: 14px;
        padding: 18px;
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f1f1;
    }

    .mobile-menu-wrap .navbar-nav {
        gap: 4px;
    }

    .mobile-menu-wrap .nav-link {
        border-radius: 12px;
    }

    .mobile-menu-wrap .nav-link:hover {
        background: #fff5ee;
    }

    .mobile-menu-wrap .login-btn {
        width: 100%;
        margin-top: 10px;
    }

    @media (min-width:992px) {
        .mobile-menu-wrap-desktop-reset {
            margin-top: 0;
            padding: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            border: none;
        }
    }

    .hero-section {
        position: relative;
        padding: 24px 0 46px;
        overflow: hidden;
    }

    .hero-row {
        min-height: calc(100vh - 95px);
        align-items: center;
    }

    .hero-left {
        position: relative;
        z-index: 2;
        padding-right: 18px;
    }

    .hero-title {
        font-size: clamp(48px, 5.2vw, 78px);
        line-height: 1.15;
        font-weight: 700;
        color: #121212;
        margin-bottom: 14px;
        max-width: 520px;
        letter-spacing: 3px;
    }

    .hero-line-wrap {
        display: block;
        overflow: hidden;
        min-height: 1.18em;
    }

    .hero-line {
        display: block;
        will-change: transform, opacity, filter;
    }

    .hero-line .star {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82em;
        vertical-align: middle;
        margin-left: 8px;
        color: #111;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.8;
        color: #5e6472;
        max-width: 500px;
        margin-bottom: 28px;
    }

    .flight-shape {
        position: absolute;
        top: -90px;
        left: 320px;
        width: 360px;
        overflow: hidden;
        will-change: clip-path, opacity, transform;
    }

    .flight-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-search-box {
        background: #fff;
        border-radius: 14px;
        padding: 8px 10px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        max-width: 620px;
    }

    .search-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 126px;
        align-items: center;
        gap: 0;
    }

    .search-item {
        position: relative;
        padding: 8px 16px;
        min-height: 52px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .search-item:not(:last-of-type)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 32px;
        background: #ececec;
    }

    .search-label {
        font-size: 10px;
        font-weight: 500;
        color: #8aa1b4;
        margin-bottom: 3px;
        line-height: 1;
        text-transform: none;
    }

    .search-select-wrap {
        position: relative;
    }

    .search-select {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: 12px;
        font-weight: 600;
        color: #171717;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 18px;
        cursor: pointer;
    }

    .search-select-icon {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 11px;
        color: #8db8d3;
        pointer-events: none;
    }

    .search-btn-wrap {
        padding-left: 10px;
    }

    .search-btn {
        height: 44px;
        width: 100%;
        border: none;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        background: #31b8ff;
        color: #fff;
        transition: all 0.35s ease;
        box-shadow: 0 12px 22px rgba(56, 185, 255, 0.28);
    }

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 30px rgba(56, 185, 255, 0.35);
        background: #18adff;
    }

    .hero-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 520px;
        z-index: 1;
    }

    .circle-reveal {
        position: relative;
        width: min(350px, 72vw);
        height: min(350px, 72vw);
        z-index: 1;
        will-change: clip-path, opacity, transform;
    }

    .circle-bg {
        width: 100%;
        height: 100%;
        background: #f5cd77;
        border-radius: 50%;
        position: relative;
        z-index: 1;
    }

    .traveler-img {
        position: absolute;
        bottom: -18px;
        left: 47%;
        transform: translateX(-42%);
        width: min(390px, 88%);
        z-index: 2;
        object-fit: contain;
        filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.12));
        will-change: opacity, transform, filter;
    }

    .blur-shape-1,
    .blur-shape-2 {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        z-index: 0;
        pointer-events: none;
    }

    .blur-shape-1 {
        width: 220px;
        height: 220px;
        background: rgba(255, 175, 90, 0.10);
        top: 0;
        right: 0;
    }

    .blur-shape-2 {
        width: 180px;
        height: 180px;
        background: rgba(56, 185, 255, 0.08);
        bottom: 20px;
        left: 0;
    }

    @media (max-width:1199.98px) {
        .flight-shape {
            left: 215px;
            width: 215px;
        }

        .search-row {
            grid-template-columns: 1fr 1fr 1fr 118px;
        }

        .hero-right {
            min-height: 470px;
        }

        .circle-reveal {
            width: 320px;
            height: 320px;
        }

        .traveler-img {
            width: 355px;
        }
    }

    @media (max-width:991.98px) {
        .custom-navbar {
            padding: 14px 0;
        }

        .hero-section {
            padding: 24px 0 50px;
        }

        .hero-row {
            min-height: auto;
            row-gap: 36px;
        }

        .hero-left {
            text-align: center;
            padding-right: 0;
        }

        .hero-title,
        .hero-text {
            margin-left: auto;
            margin-right: auto;
        }

        .flight-shape {
            position: relative;
            top: auto;
            left: auto;
            width: 190px;
            margin: 18px auto 10px;
        }

        .hero-search-box {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-right {
            min-height: 420px;
        }

        .circle-reveal {
            width: 300px;
            height: 300px;
        }

        .traveler-img {
            width: 325px;
            bottom: -14px;
            transform: translateX(-43%);
        }

        .intro-logo-text {
            font-size: clamp(34px, 9vw, 64px);
        }
    }

    @media (max-width:767.98px) {
        .hero-title {
            font-size: 48px;
        }

        .hero-text {
            font-size: 14px;
        }

        .search-row {
            grid-template-columns: 1fr;
        }

        .search-item {
            padding: 12px 8px;
            text-align: left;
            border-bottom: 1px solid #ececec;
        }

        .search-item:not(:last-of-type)::after {
            display: none;
        }

        .search-btn-wrap {
            padding-left: 0;
            padding-top: 12px;
        }

        .search-btn {
            height: 48px;
        }

        .hero-right {
            min-height: 360px;
        }

        .circle-reveal {
            width: 260px;
            height: 260px;
        }

        .traveler-img {
            width: 280px;
        }

        .intro-logo-mark {
            width: 42px;
            height: 42px;
            font-size: 19px;
        }
    }

    @media (max-width:575.98px) {
        .navbar-brand {
            font-size: 22px;
        }

        .logo-mark {
            width: 32px;
            height: 32px;
            font-size: 16px;
        }

        .hero-title {
            font-size: 40px;
        }

        .flight-shape {
            width: 165px;
        }

        .circle-reveal {
            width: 235px;
            height: 235px;
        }

        .traveler-img {
            width: 248px;
        }

        .intro-logo-text {
            font-size: 34px;
        }

        .intro-logo-mark {
            width: 38px;
            height: 38px;
            font-size: 17px;
        }
    }
    /* NAVBAR + HERO SESSION START */

    /* POPULAR PLACE SESSION START */
    .popular-place-section {
        padding: 70px 0;
        background: #fff;

    }

    .popular-place-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }

    .popular-place-title {
        font-size: 36px;
        font-weight: 700;
        margin: 0;
        color: #111;
    }

    .popular-place-tabs {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
        align-items: center;
    }

    .place-tab {
        border: none;
        background: none;
        padding: 0;
        font-size: 14px;
        font-weight: 500;
        color: #777;
        position: relative;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .place-tab:hover,
    .place-tab.active {
        color: #000;
    }

    .place-tab::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 2px;
        background: #f7942b;
        transition: .3s;
        border-radius: 20px;
    }

    .place-tab.active::after {
        width: 100%;
    }

    .view-all-tab {
        color: #f7942b;
        font-weight: 600;
    }

    .place-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: .35s ease;
        height: 100%;
    }

    .place-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    }

    .place-card-img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
        padding: 6px;
        border-radius: 20px;
    }

    .place-card-body {
        padding: 14px 14px 16px;
    }

    .place-card-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        margin-bottom: 8px;
    }

    .place-name {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        color: #111;
    }

    .place-rating {
        color: #f7942b;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .place-location {
        font-size: 13px;
        color: #888;
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .place-location i {
        color: #8ecdf5;
    }

    @media (max-width: 991.98px) {
        .container {
            padding-left: 50px !important;
            padding-right: 50px !important;
        }

        .place-card-img {
            height: 260px;
        }
    }

    @media (max-width: 767.98px) {
        .container {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        .popular-place-section {
            padding: 50px 0;
        }

        .popular-place-head {
            flex-direction: column;
            align-items: flex-start;
        }

        .popular-place-title {
            font-size: 28px;
        }

        .popular-place-tabs {
            gap: 14px 18px;
        }

        .place-card-img {
            height: 220px;
        }
    }

    @media (max-width: 575.98px) {
        .popular-place-title {
            font-size: 24px;
        }

        .place-name {
            font-size: 16px;
        }

        .place-tab {
            font-size: 13px;
        }
    }

    /* POPULAR PLACE SESSION END */

    /* TRAVEL EXPLOR SESSION START */
    .travel-explore-section {
        padding: 40px 0;
        background: #ffffff;
    }

    .travel-explore-container {
        max-width: 100%;
        padding-left: 70px;
        padding-right: 70px;
    }

    .travel-explore-row {
        align-items: center;
    }

    .travel-visual-wrap {
        position: relative;
        min-height: 460px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .travel-main-circle {
        width: 340px;
        height: 340px;
        background: #f3c764;
        border-radius: 50%;
        position: relative;
        z-index: 1;
        flex-shrink: 0;
    }

    .travel-main-image {
        position: absolute;
        bottom: -26px;
        left: 72%;
        transform: translateX(-50%);
        width: 790px;
        max-width: none;
        height: auto;
        z-index: 3;
        object-fit: contain;
        filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.10));
        pointer-events: none;
    }

    .travel-avatar-cluster {
        position: absolute;
        top: 42px;
        left: 18px;
        display: flex;
        align-items: center;
        z-index: 4;
    }

    .travel-avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #fff;
        background: #fff;
        margin-left: -10px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .travel-avatar:first-child {
        margin-left: 0;
    }

    .travel-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .travel-message-box {
        position: absolute;
        left: 162px;
        bottom: 36px;
        background: #fff;
        border-radius: 12px;
        padding: 21px 23px 21px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09);
        z-index: 5;
        max-width: calc(100% - 20px);
    }

    .travel-message-avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .travel-message-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .travel-message-text {
        line-height: 1.1;
    }

    .travel-stars {
        display: flex;
        gap: 3px;
        margin-top: 6px;
        flex-wrap: wrap;
    }

    .travel-stars i {
        font-size: 14px;
        color: #f4a261;
    }

    .travel-message-title {
        font-size: 12px;
        font-weight: 600;
        color: #222;
        margin-bottom: 3px;
    }

    .travel-message-subtitle {
        font-size: 11px;
        color: #8a8a8a;
    }

    .travel-content {
        padding-left: 30px;
    }

    .travel-title {
        font-size: 47px;
        line-height: 1.15;
        font-weight: 700;
        color: #111;
        max-width: 550px;
        margin-bottom: 26px;
    }

    .travel-text {
        font-size: 16px;
        line-height: 2.1;
        color: #7b7b7b;
        max-width: 470px;
        margin-bottom: 28px;
    }

    .travel-feature-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        gap: 18px 28px;
        max-width: 460px;
    }

    .travel-feature-item {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 15px;
        font-weight: 600;
        color: #000;
    }

    .travel-feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(244, 162, 97, 0.16);
        color: #f78d37;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    @media (max-width: 1199.98px) {
        .travel-explore-container {
            padding-left: 50px;
            padding-right: 50px;
        }

        .travel-visual-wrap {
            min-height: 430px;
        }

        .travel-main-circle {
            width: 300px;
            height: 300px;
        }

        .travel-main-image {
            width: 740px;
            left: 76%;
            bottom: -20px;
        }

        .travel-message-box {
            left: 120px;
            bottom: 26px;
            padding: 16px 18px 16px 15px;
        }

        .travel-title {
            font-size: 42px;
        }
    }

    @media (max-width: 991.98px) {
        .travel-explore-container {
            padding-left: 35px;
            padding-right: 35px;
        }

        .travel-explore-row {
            row-gap: 34px;
        }

        .travel-visual-wrap {
            min-height: 420px;
            margin-bottom: 8px;
        }

        .travel-main-circle {
            width: 285px;
            height: 285px;
        }

        .travel-main-image {
            width: min(92vw, 560px);
            left: 56%;
            bottom: -14px;
        }

        .travel-avatar-cluster {
            top: 20px;
            left: 24px;
        }

        .travel-message-box {
            left: 50%;
            transform: translateX(-50%);
            bottom: 16px;
            padding: 14px 16px 14px 14px;
            max-width: 90%;
        }

        .travel-content {
            padding-left: 0;
            text-align: center;
        }

        .travel-title,
        .travel-text {
            max-width: 100%;
        }

        .travel-feature-list {
            margin: 0 auto;
        }
    }

    @media (max-width: 767.98px) {
        .travel-explore-section {
            padding: 50px 0;
        }

        .travel-explore-container {
            padding-left: 20px;
            padding-right: 20px;
        }

        .travel-explore-row {
            row-gap: 28px;
        }

        .travel-visual-wrap {
            min-height: 350px;
        }

        .travel-main-circle {
            width: 240px;
            height: 240px;
        }

        .travel-main-image {
            width: 100%;
            max-width: 420px;
            left: 50%;
            transform: translateX(-50%);
            bottom: -8px;
        }

        .travel-avatar-cluster {
            top: 10px;
            left: 68px;
        }

        .travel-avatar {
            width: 28px;
            height: 28px;
            border-width: 2px;
            margin-left: -7px;
        }

        .travel-message-box {
            left: 50%;
            transform: translateX(-40%);
            bottom: 4px;
            padding: 8px 12px 8px 8px;
            gap: 8px;
            border-radius: 10px;
            width: max-content;
            max-width: 92%;
        }

        .travel-message-avatar {
            width: 28px;
            height: 28px;
        }

        .travel-message-title {
            font-size: 10px;
            margin-bottom: 2px;
        }

        .travel-message-subtitle {
            font-size: 9px;
        }

        .travel-stars {
            gap: 2px;
            margin-top: 4px;
        }

        .travel-stars i {
            font-size: 10px;
        }

        .travel-content {
            padding-left: 0;
            text-align: center;
        }

        .travel-title {
            font-size: 28px;
            line-height: 1.2;
            max-width: 100%;
            margin-bottom: 14px;
        }

        .travel-text {
            font-size: 13px;
            line-height: 1.8;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .travel-feature-list {
            grid-template-columns: 1fr 1fr;
            gap: 14px 12px;
            max-width: 100%;
        }

        .travel-feature-item {
            gap: 12px;
            font-size: 13px;
            justify-content: flex-start;
        }

        .travel-feature-icon {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }
    }

    @media (max-width: 575.98px) {
        .travel-explore-section {
            padding: 42px 0;
        }

        .travel-visual-wrap {
            min-height: 315px;
        }

        .travel-main-circle {
            width: 210px;
            height: 210px;
        }

        .travel-main-image {
            width: 100%;
            max-width: 430px;
            left: 65%;
            transform: translateX(-50%);
            bottom: 16px;
        }

        .travel-avatar-cluster {
            top: 8px;
            left: 4px;
        }

        .travel-avatar {
            width: 24px;
            height: 24px;
            margin-left: -6px;
        }

        .travel-message-box {
            bottom: 8px;
            padding: 7px 10px 7px 7px;
            gap: 7px;
            max-width: 95%;
        }

        .travel-message-avatar {
            width: 24px;
            height: 24px;
        }

        .travel-message-title {
            font-size: 9px;
        }

        .travel-message-subtitle {
            font-size: 8px;
        }

        .travel-stars i {
            font-size: 9px;
        }

        .travel-title {
            font-size: 24px;
        }

        .travel-text {
            font-size: 12px;
        }

        .travel-feature-list {
            grid-template-columns: 1fr;
        }

        .travel-feature-item {
            font-size: 12px;
            justify-content: flex-start;
        }

        .travel-feature-icon {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }
    }

    @media (max-width: 390px) {
        .travel-visual-wrap {
            min-height: 285px;
        }

        .travel-main-circle {
            width: 180px;
            height: 180px;
        }

        .travel-main-image {
            width: 100%;
            max-width: 390px;
            left: 65%;
            transform: translateX(-50%);
            bottom: 19px;
        }

        .travel-avatar {
            width: 22px;
            height: 22px;
        }

        .travel-message-box {
            max-width: 96%;
        }

        .travel-message-title {
            font-size: 8px;
        }

        .travel-message-subtitle {
            font-size: 7px;
        }

        .travel-stars i {
            font-size: 8px;
        }
    }

    /* TRAVEL EXPLORE SESSION END */

    /* EXPLORE PLACE SESSION START */
    .explore-place {
        padding: 50px 0 34px;
    }

    .explore-place .container {
        max-width: 1400px;
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .explore-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .explore-title {
        font-size: 34px;
        font-weight: 700;
        color: #2a2a2a;
        margin: 0;
        line-height: 1.1;
    }

    .explore-place-tabs {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
    }

    .explore-place-tab-btn {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 14px;
        font-weight: 600;
        color: #7f7f7f;
        transition: all 0.3s ease;
        position: relative;
        cursor: pointer;
        line-height: 1;
    }

    .explore-place-tab-btn:hover,
    .explore-place-tab-btn.active {
        color: #f7942b;
    }

    .explore-place-tab-btn.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 2px;
        background: #f7942b;
        border-radius: 20px;
    }

    .explore-place-grid {
        display: none;
    }

    .explore-place-grid.active {
        display: block;
    }

    .explore-row {
        row-gap: 28px;
    }

    .place-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 7px;
        transition: all 0.35s ease;
        height: 100%;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    }

    .place-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
        border-color: #ebebeb;
    }

    .place-img-wrap {
        border-radius: 10px;
        overflow: hidden;
        height: 280px;
        background: #f4f4f4;
        margin-bottom: 14px;
    }

    .place-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .place-card:hover .place-img {
        transform: scale(1.05);
    }

    .place-body {
        padding: 0 4px 3px;
    }

    .place-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 6px;
    }

    .place-name {
        font-size: 17.5px;
        font-weight: 700;
        color: #242424;
        margin: 0;
        line-height: 1.3;
    }

    .place-rating {
        font-size: 13px;
        font-weight: 700;
        color: #f7942b;
        white-space: nowrap;
        flex-shrink: 0;
        letter-spacing: 0.1px;
    }

    .place-location {
        margin: 0;
        font-size: 12px;
        color: #9b9b9b;
        display: flex;
        align-items: center;
        gap: 6px;
        line-height: 1.4;
        font-weight: 600;
    }

    .place-location .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #46ba82;
        display: inline-block;
        flex-shrink: 0;
    }

    @media (max-width:991.98px) {
        .explore-place .container {
            padding-left: 40px !important;
            padding-right: 40px !important;
        }

        .explore-head {
            flex-direction: column;
            align-items: flex-start;
        }

        .explore-title {
            font-size: 30px;
        }

        .explore-place-tabs {
            gap: 20px;
        }

        .place-img-wrap {
            height: 175px;
        }
    }

    @media (max-width:767.98px) {
        .explore-place {
            padding: 38px 0 26px;
        }

        .explore-place .container {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        .explore-title {
            font-size: 26px;
        }

        .explore-place-tab-btn {
            font-size: 12px;
        }

        .place-img-wrap {
            height: 190px;
        }

        .place-name {
            font-size: 15px;
        }

        .place-rating {
            font-size: 12px;
        }

        .place-location {
            font-size: 11px;
        }
    }

    @media (max-width:575.98px) {
        .place-img-wrap {
            height: 210px;
        }
    }

    /* EXPLORE PLACE SESSION END */

    /* STATS SESSION STRT */
    .stats-section {
        padding: 60px 0;
        background: #fff;
    }

    .stats-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 8px;
        min-height: 185px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        transition: all 0.35s ease;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    .stats-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        border-color: #e8e8e8;
    }

    .stats-number {
        font-size: 36px;
        font-weight: 700;
        color: #f8842b;
        line-height: 1;
        margin-bottom: 14px;
        letter-spacing: 0.3px;
    }

    .stats-label {
        font-size: 17px;
        font-weight: 600;
        color: #222;
        line-height: 1.4;
        margin: 0;
    }

    @media (max-width: 991.98px) {
        .stats-section {
            padding: 50px 0;
        }

        .stats-card {
            min-height: 130px;
        }

        .stats-number {
            font-size: 30px;
        }
    }

    @media (max-width: 767.98px) {
        .stats-section {
            padding: 40px 0;
        }

        .stats-card {
            min-height: 120px;
        }

        .stats-number {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .stats-label {
            font-size: 13px;
        }
    }

    /* STATS SESSION END */

    /* GALLERY SESSION START */
    .gallery-section {
        padding: 50px 0 30px;
        background: #fff;
    }

    .gallery-section .container {
        max-width: 1400px;
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .gallery-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 22px;
        flex-wrap: wrap;
    }

    .gallery-title-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .gallery-title {
        font-size: 34px;
        font-weight: 700;
        color: #202020;
        margin: 0;
        line-height: 1.1;
    }

    .gallery-subtitle {
        margin: 0;
        font-size: 11px;
        color: #9a9a9a;
        line-height: 1;
        position: relative;
        top: 2px;
    }

    .gallery-view-btn {
        border: none;
        background: transparent;
        color: #f39a57;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        padding: 0;
        transition: .3s ease;
    }

    .gallery-view-btn:hover {
        color: #e57f2e;
    }

    .gallery-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        align-items: start;
    }

    .gallery-column {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .gallery-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        background: #f3f3f3;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
        transition: all .35s ease;
    }

    .gallery-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .45s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
        opacity: 0;
        transition: .35s ease;
        pointer-events: none;
    }

    .gallery-item:hover::after {
        opacity: 1;
    }

    .gallery-zoom {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #222;
        font-size: 16px;
        opacity: 0;
        transform: translateY(8px);
        transition: .35s ease;
        z-index: 2;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

    .gallery-item:hover .gallery-zoom {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-tall {
        height: 460px;
    }

    .gallery-medium {
        height: 290px;
    }

    .gallery-hidden {
        display: none !important;
    }

    .gallery-lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: .35s ease;
    }

    .gallery-lightbox.active {
        opacity: 1;
        visibility: visible;
    }

    .gallery-lightbox-inner {
        position: relative;
        width: min(1000px, 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0.9);
        transition: .35s ease;
    }

    .gallery-lightbox.active .gallery-lightbox-inner {
        transform: scale(1);
    }

    .gallery-lightbox-image-wrap {
        width: 100%;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    }

    .gallery-lightbox-image {
        width: 100%;
        max-height: 85vh;
        object-fit: contain;
        display: block;
        background: #fff;
    }

    .gallery-close,
    .gallery-nav {
        position: absolute;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #222;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
        transition: .3s ease;
        z-index: 3;
        cursor: pointer;
    }

    .gallery-close {
        top: -15px;
        right: -15px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 18px;
    }

    .gallery-close:hover {
        transform: rotate(90deg);
        background: #ff9a52;
        color: #fff;
    }

    .gallery-nav {
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        font-size: 20px;
    }

    .gallery-prev {
        left: -60px;
    }

    .gallery-next {
        right: -60px;
    }

    .gallery-nav:hover {
        background: #ff9a52;
        color: #fff;
    }

    .gallery-counter {
        position: absolute;
        left: 50%;
        bottom: 15px;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        z-index: 2;
    }

    @media (max-width:991.98px) {
        .gallery-section .container {
            padding-left: 40px !important;
            padding-right: 40px !important;
        }

        .gallery-title {
            font-size: 28px;
        }

        .gallery-tall {
            height: 250px;
        }

        .gallery-medium {
            height: 150px;
        }
    }

    @media (max-width:767.98px) {
        .gallery-section {
            padding: 38px 0 24px;
        }

        .gallery-section .container {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        .gallery-title {
            font-size: 24px;
        }

        .gallery-columns {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .gallery-column {
            gap: 12px;
        }

        .gallery-tall,
        .gallery-medium {
            height: 190px;
        }

        .gallery-lightbox {
            padding: 18px;
        }

        .gallery-close {
            right: 5px;
            top: 5px;
            width: 42px;
            height: 42px;
        }

        .gallery-prev {
            left: 5px;
        }

        .gallery-next {
            right: 5px;
        }

        .gallery-nav {
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width:575.98px) {
        .gallery-title-wrap {
            gap: 8px;
        }

        .gallery-subtitle {
            font-size: 10px;
            width: 100%;
            top: 0;
        }

        .gallery-columns {
            grid-template-columns: 1fr;
        }

        .gallery-tall,
        .gallery-medium {
            height: 220px;
        }
    }

    /* GALLERY SESSION END */

    /* MARQUEE SESSION START */
    .brand-marquee-section {
        padding: 26px 30px;
        background: #fff;
        overflow: hidden;
    }

    .brand-marquee-container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .brand-marquee-wrap {
        position: relative;
        overflow: hidden;
    }

    .brand-marquee-wrap::before,
    .brand-marquee-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .brand-marquee-wrap::before {
        left: 0;
        background: linear-gradient(to right, #fff 0%, transparent 100%);
    }

    .brand-marquee-wrap::after {
        right: 0;
        background: linear-gradient(to left, #fff 0%, transparent 100%);
    }

    .brand-marquee-track {
        display: flex;
        width: max-content;
        animation: scroll 14s linear infinite;
    }

    .brand-marquee-wrap:hover .brand-marquee-track {
        animation-play-state: paused;
    }

    .brand-item {
        min-width: 245px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-shrink: 0;
        color: #6b6b6b;
        opacity: .7;
        transition: .5s;
    }

    .brand-item:hover {
        opacity: 1;
        color: #666;
    }

    .brand-icon {
        font-size: 22px;
    }

    .brand-name {
        font-size: 24px;
        font-weight: 600;
        white-space: nowrap;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @media(max-width:991px) {
        .brand-marquee-container {
            padding-left: 30px;
            padding-right: 30px;
        }

        .brand-item {
            min-width: 180px;
        }

        .brand-name {
            font-size: 18px;
        }
    }

    @media(max-width:767px) {
        .brand-marquee-container {
            padding-left: 20px;
            padding-right: 20px;
        }

        .brand-item {
            min-width: 150px;
        }

        .brand-name {
            font-size: 16px;
        }
    }

    /* MARQUEE SESSION END */

    /* FOOTER SESSION START */
    .travel-footer {
        margin-top: auto;
        background: #ffffff;
        border-top: 1px solid #ececec;
        position: relative;
        overflow: hidden;
    }

    .travel-footer::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 154, 82, 0.12), transparent 70%);
        pointer-events: none;
    }

    .travel-footer::after {
        content: "";
        position: absolute;
        bottom: -140px;
        left: -120px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(49, 198, 247, 0.12), transparent 70%);
        pointer-events: none;
    }

    .footer-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 50px;
        padding-right: 50px;
        position: relative;
        z-index: 2;
    }

    .footer-top {
        padding: 70px 0 35px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 18px;
        color: #1d1d1d;
    }

    .footer-logo i {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #31c6f7, #ff9a52);
        color: #fff;
        flex-shrink: 0;
        box-shadow: 0 10px 20px rgba(255, 154, 82, 0.18);
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.9;
        color: #6f6f6f;
        margin-bottom: 22px;
        max-width: 340px;
    }

    .footer-social {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f8f8f8;
        border: 1px solid #ededed;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #333;
        text-decoration: none;
        transition: .3s;
    }

    .footer-social a:hover {
        background: #ff9a52;
        color: #fff;
        transform: translateY(-3px);
    }

    .footer-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #181818;
    }

    .footer-links,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        text-decoration: none;
        color: #6b6b6b;
        font-size: 14px;
        transition: .3s;
    }

    .footer-links a:hover {
        color: #ff9a52;
        padding-left: 4px;
    }

    .footer-contact li {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        color: #6b6b6b;
        line-height: 1.8;
    }

    .footer-contact i {
        color: #ff9a52;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .footer-news-text {
        font-size: 14px;
        line-height: 1.8;
        color: #707070;
        margin-bottom: 14px;
    }

    .footer-form {
        display: flex;
        gap: 8px;
        border: 1px solid #e8e8e8;
        padding: 6px;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
    }

    .footer-form input {
        flex: 1;
        border: none;
        outline: none;
        padding-left: 8px;
        font-size: 14px;
        min-width: 0;
        background: transparent;
    }

    .footer-form button {
        border: none;
        padding: 10px 16px;
        border-radius: 8px;
        background: linear-gradient(135deg, #ff9f59, #f68a43);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        transition: .3s;
    }

    .footer-form button:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 20px rgba(246, 138, 67, 0.24);
    }

    .footer-bottom {
        border-top: 1px solid #eee;
        padding: 18px 0 22px;
    }

    .footer-bottom-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-bottom-wrap span {
        font-size: 14px;
        color: #777;
    }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-bottom-links a {
        text-decoration: none;
        color: #777;
        font-size: 14px;
        transition: .3s;
    }

    .footer-bottom-links a:hover {
        color: #ff9a52;
    }

    @media (max-width: 991px) {
        .footer-container {
            padding-left: 30px;
            padding-right: 30px;
        }
    }

    @media (max-width: 767px) {
        .footer-container {
            padding-left: 20px;
            padding-right: 20px;
        }

        .footer-form {
            flex-direction: column;
        }

        .footer-form input {
            height: 42px;
        }

        .footer-bottom-wrap {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-title {
            margin-bottom: 15px;
        }

        .footer-logo {
            font-size: 22px;
        }
    }

    /* FOOTER SESSION END */