:root {
    --main-cl: #0068A9;
    --sub-cl: #C4E7FD;
    --third-cl: #444444;
    --four-cl: #8BB9DE;
    --five-cl: #F39021;
    --container-w: 75rem;
}
body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 0.3rem rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
body::-webkit-scrollbar
{
    width: 0.417rem;
    background-color: #cedbff;
}
body::-webkit-scrollbar-thumb
{
    background-color: var(--main-cl);
}

.container-width, .full-width .ubermenu-nav, .container, .row {
    max-width: var(--container-w) !important;
}

input, optgroup, select, textarea{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    outline: none !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
body{
    overflow-x: hidden;
}
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --red: #f60f01;
            --red-dark: #b01a1f;
            --white: #ffffff;
            --sky: #6dc8f3;
            --sky-light: #a8dcf7;
            --text-dark: #1a1a1a;
            --text-grey: #555;
        }
        body {
            font-family: 'Nunito', sans-serif;
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        header {
            position: fixed;
            top: 0;
            z-index: 100;
            background: #fff;
            border-bottom: 0.15rem solid var(--red);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14rem;
            height: auto;
            box-shadow: 0 0.1rem 0.6rem rgba(0,0,0,0.08);
            width: 100%;
            top: 0;
        }
        .nav-logo img {
            height: 3.9rem;
            display: block;
        }
        .nav-center { flex: 1; display: flex; justify-content: center; }
        .search-bar-nav {
            display: flex;
            align-items: center;
            background: #f5f5f5;
            border: 0.075rem solid #e0e0e0;
            border-radius: 2.5rem;
            overflow: hidden;
            width: 17rem;
            transition: border-color 0.2s;
        }
        .search-bar-nav:focus-within { border-color: var(--red); }
        .search-bar-nav input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.4rem 0.8rem;
            font-family: 'Nunito', sans-serif;
            font-size: 0.85rem;
            outline: none;
            color: var(--text-dark);
        }
        .search-bar-nav button {
            background: var(--red);
            border: none;
            padding: 0.4rem 0.8rem;
            color: #fff;
            cursor: pointer;
            font-size: 0.85rem;
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            transition: background 0.2s;
        }
        .search-bar-nav button:hover { background: var(--red-dark); }
        .nav-right { display: flex; align-items: center; gap: 1rem; }

        /* Language dropdown */
        .lang-btn {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            background: none;
            border: 0.075rem solid #ddd;
            border-radius: 2.5rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            font-family: 'Nunito', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            transition: border-color 0.2s;
            position: relative;
            margin: 0;
            border: none !important;
        }
        .lang-btn:hover { border-color: var(--red); }
        .lang-btn svg { width:0.9rem; height:0.9rem; fill:var(--red); }
        .lang-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: #fff;
            border: 0.05rem solid #e0e0e0;
            border-radius: 0.6rem;
            box-shadow: 0 0.4rem 1.6rem rgba(0,0,0,0.12);
            padding: 1rem 1.4rem;
            min-width: 30rem;
            z-index: 200;
            transition: .5s all;
        }
        .lang-wrapper { position: relative; }
        .lang-wrapper:hover .lang-dropdown { display: block; }
        .lang-dropdown h4 {
            font-size: 0.95rem; font-weight: 700; color: var(--text-dark);
            margin-bottom: 0.8rem; padding-bottom: 0.4rem; border-bottom: 0.1rem solid #f0f0f0;
        }
        .lang-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.4rem 1rem; }
        .lang-item {
            display: flex; align-items: center; gap: 0.4rem;
            padding: 0.4rem 0.5rem; border-radius: 0.4rem; cursor: pointer;
            font-size: 0.85rem; font-weight: 600; color: var(--text-dark);
            transition: background 0.15s;
        }
        .lang-item.active,
        .lang-item:hover { background: #fff0f0; color: var(--red); }
        .lang-item .flag { font-size: 1.2rem; }

        .support-btn, .auth-link {
            font-family: 'Nunito', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-dark);
            text-decoration: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            transition: color 0.2s;
        }
        .support-btn:hover, .auth-link:hover { color: var(--red); }
        .support-btn svg, .auth-link svg { width:0.8rem; height:0.8rem; }
        .auth-link.signup { 
            background: var(--red); color: #fff; padding: 0.35rem 0.8rem; 
            border-radius: 2.5rem; transition: background 0.2s;
        }
        .auth-link.signup:hover { background: var(--red-dark); color:#fff; }

        /* ===== HERO ===== */
        .hero {
            min-height: calc(100vh - 3.245rem);
            background: linear-gradient(180deg, #b8e8fa 0%, #6dc8f3 40%, #4ab8e8 100%);
            /* background-image: url(../images/mg_sky.jpg); */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: bottom center;
            max-height: 100vh;
        }
        .hero{
            background-image: url(../images/beautiful-white-cloud-blue-sky_2.jpg);
    }
        /* Sky cloud texture */
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: 
                radial-gradient(ellipse 60% 30% at 20% 30%, rgba(255,255,255,0.35) 0%, transparent 70%),
                radial-gradient(ellipse 40% 20% at 75% 20%, rgba(255,255,255,0.25) 0%, transparent 60%),
                radial-gradient(ellipse 50% 25% at 50% 70%, rgba(255,255,255,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Globe */
        .globe-wrap {
            position: relative;
            width: auto;
            height: 35vh;
            width: 35vh;
            margin-bottom: 0;
            z-index: 2;
            clip-path: circle(43% at 50% 50%);
            display: flex;
            justify-content: center;
            sh: 0 0 10px #333;
        }
        .globe-canvas {
            width: 19rem; height: 19rem;
            border-radius: 50%;
            box-shadow: 
                0 0 3rem rgba(0,100,200,0.3),
                0 1.5rem 3rem rgba(0,0,0,0.25),
                inset 0 -1rem 2rem rgba(0,50,150,0.2);
        }
        .globe-shine {
            position: absolute;
            top: 8%; left: 12%;
            width: 35%; height: 35%;
            background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Search */
        .hero-search {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.95);
            border-radius: 2.5rem;
            /* overflow: hidden; */
            width: 100%;
            max-width: 41rem;
            box-shadow: 0 0.4rem 1.6rem rgba(0,0,0,0.15);
            z-index: 9;
            margin-bottom: 1.4rem;
            padding: .3rem .3rem .3rem 2rem;
        }
        .hero-search input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.8rem 1.2rem;
            font-family: 'Nunito', sans-serif;
            font-size: .8rem;
            outline: none;
            color: var(--text-dark);
            margin: 0;
            box-shadow: none !important;
            min-height: unset;
            height: auto;
            padding: 0;
            height: 2rem;
        }
        .hero-search button {
            background: var(--red);
            border: none;
            padding: .4rem 1rem;
            color: #fff;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: 0.05rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: background 0.2s;
            margin: 0;
            border-radius: 5rem;
            min-height: unset;
            line-height: normal;
        }
        .hero-search button:hover { background: var(--red-dark); }

        /* Active Market */
        .section-label {
            z-index: 2;
            text-align: center;
            margin-bottom: 1rem;
        }
        .section-label h2 {
             font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 2.6rem;
            font-weight: 900;
            color: #1a1a1a;
            letter-spacing: 0.05rem;
            text-transform: uppercase;
            margin: 0;
        }
        .section-label p {
            font-size: 1rem;
            color: #333;
            font-weight: 500;
            margin: 0;
        }
        .tour-cards {
            display: flex;
            gap: 0.8rem;
            z-index: 2;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 56rem;
            width: 100%;
        }
        .tour-card {
            position: relative;
            overflow: hidden;
            border-radius: 0.8rem;
            width: 12.75rem;
            height: 7.25rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.2);
        }
        .tour-card:hover { transform: translateY(-0.3rem) scale(1.03); box-shadow: 0 0.6rem 1.6rem rgba(0,0,0,0.3); }
        .tour-card .card-bg {
            width: 100%; height: 100%; object-fit: cover;
            background-size: cover; background-position: center;
        }
        .card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(transparent 30%, rgba(0,0,0,0.7) 100%);
        }
        .card-info {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 0.4rem 0.6rem;
        }
        .card-country {
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            color: rgba(255,255,255,0.85);
            font-weight: 600;
        }
        .card-count {
            font-size: 0.65rem; color: rgba(255,255,255,0.7);
        }
        .card-btn {
            display: block; background: var(--red);
            color: #fff; text-align: center;
             font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.85rem; font-weight: 800; letter-spacing: 0.05rem;
            padding: 0.25rem 0; border-radius: 0 0 0.2rem 0.2rem;
            text-transform: uppercase;
            transition: background 0.2s;
        }
        .card-btn:hover { background: var(--red-dark); }

        /* ===== FOOTER ===== */
        footer {
            background: var(--red);
            color: #fff;
            padding: .5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .footer-pay { display: flex; align-items: center; gap: 0.4rem; }
        .footer-pay span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05rem; opacity: 0.8; }
        .pay-icons { display: flex; gap: 0.3rem; }
        .pay-icon {
            background: #fff; border-radius: 0.2rem;
            width: 1.8rem; height: 1.1rem; display: flex; align-items: center; justify-content: center;
            font-size: 0.5rem; font-weight: 900; color: #333;
        }
        .footer-center {
            font-size: 0.7rem;
            opacity: 0.85;
            text-align: center;
        }
        .footer-center a {
            color: #fff; text-decoration: none; margin: 0 0.3rem;
        }
        .footer-center a:hover { text-decoration: underline; }
        .footer-apps { display: flex; gap: 0.4rem; }
        .app-btn {
            display: flex; align-items: center; gap: 0.3rem;
            background: #000; color: #fff; padding: 0.3rem 0.6rem;
            border-radius: 0.4rem; text-decoration: none; font-size: 0.7rem;
            font-weight: 600; border: 0.05rem solid rgba(255,255,255,0.3);
        }
        .app-btn:hover { background: #222; }

.globe-wrap video {
    width: 185%;
    height: auto;
}
.hero-search button svg {
    width: 1.2rem;
    height: auto;
}
.wrapper-notfound {
    min-height: calc(100vh - 2rem);
    padding: 0;
    background: #868686;
}
.nav-center {
    justify-content: flex-start;
    padding-left: 2rem;
    align-items: flex-end;
}

.header_title b {
     font-family: "Plus Jakarta Sans", sans-serif;
     font-size: 2.4rem;
     text-transform: uppercase;
     line-height: 1;

    /* gradient */
     background: linear-gradient(90deg, #ff6a00, #ee0979, #00c6ff, #ff6a00);
     background-size: 300%;

    /* apply gradient vào text */
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;

    /* animation */
     animation: gradientMove 4s linear infinite;
     font-weight: 900;
     padding-right: .4rem;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}
.header_title span,.nav-center>a {
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.56rem;
    line-height: normal;
    padding-bottom: .2rem;
}

a.header_title:hover {
    color: #f60f01;
}

.header_title {
    transition: .5s all;
}


footer {
  background-color: #f60f01;
  color: #fff;
  padding: 2rem 2rem 1.2rem;
  font-size: 0.75rem;
  justify-content: center;
}

/* TOP SECTION */
.footer-top {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  width: 79rem;
  justify-content: center;
}

/* COLUMNS */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 8rem;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 0.3rem;
  color: #fff;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: .8rem;
  line-height: 1.6;
  transition: color 0.2s;
  text-transform: none;
  position: relative;
  display: inline-block;
  width: auto;
  text-decoration: none !important;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

/* PAYMENT */
.footer-col.payment h4 {
  margin-top: 0.8rem;
  margin: 0 !important;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.payment-icons img {
  height: 1.2rem;
  border-radius: 0.15rem;
  background: #fff;
  padding: 0.05rem 0.2rem;
}

/* PARTNERS SECTION */
.footer-partners {
  flex: 1;
  min-width: 13rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 22rem;
}

.footer-partners h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  color: #fff;
  margin: 0 !important;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

.partner-logos img {
  height: 2.5rem;
  object-fit: contain;
  width: auto;
}

.partner-logos .dmca-badge img {
  filter: none;
  height: 2rem;
}

/* RIGHT SECTION */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  min-width: 12rem;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 700;
  transition: background 0.2s;
}

.social-icons a:hover {
  background: rgba(255,255,255,0.35);
}

.social-icons a.zalo { background: #0068ff; font-size: 0.5rem; font-weight: 900; }
.social-icons a.fb { background: #1877f2; }
.social-icons a.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icons a.x { background: #000; }
.social-icons a.yt { background: #ff0000; }
.social-icons a.tiktok { background: #010101; }

.footer-copyright {
  text-align: center;
  font-size: .8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.footer-copyright strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
}

.footer-globe {
  width: 3rem;
  height: 3rem;
  opacity: 0.85;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
.social-icons span{
    margin: 0 !important;
    padding: 0 !important;
}
.footer-col a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: .5s all;
}

.footer-col a:hover:before {
    width: 100%;
}

@keyframes globeScaleIn {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.globe-wrap {
  transform: scale(0.4); /* giữ trạng thái ban đầu khi đang delay */
  opacity: 0;
  animation: globeScaleIn 0.8s ease-out 1s forwards;
}
.autocomplete-suggestion .search-name {
    color: #333;
}

.searchform-wrapper .autocomplete-suggestions {
    max-height: 20rem;
}
/*MOBILE*/
@media (min-width: 1200px) {
    html {
        font-size: 1vw;
    }
}
@media only screen and (max-width: 1199px) {
  header {
    padding: 0 1rem;
    }
}

@media only screen and (max-width: 991px) {
  header {
    padding: 0 1rem;
    }
}
@media only screen and (max-width: 767px) {
  footer {
    align-items: center;
    justify-content: center;
    padding: 1rem;
    }

    .globe-wrap {
        width: 13rem;
        height: 14rem;
    }

    .hero-search input {
        font-size: 12px;
        padding-left: 1rem;
    }

    .hero-search {
        padding: .3rem;
        width: 94%;
    }

    .lang-btn {
        font-size: 0;
    }

    .lang-dropdown {
        left: 28%;
        transform: translateX(-50%);
        top: 2.4rem;
        position: fixed;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        min-width: 100vw;
    }

    .lang-grid {
        gap: .2rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .hero {
        max-height: unset;
        padding-top: 5rem;
    }
    .tour-card {
        width: 85%;
        height: 11.25rem;
    }
    .tour-cards {
        margin-bottom: 3rem;
    }

    .nav-logo img {
        height: 2.9rem;
    }

    header {
        padding: 0 1rem 0 0;
    }
     header {
        padding: 0 1rem 0 0;
    }
    .header_title {
    font-size: 1.6rem;
    }

    .nav-center {
        padding-left: .5rem;
    }

    .lang-btn {
        padding-right: 0;
        gap: 0rem;
    }

    header {
        padding-right: .3rem;
    }

    a.support-btn {
        font-size: 0;
    }

    .nav-logo img {
        height: 2.6rem;
    }
    .hero{
            /* background-image: url(../images/pexels-cimaglow-12738602.jpg); */
    }
    .section-label h2 {
        font-size: 1.5rem;
    }
    .header_title b {
    font-size: 1.2rem;
    }

    .header_title span {font-size: .8rem;}

    .nav-right {
        gap: .7rem;
    }
    .header_title span, .nav-center>a {
        font-size: .7rem;
    }

    .header_title {
        line-height: 1;
    }
      .footer-top {
    gap: 1.2rem;
  }
  .footer-right {
    align-items: flex-start;
    width: 100%;
  }
  .footer-copyright {
    text-align: left;
  }
  .footer-col {
    width: 100%;
}

.footer-col h4 {
    font-size: 1rem;
}

.footer-col a {
    font-size: .9rem;
}
}