﻿/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
@font-face {
    font-family: 'GT Eesti';
    src: url(../../../../../../../../../themes/themebysang/assets/css/GT-Eesti/GT-Eesti-Text-Regular-Trial.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti';
    src: url(../../../../../../../../../themes/themebysang/assets/css/GT-Eesti/GT-Eesti-Text-Medium-Trial.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti';
    src: url(../../../../../../../../../themes/themebysang/assets/css/GT-Eesti/GT-Eesti-Text-Bold-Trial.otf) format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root {
    --main: #17aba2;
    --main-light: #00e2d4;
    --main-focus: #93f1eb;
    --main-dark: #166c67;
    --second: #F5A623;
    --second-light: #FFD166;
    --second-focus: #FFE8B3;
    --second-dark: #D4700A;
    --color-primary:   #e8912a;
    --color-dark:      #1a1a1a;
    --color-text:      #444;
    --color-light:     #f7f7f7;
    --color-white:     #ffffff;
    --color-footer-bg: #1a1a1a;
    --color-footer-text: #ccc;
    --header-height:   72px;
    --font-base:       "GT Eesti",-apple-system,BlinkMacSystemFont,"Segoe UI", Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-white);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-primary); }

img { max-width: 100%; height: auto; display: block; }


/* ============================================================
   TOPBAR
   ============================================================ */
.site-topbar {
    background: var(--main-light);
    color: var(--color-white);
}

.site-topbar .nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-topbar .nav > li {
    padding: 8px 0;
}

.wn-all-tours-header {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    color: var(--color-dark);
    text-align: center;
    text-decoration: none;
}

.wn-all-tours-header:hover {
    color: var(--color-white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    height: var(--header-height);
}

.header-inner {
    height: var(--header-height);
    gap: 24px;
}

/* Logo */
.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 48px;
    width: auto;
}

/* Nav */
.primary-nav {
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li > a {
    display: block;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    border-radius: 4px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
    color: var(--main);
}

/* Sub-menus */
.nav-menu li {
    position: relative;
}

.nav-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: var(--color-white);
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--color-dark);
    transition: color .15s, background .15s;
}

.nav-menu .sub-menu a:hover {
    color: var(--color-primary);
    background: var(--color-light);
}

/* Hamburger */
.menu-toggle {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.menu-toggle .bar {
    display: block;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--wpr-bg-12cb2877-859c-469b-a257-8864ba65186b) center center;background-size:cover;padding-top:150px;
    color: var(--color-footer-text);
    font-size: 14px;
    position:relative;
}
footer:before{background:linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));position:absolute;z-index:0;left:0;right:0;top:0;bottom:0;content:"";}
.footer-main {
    padding: 60px 0 40px;position:relative;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 18px;
}

/* Col 1 */
.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-logo a {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.footer-address {
    margin: 0;
    line-height: 1.7;
}

/* Col 2 */
.footer-col--contact p {
    margin: 0 0 8px;
    line-height: 1.6;
}

.footer-col--contact a:hover { color: var(--color-primary); }

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: background .2s;
}

.footer-social a:hover { background: var(--color-primary); color: var(--color-white); }

.footer-social-zalo {
    font-size: 12px;
    font-weight: 700;
    width: 36px !important;
    height: 36px !important;
}

/* Col 3 */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    font-size: 14px;
    color: var(--color-footer-text);
    transition: color .2s, padding-left .2s;
}

.footer-nav-list a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

/* Col 4: Destinations grid */
.footer-destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.footer-dest-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    display: block;
}

.footer-dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.footer-dest-item:hover img { transform: scale(1.08); }

.footer-dest-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    text-align: center;
}

/* Col 4: Gallery grid */
.footer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.footer-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.footer-gallery-item:hover img { transform: scale(1.08); }

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;position:relative;
}

.footer-bottom-inner {
    gap: 12px;
    margin-bottom: 12px;
}

.footer-license {
    font-size: 13px;
}

.footer-license-label {
    margin-right: 6px;
    opacity: .7;
}

.footer-license-num {
    font-weight: 600;
    color: var(--color-white);
}

.footer-copyright {
    font-size: 13px;
    opacity: .7;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-payment-label {
    font-size: 13px;
    opacity: .7;
    /* white-space: nowrap; */
}

.footer-payment-img {
    height: 28px;
    width: auto;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 480px;
    overflow: hidden;
}


/* Swiper fills the hero */
.hero-swiper {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin: 0 0 40px;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

/* Search form */
.hero-search {
    display: flex;
    align-items: center;
    width: 650px;
    max-width: 90%;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-size: 16px;
    color: var(--color-dark);
    background: transparent;
    min-width: 0;
}

.hero-search-input::placeholder {
    color: #999;
}

.hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 56px;
    background: var(--main);
    border: none;
    cursor: pointer;
    color: var(--color-white);
    flex-shrink: 0;font-size:18px;width:150px;border-radius:50px;margin:3px;
    transition: background .2s;
}

.hero-search-btn:hover {
    background: #d4551f;
}


/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */
.homepage-section {
    padding: 64px 0;
}

.homepage-section--alt {
    background: var(--color-light);
}

.section-header {
    margin-bottom: 32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--main);
    margin: 0 0 6px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.section-view-all {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--main);
    border: 1.5px solid var(--main);
    padding: 8px 20px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.section-view-all:hover {
    background: var(--main);
    color: var(--color-white);
}


/* â”€â”€ Why Book With Us Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-book-section {
    background: var(--color-light);
}

.why-card {
    background: var(--color-white);
    border: 1px solid var(--main-light);
    border-radius: 20px;
    padding: 15px;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.09);
}

.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px; 
}

.why-card-icon--green  { background: #D1FAE5; color: #2D9B6F; }
.why-card-icon--yellow { background: #FEF3C7; color: #D97706; }
.why-card-icon--blue   { background: #DBEAFE; color: #2563EB; }
.why-card-icon--purple { background: #EDE9FE; color: #7C3AED; }

.why-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.why-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.why-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.why-rating-stars {
    font-size: 20px;
    color: #F5A623;
    letter-spacing: 2px;
    line-height: 1;
}

.why-rating-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}
@media (max-width: 767px) {
   .why-book-section .why-book-content{width:100%;overflow:scroll;} .why-book-section .row{width:1200px;} .why-book-section .row .col-12{width:300px;}
}

/* â”€â”€ Tour Card v2 (Bylocal design, used in template-parts) â”€â”€â”€â”€ */
.tour-card-v2 {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}

.tour-card-v2:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    transform: translateY(-3px);
}

.tour-card-v2__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}

.tour-card-v2__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.tour-card-v2__image img,
.tour-card-v2__no-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}

.tour-card-v2__no-image {
    background: var(--color-light);
}

.tour-card-v2:hover .tour-card-v2__image img {
    transform: scale(1.06);
}

/* Badges */
.tour-badge {
    position: absolute;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.tour-badge--bestseller {
    top: 10px;
    left: 10px;
    background: var(--color-primary);
    color: var(--color-white);
}

.tour-badge--rating {
    top: 10px;
    right: 10px;font-size:13px;
    background: rgba(0,0,0,.55);
    color: #fff;
}
.tour-badge--rating svg{width:14px;height:14px;color:#ffee00}
.tour-badge__count {
    opacity: .75;
    font-weight: 400;
}

/* Body */
.tour-card-v2__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-v2__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.tour-card-v2__dest,
.tour-card-v2__duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
    line-height: 1;
}

.tour-card-v2__dest svg,
.tour-card-v2__duration svg {
    flex-shrink: 0;
    color: var(--main);
}

.tour-card-v2__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
    color: var(--color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-v2__title a {
    color: var(--color-dark);
    transition: color .2s;
}

.tour-card-v2__title a:hover {
    color: var(--color-primary);
}

.tour-card-v2__desc {
    font-size: 13px;
    line-height: 1.5;
    color: #777;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-v2__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.tour-card-v2__price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 1px;
}

.tour-card-v2__price-from {
    font-size: 11px;
    color: #aaa;
}

.tour-card-v2__price-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.tour-card-v2__price-del {
    font-size: 11px;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
}

.tour-card-v2__btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white) !important;
    background: var(--main);
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s;
}

.tour-card-v2__btn:hover {
    background: var(--main-dark);
    color: var(--color-white);
}



/* â”€â”€ Destination Category Slide â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cat-slide {
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.cat-slide a {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.cat-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.cat-slide:hover img {
    transform: scale(1.07);
}

.cat-slide .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 14px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.72));
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.cat-slide .product-count {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.45);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cat-slide .product-count img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: inline;
    filter: brightness(0) invert(1);
}


/* â”€â”€ Travel Advice (Blog) Slide â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tour-post {
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.tour-post a {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.tour-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.tour-post:hover img {
    transform: scale(1.07);
}

.tour-post a > div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 14px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.76));
}

.tour-post a > div span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
    display: block;
}

.tour-advice-slider-wrapper {
    position: relative;
}


/* ============================================================
   MOBILE FULL-SCREEN OVERLAY MENU
   ============================================================ */

/* Overlay container */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: rgba(10, 10, 10, 0.96);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Semi-transparent backdrop (behind overlay, above content) */
.mobile-overlay-backdrop {
    display: none;
}

.mobile-overlay-inner {
    padding: 24px 28px 48px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Close button (Ã—) */
.mobile-overlay-close {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 0;
    width:25px;
    height:25px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    margin-bottom: 16px;
}

.mobile-overlay-close .bar {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
}

.mobile-overlay-close .bar:nth-child(1) { transform: rotate(45deg); }
.mobile-overlay-close .bar:nth-child(2) { transform: rotate(-45deg); }

/* Mobile menu list */
.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-nav-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Top-level items: row with link + chevron */
.mobile-nav-menu > li > .mobile-item-row {
    display: flex;
    align-items: center;
    min-height: 60px;
}

.mobile-nav-menu > li > .mobile-item-row > a {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 0 4px;
    transition: color .2s;
}

.mobile-nav-menu > li > .mobile-item-row > a:hover {
    color: var(--color-primary);
}

/* Chevron toggle button */
.mobile-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    flex-shrink: 0;
    transition: color .2s;
}

.mobile-chevron svg {
    transition: transform .3s ease;
}

.mobile-chevron.open svg {
    transform: rotate(180deg);
}

.mobile-chevron:hover {
    color: var(--color-primary);
}

/* Sub-menus: collapsed by default with max-height animation */
.mobile-nav-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.mobile-nav-menu .sub-menu.open {
    max-height: 600px;
}

.mobile-nav-menu .sub-menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-menu .sub-menu a {
    display: block;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color .2s, padding-left .2s;
}

.mobile-nav-menu .sub-menu a:hover {
    color: var(--color-primary);
    padding-left: 24px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
    /* Homepage sections */
    .homepage-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    /* Hero */
    .hero {
        height:400px;min-height:400px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .hero-search {
        width: 90%;
    }

    .hero-search-input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .hero-search-btn {
        padding: 0 18px;
        height: 50px;
    }

    /* Footer */
    .site-footer{padding-top:0;}
    .footer-payment {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-payment-img {
        max-width: 100%;
        height: auto;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-license,
    .footer-payment,
    .footer-copyright {
        width: 100%;
    }
}


/* ============================================================
   Tour Slider
   ============================================================ */

/* Pagination: visible mobile-only via JS + CSS */
.tour-slider-swiper .swiper-pagination,
.destination-swiper .swiper-pagination,
.blog-swiper .swiper-pagination {
    display: none;
    position: relative;
    bottom: auto;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .tour-slider-swiper .swiper-pagination,
    .destination-swiper .swiper-pagination,
    .blog-swiper .swiper-pagination {
        display: block;
    }
}

.tour-slider-swiper .swiper-pagination-bullet-active,
.destination-swiper .swiper-pagination-bullet-active,
.blog-swiper .swiper-pagination-bullet-active {
    background: var(--main);
}


/* ============================================================
   Destination Slider
   ============================================================ */

.destination-section { }


/* ============================================================
   Travel Advice
   ============================================================ */

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    transform: translateY(-3px);
}

.blog-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}

.blog-card__image > a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card__no-image {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-light);
}

.blog-card:hover .blog-card__img {
    transform: scale(1.06);
}

.blog-card__cat {
    display: inline-block;
    color: var(--main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s;
}

.blog-card__cat:hover {
    color: var(--main-dark);
}

.blog-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color .2s;
}

.blog-card__title a:hover {
    color: var(--color-primary);
}

.blog-card__excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    gap: 8px;
}

.blog-card__date {
    font-size: 12px;
    color: #aaa;
    flex-shrink: 0;
}

.blog-card__btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--main);
    border: 1.5px solid var(--main);
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.blog-card__btn:hover {
    background: var(--main);
    color: #fff;
}

/* Swiper slide height normalizer for blog cards */
.blog-swiper .swiper-slide {
    height: auto;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.faq-item[open] {
    border-color: var(--main);
    box-shadow: 0 4px 16px rgba(45, 155, 111, .10);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color .2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-item[open] .faq-question {
    color: var(--main);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background .2s, transform .3s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s, background .2s;
}

.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px;  height: 10px; }

.faq-item[open] .faq-icon {
    background: var(--main);
    transform: rotate(45deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background: #fff;
}

.faq-answer {
    padding: 0 24px 20px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    margin: 16px 0 0;
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 16px;
    }
}


/* ============================================================
   INSTAGRAM GALLERY SECTION
   ============================================================ */
.instagram-section {
    padding: 64px 0;
}

.instagram-section__header {
    margin-bottom: 32px;
}

.instagram-section__handle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 6px;
    transition: opacity .2s;
}

.instagram-section__handle:hover {
    opacity: .75;
    color: #C13584;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    background: #ddd;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.instagram-item:hover img {
    transform: scale(1.07);
}

.instagram-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .3s ease;
}

.instagram-item__overlay svg {
    opacity: 0;
    transform: scale(.8);
    transition: opacity .3s ease, transform .3s ease;
}

.instagram-item:hover .instagram-item__overlay {
    background: rgba(0, 0, 0, .45);
}

.instagram-item:hover .instagram-item__overlay svg {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 991px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .hero {
        height:300px;min-height:300px;
    }.hero-title{font-size:25px;}
    .instagram-section {
        padding: 40px 0;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* ============================================================
   Instagram + FAQ — side by side
   ============================================================ */
/* ── Instagram + FAQ — side by side ───────────────────────────────── */

.ig-faq-wrapper {
    background: var(--color-light);
}

/* Outer container becomes the 2-col grid */
.ig-faq-wrapper > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding-top: 0;
    padding-bottom: 0;
}

/* Each section fills its column */
.ig-faq-wrapper .homepage-faq-section,
.ig-faq-wrapper .instagram-section {
    background: transparent;
    padding: 60px 0 60px;
}

/* Neutralise the inner .container so it doesn't double-pad */
.ig-faq-wrapper .homepage-faq-section > .container,
.ig-faq-wrapper .instagram-section > .container {
    padding: 0;
    max-width: none;
}

/* Subtle vertical divider on the right column */
.ig-faq-wrapper .instagram-section {
    padding-left: 48px;
    /* border-left: 1px solid #e0e0e0; */
}

/* Left-align section headings inside columns */
.ig-faq-wrapper .instagram-section__header,
.ig-faq-wrapper .homepage-faq-section .text-center {
    text-align: left;
}

.ig-faq-wrapper .homepage-faq-section .mb-5 {
    margin-bottom: 28px !important;
}

/* FAQ: fill column width */
.ig-faq-wrapper .faq-list {
    max-width: none;
}

/* Instagram: 4 cols fit neatly in ~50% width */
.ig-faq-wrapper .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* "View more" link left-aligned */
.ig-faq-wrapper .instagram-section .text-center {
    text-align: left;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 991px) {
    .ig-faq-wrapper > .container {
        grid-template-columns: 1fr;
    }

    .ig-faq-wrapper .instagram-section {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }

    .ig-faq-wrapper .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ig-faq-wrapper .faq-list {
        max-width: 780px;
    }
}

@media (max-width: 575px) {
    .ig-faq-wrapper .homepage-faq-section,
    .ig-faq-wrapper .instagram-section {
        padding: 40px 0;
    }

    .ig-faq-wrapper .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: var(--main);
    padding: 64px 0;
}

.testimonials-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1.2;
}

.testimonials-swiper {
    padding-bottom: 8px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.testimonial-card__quote {
    color: var(--main);
    margin-bottom: 16px;
    flex-shrink: 0;
    line-height: 0;
}

.testimonial-card__content {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    flex: 1;
    margin: 0 0 24px;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-light);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card__info {
    flex: 1;
    min-width: 0;
}

.testimonial-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #F5A623;
}

/* White circular prev/next buttons */
.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    color: var(--main);
}

.testimonials-section .swiper-button-prev::after,
.testimonials-section .swiper-button-next::after {
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section .section-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }
}

.swiper-pagination{position:relative !important;margin-top:30px;}
.swiper-button-next, .swiper-button-prev{width:40px!important;height:40px!important;background:#fff;box-shadow:0 0 3px #00000066;border-radius:100%;}
.swiper-button-next:after, .swiper-button-prev:after{font-size:22px!important;}
/* â”€â”€ About Saigon Adventure â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.homepage-about {
    padding: 80px 0;
}

.homepage-about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.homepage-about__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #111;
}

.homepage-about__subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

.homepage-about__body {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.homepage-about__body p {
    margin-bottom: 1.1rem;
}

.homepage-about__body p:last-child {
    margin-bottom: 0;
}

.homepage-about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 40px 0;
    list-style: none;
    padding: 0;
}

.homepage-about__feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafb;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
}

.homepage-about__feature-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.homepage-about__buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.homepage-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, background .2s;
    white-space: nowrap;
}

.homepage-about__btn--primary {
    background: var(--main);
    color: #fff;
    border: 2px solid var(--main);
}

.homepage-about__btn--primary:hover {
    opacity: .88;
    color: #fff;
}

.homepage-about__btn--secondary {
    background: transparent;
    color: var(--main);
    border: 2px solid var(--main);
}

.homepage-about__btn--secondary:hover {
    background: #2f9d6912;
    color:  var(--main);
}

.homepage-about__image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    aspect-ratio: 4 / 5;
}

.homepage-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-about__video-trigger {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.homepage-about__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    pointer-events: none;
}

.homepage-about__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .9);
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
    pointer-events: none;
}

.homepage-about__play::before {
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
}

.homepage-about__play svg {
    position: relative;
    z-index: 1;
    margin-left: 4px;
}

.homepage-about__video-trigger:hover .homepage-about__play {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Tablet */
@media (max-width: 991px) {
    .homepage-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .homepage-about__image {
        order: -1;
        aspect-ratio: 16 / 9;
    }

    .homepage-about__title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .homepage-about {
        padding: 50px 0;
    }

    .homepage-about__title {
        font-size: 26px;
    }

    .homepage-about__features {
        grid-template-columns: 1fr;
        margin: 28px 0;
    }

    .homepage-about__buttons {
        flex-direction: column;
    }

    .homepage-about__btn {
        width: 100%;
        text-align: center;
    }
}

.homepage-cta {
    background: #1c9d72;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.homepage-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.homepage-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
/* Sá»­a láº¡i chá»— nÃ y 
.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: white;
    color: #1c9d72;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1c9d72;
}
*/
/* â”€â”€ Floating Contact â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* 2 expanding rings emanate outward — mimics hotline-phone-ring effect */
@keyframes fc-pulse {
    0%   { box-shadow: 0 0 0 0    rgba(47,157,105,.7),  0 0 0 0    rgba(47,157,105,.4); }
    50%  { box-shadow: 0 0 0 12px rgba(47,157,105,.2),  0 0 0 0    rgba(47,157,105,.4); }
    100% { box-shadow: 0 0 0 22px rgba(47,157,105,0),   0 0 0 12px rgba(47,157,105,0);  }
}

@keyframes fc-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, .55); }
    50%       { box-shadow: 0 0 0 5px rgba(76, 175, 80, 0); }
}

/* Phone-ring shake for the chat icon */
@keyframes fc-fab-shake {
    0%,50%,100% { transform: rotate(0)     skew(1deg); }
    10%,30%     { transform: rotate(-22deg) skew(1deg); }
    20%,40%     { transform: rotate(22deg)  skew(1deg); }
}

/* â”€â”€ Desktop: individual circular icon buttons that expand on hover â”€â”€ */
.fc-bar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

@media (max-width: 991px) {
    .fc-bar { display: none; }
}

.fc-btn {
    display: flex;
    align-items: center;
    height: 58px;
    width: 58px;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: width 300ms ease, box-shadow 300ms ease;
    flex-shrink: 0;
}
.fc-btn--mail{background:#fff;color:#333;}
.fc-btn:hover {
    width: 140px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}
.fc-btn--mail:hover{color:#333;}

.fc-btn__label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    padding-left: 0;
    transition: max-width 300ms ease, opacity 200ms ease, padding-left 300ms ease;
}

.fc-btn:hover .fc-btn__label {
    max-width: 150px;
    opacity: 1;
    padding-left:0;
}

.fc-btn__icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-btn__icon img{width:32px;height:32px;/* border-radius:100%; */}.fc-btn__icon svg{width:32px;height:32px;}
.fc-btn--whatsapp { background: #25D366; }
.fc-btn--zalo     { background: #0068FF; }
.fc-btn--call     { background: #2f9d69; }

/* â”€â”€ Mobile FAB â”€â”€ */
.fc-fab-wrap {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

@media (min-width: 992px) {
    .fc-fab-wrap { display: none; }
}

.fc-fab {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--main);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: fc-pulse 1.5s ease-out infinite;
    transition: transform .2s ease;
}

.fc-fab:hover { transform: scale(1.06); }

.fc-fab svg {
    animation: fc-fab-shake 1.8s ease-in-out infinite;
    transform-origin: center center;
}

.fc-fab__dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 13px;
    height: 13px;
    background: var(--main-light);
    border-radius: 50%;
    border: 2px solid #fff;
    animation: fc-dot-pulse 2s ease-in-out infinite;
}

.fc-fab-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.fc-fab-menu.is-open {
    display: flex;
}

.fc-fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .1);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px) scale(0.88);
    pointer-events: none;
    transition: opacity 250ms ease, transform 250ms ease, box-shadow .15s ease;
}

.fc-fab-item:nth-child(1) { transition-delay: 0ms; }
.fc-fab-item:nth-child(2) { transition-delay: 50ms; }
.fc-fab-item:nth-child(3) { transition-delay: 100ms; }

.fc-fab-menu.is-open .fc-fab-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.fc-fab-item--mail .fc-fab-item__icon{color:#f50000;}
.fc-fab-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .14);
    color: #111;
}

.fc-fab-item__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.fc-fab-item--whatsapp .fc-fab-item__icon { background: #25D366; }
.fc-fab-item--call     .fc-fab-item__icon { background: #2f9d69; }
.fc-fab-item--zalo     .fc-fab-item__icon { background: #0068FF; }

/* ============================================================
   EXPLORE VIETNAM â€” SEO CONTENT SECTION
   ============================================================ */
.explore-vietnam {
    background: var(--color-light);
    padding: 60px 0;
    border-top: 1px solid #e8e8e8;
}

.explore-vietnam__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 20px;
    line-height: 1.3;
}

.explore-vietnam__body {
    margin-bottom: 28px;
}

.explore-vietnam__body--has-image {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.explore-vietnam__content {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.75;
}

.explore-vietnam__content p {
    margin: 0 0 12px;
}

.explore-vietnam__content p:last-child {
    margin-bottom: 0;
}

.explore-vietnam__img-wrap {
    position: sticky;
    top: 100px;
}

.explore-vietnam__img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.explore-vietnam__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.explore-vietnam__chip {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--color-dark);
    background: #fff;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

.explore-vietnam__chip:hover {
    border-color: var(--main);
    color: var(--main);
    background: #f0faf5;
}

@media (max-width: 767px) {
    .explore-vietnam {
        padding: 40px 0;
    }

    .explore-vietnam__title {
        font-size: 1.125rem;
    }

    .explore-vietnam__body--has-image {
        grid-template-columns: 1fr;
    }

    .explore-vietnam__img-wrap {
        position: static;
        order: -1;
    }

    .explore-vietnam__img {
        max-height: 260px;
        object-fit: cover;
    }

    .explore-vietnam__content {
        font-size: 0.875rem;
    }

    .explore-vietnam__chip {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* ============================================================
   DESTINATION ARCHIVE PAGE  (/destinations/)
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.dest-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background: #fff;
    background-size: cover;
    background-position: center;
}

.dest-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 100%);
}

.dest-hero__content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    color: #fff;
}

.dest-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
    max-width: 700px;
}

.dest-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 0;
    opacity: .85;
    /* max-width: 620px; */
    line-height: 1.65;
}

/* ── Grid Section ────────────────────────────────────────── */
.dest-grid-section {
    padding: 72px 0;
    background: #fff;
}

/* ── Destination Cards ───────────────────────────────────── */
.dest-card {
    position: relative;
    display: block;
    height: 320px;width:100%;
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    transition: transform .28s ease, box-shadow .28s ease;
    background: linear-gradient(135deg, var(--main) 0%, var(--main-dark) 100%);
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,.22);
    color: #fff;
}

.dest-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.dest-card:hover .dest-card__img {
    transform: scale(1.08);
}

.dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 28%, rgba(0,0,0,.72) 100%);
    pointer-events: none;
}

.dest-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    letter-spacing: .02em;
}

.dest-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 22px 20px;
}

.dest-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.25;
    color: #fff;
}

.dest-card__desc {
    font-size: .8125rem;
    margin: 0 0 13px;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8125rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background .2s, gap .2s;
}

.dest-card__cta::after {
    content: '→';
}

.dest-card:hover .dest-card__cta {
    background: rgba(255,255,255,.28);
    gap: 10px;
}

/* ── SEO Section ───────────────────────────────────────────
.dest-seo-section {
    padding: 64px 0;
    background: var(--color-light);
    border-top: 1px solid #e8e8e8;
}

.dest-seo-body {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.dest-seo-title {
    font-size: clamp(1.4rem, 3vw, 1.875rem);
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--color-dark);
}

.dest-seo-content {
    font-size: .9375rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

.dest-seo-content p {
    margin: 0 0 12px;
}

.dest-seo-content p:last-child {
    margin-bottom: 0;
}
*/
/* ── FAQ Section ─────────────────────────────────────────── */
.dest-faq-section {
    padding: 64px 0 80px;
    background: #fff;
}

.dest-faq-title {
    font-size: clamp(1.4rem, 3vw, 1.875rem);
    font-weight: 700;
    margin: 0 0 40px;
    color: var(--color-dark);
    text-align: center;
}

.dest-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.dest-faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.dest-faq-item:first-child {
    border-top: 1px solid #e8e8e8;
}

.dest-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    color: var(--color-dark);
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color .2s;
}

.dest-faq-btn:hover,
.dest-faq-btn[aria-expanded="true"] {
    color: var(--main);
}

.dest-faq-btn__text {
    flex: 1;
}

.dest-faq-btn__icon {
    flex-shrink: 0;
    transition: transform .25s ease;
    color: inherit;
}

.dest-faq-btn[aria-expanded="true"] .dest-faq-btn__icon {
    transform: rotate(180deg);
}

/* Smooth expand/collapse using CSS grid trick */
.dest-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.dest-faq-btn[aria-expanded="true"] + .dest-faq-panel {
    grid-template-rows: 1fr;
}

.dest-faq-panel__inner {
    overflow: hidden;
    font-size: .9375rem;
    color: #555;
    line-height: 1.75;
    padding-bottom: 20px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .dest-hero { min-height: 360px; }
    .dest-grid-section { padding: 52px 0; }
    .dest-card { height: 280px; }
    .dest-seo-section { padding: 52px 0; }
    .dest-faq-section { padding: 52px 0 64px; }
}

@media (max-width: 575px) {
    .dest-hero { min-height: 280px; }
    .dest-hero__content { padding: 60px 20px; }
    .dest-grid-section { padding: 36px 0; }
    .dest-card { height: 240px; }
    .dest-seo-section { padding: 40px 0; }
    .dest-faq-section { padding: 40px 0 56px; }
    .dest-faq-btn { font-size: .9375rem; }
}

/* ============================================================
   DESTINATION TAXONOMY — Tour grid
   ============================================================ */

.dest-tours-section {
    padding: 64px 0 50px;
}

.dest-tours-header {
    margin-bottom: 28px;
}

.dest-tours-count {
    font-size: .9375rem;
    color: #666;
    margin: 0;
}

/* Toolbar: count + sort */
.dest-tours-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.dest-tours-count {
    font-size: .9375rem;
    color: #555;
    margin: 0;
}

.dest-tours-count strong { color: #111; }

.dest-tours-sort select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 36px 8px 14px;
    font-size: .9rem;
    color: #333;
    cursor: pointer;
    transition: border-color .2s;
}

.dest-tours-sort select:focus {
    outline: none;
    border-color: var(--main);
}

/* Pagination */
.dest-pagination {
    margin-top: 48px;
}

.dest-pagination .page-link {
    color: var(--main);
    border-radius: 8px !important;
    border-color: #e0e0e0;
    padding: 8px 14px;margin: 0 8px;
    font-size: .9rem;
    transition: background .2s, color .2s, border-color .2s;
}

.dest-pagination .page-item.active .page-link {
    background: var(--main);
    border-color: var(--main);
    color: #fff;
}

.dest-pagination .page-item:not(.active) .page-link:hover {
    background: var(--color-light);
    border-color: var(--main);
    color: var(--main);
}

.dest-pagination .page-item.disabled .page-link {
    color: #aaa;
    pointer-events: none;
}

/* ── Product category description ─────────────────────────────────────── */
.cat-description {
    padding: 64px 0 72px;
    background: var(--color-light, #f7f7f7);
}

.cat-description__cta {
    text-align: center;
    margin-top: 36px;
}

.cat-description__cta .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--main, #2D9B6F);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .5px;
    border-radius: 6px;
    transition: background .2s, transform .2s;
    text-decoration: none;
}

.cat-description__cta .btn-primary:hover {
    background: var(--main-dark, #1A6B4A);
    color: #fff;
    transform: translateY(-2px);
}

/* ── detail-content — WYSIWYG rich text ──────────────────────────────── */
.detail-content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text, #444);overflow:auto;
}

.detail-content > *:first-child { margin-top: 0; }
.detail-content > *:last-child  { margin-bottom: 0; }

.detail-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--main);
    margin: 1rem 0 .75rem;
    padding-bottom: .4rem;
    border-bottom: 3px solid var(--main, #2D9B6F);
    /* display: inline-block; */
}

.detail-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--color-dark, #1a1a1a);
    margin: 1.75rem 0 .5rem;
}
.detail-content .tour-card-v2__title{margin-top:0;font-size:1rem;}
.detail-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--main, #2D9B6F);
    margin: 1.25rem 0 .4rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.detail-content p {
    margin: 0 0 1.1rem;
}

/* Custom bullet list */
.detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.detail-content ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .55rem;
}

.detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main, #2D9B6F);
    flex-shrink: 0;
}
.ez-toc-list li::before{content:"";display:none!important;}
.detail-content ol {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
}

.detail-content ol li {
    margin-bottom: .55rem;
    padding-left: .25rem;
}

.detail-content ol li::marker {
    color: var(--main, #2D9B6F);
    font-weight: 700;
}

.detail-content a {
    color: var(--main, #2D9B6F);
}

.detail-content a:hover { color: var(--main-dark, #1A6B4A); }

.detail-content strong,
.detail-content b {
    font-weight: 700;
    color: inherit;
}

.detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.25rem 0 0;
    display: block;
}
.detail-content figcaption{text-align:center;font-style:italic;}
.detail-content iframe {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    margin: 1.25rem 0;
}

.detail-content blockquote {
    border-left: 4px solid var(--main, #2D9B6F);
    background: #fff;
    margin: 1.75rem 0;
    padding: 1.25rem 1.75rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.detail-content blockquote p:last-child { margin-bottom: 0; }

.detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: .9rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.detail-content table th {
    background: var(--main, #2D9B6F);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .3px;
}

.detail-content table td {
    padding: 11px 16px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.detail-content table tr:last-child td { border-bottom: none; }

.detail-content table tr:nth-child(even) td {
    background: #fafafa;
}
.detail-content figure{max-width:100%!important;}
.detail-content hr{display:none;}
.ez-toc-title-container ul li{list-style:none;}

/* ── Article card sliders (exp-articles-section) ────────────────────────── */
.exp-articles-section {
    padding: 56px 0;
}

.exp-articles-section--secondary {
    padding-top: 0;
}

.exp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
}

.exp-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    transform: translateY(-3px);
}

.exp-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}

.exp-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.exp-card:hover .exp-card__img {
    transform: scale(1.06);
}

.exp-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.exp-card__desc {
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.exp-card__btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--main);
    border: 1.5px solid var(--main);
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.exp-card__btn:hover {
    background: var(--main);
    color: #fff;
}

.article-cards-swiper .swiper-slide {
    height: auto;
}

/* ── Category promo banner (Banner dưới bài kinh nghiệm) ─────────────────── */
.cat-promo-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
}

.cat-promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.cat-promo-banner__content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cat-promo-banner__content h2,
.cat-promo-banner__content h3,
.cat-promo-banner__content strong {
    color: #fff;
}

.cat-promo-banner__content h2 {
    border-bottom-color: #fff;
}

/* ── Chúng tôi có thể làm ─────────────────────────────────────────────── */
.cat-can-do-section {
    padding: 56px 0;
}

.can-do-card {
    position: relative;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.can-do-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.75) 100%);
}

.can-do-card__body {
    position: relative;
    z-index: 1;
    padding: 24px;
    color: #fff;
}

.can-do-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.can-do-card__desc {
    font-size: .875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .dest-tours-section { padding: 48px 0 64px; }
    .cat-description     { padding: 48px 0 56px; }
    .detail-content table { font-size: .8rem; }
    .exp-articles-section { padding: 40px 0; }
    .cat-promo-banner     { padding: 64px 20px; }
    .cat-can-do-section   { padding: 40px 0; }
}


/* ============================================================
   FLATSOME SHIMS — [button], [wn_accordion], [ux_banner]
   ============================================================ */

/* [button] */
.wn-shim-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    cursor: pointer;
}
.wn-shim-btn--primary   { background: var(--main); color: #fff !important; border: 2px solid var(--main); }
.wn-shim-btn--secondary { background: transparent; color: var(--main); border: 2px solid var(--main); }
.wn-shim-btn--shade     { background: var(--color-dark); color: #fff; border: 2px solid var(--color-dark); }
.wn-shim-btn--primary:hover   { background: var(--main-dark); border-color: var(--main-dark); color: #fff; }
.wn-shim-btn--secondary:hover { background: var(--main); color: #fff; }
.wn-shim-btn--shade:hover     { opacity: .85; color: #fff; }

/* [ux_banner] */
.wn-shim-banner {
    position: relative;
    background-size: cover;
    background-position: center;
}
.wn-shim-banner__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.wn-shim-banner__content { position: relative; z-index: 1; }

/* [title] */
.wn-shim-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--main);
    margin: 1.5rem 0 1rem;
}
.wn-shim-title--center { justify-content: center; text-align: center; }
.wn-shim-title--right  { justify-content: flex-end; text-align: right; }
.wn-shim-title__icon { flex-shrink: 0; color: var(--second); }

/* [wn_accordion] */
.wn-accordion { border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; }

.wn-accordion__item {
    border-bottom: 1px solid #e8e8e8;
}
.wn-accordion__item:last-child { border-bottom: none; }

.wn-accordion__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color .2s;
}
.wn-accordion__title::-webkit-details-marker { display: none; }
.wn-accordion__title:hover { color: var(--main); }

.wn-accordion__icon {
    flex-shrink: 0;
    transition: transform .25s ease;
    color: #aaa;
}
.wn-accordion__item[open] .wn-accordion__icon { transform: rotate(180deg); color: var(--main); }
.wn-accordion__item[open] > .wn-accordion__title { color: var(--main); }

.wn-accordion__body {
    padding: 0 20px 18px;
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}
