/* ===== Hero ===== */
.hero {
    position: relative;
    height: 460px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 20, .35), rgba(15, 25, 20, 0) 45%);
}

/* ===== Section title ===== */
.tx-section-title {
    text-align: center;
    padding: 72px 24px 8px;
}

.tx-section-title .tx-script {
    font-size: 58px;
    line-height: 55px;
}

.eyebrow {
    display: block;
    text-align: center;
    font-size: 11.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== Intro / features ===== */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    /* padding: 36px 24px 90px; */
    align-items: center;
    margin-top: 35px;
}

.intro .intro-list {
    margin-bottom: 0;
}

.intro-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    justify-content: space-between;
    transition: padding-left .25s var(--ease);
}

.intro-list li:hover {
    padding-left: 6px;
}

.intro-list li:first-child {
    padding-top: 0;
}

.intro-list .left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.intro-list .left svg {
    height: 27px;
    width: 27px;
    display: inline-flex;
}

.intro-list .left span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-list .icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(184, 121, 28, .35);
}

.intro-list .arrow {
    flex: 1;
    border-top: 1px dashed #c9cec4;
    margin: 0 16px;
}

.intro-list .chev {
    color: var(--gold-dark);
    font-size: 14px;
}

.intro-video {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.intro-video img {
    height: 400px;
    object-fit: cover;
    width: 100%;
    transition: transform .5s var(--ease);
}

.intro-video:hover img {
    transform: scale(1.04);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    cursor: pointer;
    transition: transform .25s var(--ease);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn::after {
    content: "";
    border-left: 16px solid var(--gold-dark);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
}

/* ===== Thank you banner sections ===== */
.thanks {
    text-align: center;
    padding: 70px 24px 12px;
}

.thanks .tx-script {
    font-size: 55px;
}

.thanks .subtitle {
    color: var(--muted);
    font-size: 14.5px;
    margin-top: 10px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.couple-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    margin: 10px auto 26px;
    /* padding: 0 24px; */
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.couple-row .names {
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--green-dark);
}

.view-more {
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    transition: gap .2s var(--ease);
    cursor: pointer;
}

.view-more:hover {
    gap: 10px;
}

/* ===== Gallery grid ===== */

.tx-gallery {
    /* display:grid; */
    /* grid-template-columns: 1.35fr 1fr 1fr; */
    /* grid-template-rows: 180px 180px; */
    /* gap:16px; */
}

/* dùng chung 1 class */
.tx-gallery .item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.tx-gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ảnh lớn bên trái */
.tx-gallery .item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* 2 ảnh nhỏ bên phải */
.tx-gallery .item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.tx-gallery .item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

/* banner dưới */
.tx-gallery .item:nth-child(4) {
    grid-column: 2 / span 2;
    grid-row: 2;
}

.tx-gallery .item:nth-child(4)::after {
    /* content:""; */
    position: absolute;
    /* inset:0; */
    /* background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.1)); */
}

.tx-gallery .txt {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
    z-index: 2;
}

.tx-gallery .txt h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
}

.tx-gallery .txt p {
    margin: 0;
    font-size: 14px;
}

/* mobile */
@media (max-width:768px) {
    .tx-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .tx-gallery .item:nth-child(1) {
        grid-column: unset;
        grid-row: unset;
        /* aspect-ratio: 4/5; */
    }

    .tx-gallery .item:nth-child(4) {
        grid-column: unset;
    }

    .tx-gallery .item:nth-child(2),
    .tx-gallery .item:nth-child(3) {
        aspect-ratio: unset;
        grid-column: unset;
        grid-row: unset;
    }
}

.tx-gallery {
    /* max-width: 1200px; */
    /* margin: 0 auto 90px; */
    /* padding: 0 24px; */
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 0.4fr 0.4fr;
    gap: 18px;
}

/* .tx-gallery .g1 {
    grid-row: 1/3;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
} */

.tx-gallery .g1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tx-gallery .g1 .play-btn {
    width: 58px;
    height: 58px;
}

.tx-gallery .card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.tx-gallery .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.tx-gallery .card:hover img,
.tx-gallery .g1:hover img {
    transform: scale(1.06);
}

.tx-gallery .promo {
    grid-column: 2/4;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.tx-gallery .promo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5) saturate(1.1);
}

.tx-gallery .promo .txt {
    position: absolute;
    left: 32px;
    color: #fff;
}

.tx-gallery .promo .txt h3 {
    font-size: 23px;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.tx-gallery .promo .txt p {
    font-size: 13px;
    color: var(--gold);
    margin-top: 6px;
    font-style: italic;
}

/* ===== Destinations ===== */

.destinations {
    /* display: grid; */
    grid-template-columns: repeat(4, 1fr);
    /* grid-auto-rows: 260px; */
    /* gap: 16px; */
    /* max-width: 1100px; */
    /* margin: 0 auto; */
}

/* Hàng 1: Morocco (1 cột) - UK (2 cột) - Singapore (1 cột) */
.dest-card:nth-child(1) {
    grid-column: span 1;
}

.dest-card:nth-child(2) {
    grid-column: span 2;
}

.dest-card:nth-child(3) {
    grid-column: span 1;
}

/* Hàng 2: Hungary (2 cột) - Italy (2 cột), cao hơn 1 chút */
.dest-card:nth-child(4),
.dest-card:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}

.dest-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    isolation: isolate;
    /* để pseudo-element không tràn ra ngoài border-radius */
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dest-card:hover img {
    transform: scale(1.06);
}

/* Lớp gradient tối phía dưới để chữ dễ đọc */
.dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
}

.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: #e85d3d;
    /* màu cam đỏ như hình */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
}

.name {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive: dồn thành 2 cột trên tablet, 1 cột trên mobile */
@media (max-width: 768px) {
    .destinations {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .dest-card:nth-child(1),
    .dest-card:nth-child(2),
    .dest-card:nth-child(3) {
        grid-column: span 1;
    }

    .dest-card:nth-child(4),
    .dest-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .destinations {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .dest-card {
        grid-column: span 1 !important;
    }
}

.destinations {
    /* max-width: 1200px; */
    /* margin: 0 auto 50px; */
    /* padding: 0 24px; */
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.dest-card:hover img {
    /* transform: scale(1.08); */
}

.dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 14, .65), rgba(10, 18, 14, 0) 60%);
}

.dest-card .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .92);
    color: var(--gold-dark);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    width: auto;
}

.dest-card .name {
    position: absolute;
    bottom: 18px;
    left: 20px;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    /* font-family: 'Playfair Display', serif; */
    z-index: 2;
}

/* ===== CTA strip ===== */
.cta-strip {
    /* max-width: 1200px; */
    /* margin: 0 auto 90px; */
    /* padding: 0 24px; */
}

.tx-home-section-4 {
    margin-top: 30px;
}

.cta-strip .inner {
    background: linear-gradient(120deg, #f4ecd8, #efe4c8);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
}

.cta-strip p {
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--green-dark);
}

.cta-strip .btn-dark {
    background: var(--ink);
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .25s var(--ease), transform .25s var(--ease);
}

.cta-strip .btn-dark:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* ===== Tours ===== */
.tours {
    /* max-width: 1200px; */
    /* margin: 0 auto 90px; */
    /* padding: 0 24px; */
    /* display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 24px; */
}

.tour-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.tour-card .img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.tour-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.tour-card:hover .img img {
    transform: scale(1.08);
}

.tour-card .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 5px 11px;
    border-radius: 14px;
    z-index: 2;
}

.tour-card .body {
    padding: 20px 22px 22px;
}

.tour-card .rating {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.tour-card .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-card h4 {
    font-size: 16.5px;
}

.tour-card .price {
    color: var(--gold-dark);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

/* ===== Services ===== */
.services {
    /* max-width: 1200px; */
    /* margin: 0 auto 90px; */
    /* padding: 0 24px; */
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 22px;
}

.service-photo {
    /* border-radius: var(--radius); */
    overflow: hidden;
    /* height: 240px; */
    position: relative;
    /* box-shadow: var(--shadow-sm); */
    color: #000;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
    height: 210px;
}

.service-photo:hover img {
    transform: scale(1.06);
}

.service-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 14, .7), rgba(10, 18, 14, 0) 55%);
    opacity: 0;
}

.service-photo .cap {
    /* position: absolute; */
    /* bottom: 18px; */
    /* left: 20px; */
    /* color: #fff; */
    /* z-index: 2; */
    margin-top: 10px;
}

.service-photo .cap h4 {
    font-size: 17px;
    color: #000;
    line-height: 22px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.service-photo .cap p {
    /* font-size: 12.5px; */
    /* max-width: 200px; */
    opacity: .9;
    margin-top: 6px;
    /* font-family: 'Poppins', sans-serif; */
    font-size: 14px;
    color: #595959;
}

.service-menu {
    /* border: 1px solid var(--line); */
    /* border-radius: var(--radius); */
    /* padding: 8px 24px; */
    /* box-shadow: var(--shadow-sm); */
}

.service-menu .desc {
    /* display: none; */
    margin-top: 10px;
    font-size: 14px;
}

.service-menu li:first-child .desc {
    display: block;
}

.service-menu li {
    /* padding: 10px; */
    border-bottom: 1px solid var(--line);
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s var(--ease);
    cursor: pointer;
    margin-bottom: unset;
    margin-bottom: 0px;
    /* padding-bottom: 20px; */
    padding-block: 10px;
}

.service-menu .active .tx-list-head {
    background: #dddddd47;
    padding: 10px;
    transition: all 0.4s;
}

.service-menu .active .tx-list-head .btn-icon {
    width: 17px;
    height: 17px;
    display: inline-flex;
}

.service-menu .active .tx-list-head a {
    color: #000;
}

.service-menu .active {padding-top: 0;}

.service-menu * {
    transition: all 0.4s;
}

.tx-list-head {
    display: flex;
    column-gap: 15px;
    padding: 0 10px;
    /* margin-bottom: 15px; */
    justify-content: space-between;
}

.tx-list-head:not(:first-child) {
}

.tx-list-head a {
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    color: #6e6e6e;
}

.tx-list-head .btn-icon svg {
    height: 17px;
    width: 17px;
}

.tx-list-head .btn-icon svg path {
    fill: #a1a1a1;
}

.service-menu li:hover {
    color: var(--gold-dark);
}

.service-menu li:last-child {
    border-bottom: none;
    /* color: var(--gold-dark); */
    font-weight: 600;
}

.service-menu li span.chev {
    color: var(--muted);
}

/* ===== Testimonials / trust ===== */
.trust {
    max-width: 1200px;
    margin: 0 auto 90px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 22px;
}

.testi-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.testi-card h4 {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.testi-person img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cream);
    box-shadow: var(--shadow-sm);
}

.testi-person strong {
    display: block;
    font-size: 15.5px;
    font-family: 'Playfair Display', serif;
}

.testi-person span {
    font-size: 12px;
    color: var(--muted);
}

.testi-card p {
    font-size: 13.5px;
    color: #6f766f;
    line-height: 1.8;
}

.badge-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.badge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge-card small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

/* ===== Blog ===== */
.blog {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 22px;
    height: 480px;
}

.blog-main {
    height: 100%;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.blog-main > a {
    display: block;
    width: 100%;
    height: 100%;
}

/* BÊN PHẢI */
.blog-side {
    height: 100%;
    min-height: 0;

    display: grid;
    grid-auto-rows: minmax(0, 1fr);
    gap: 22px;
}

.blog-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.blog-main:hover img {
    transform: scale(1.05);
}

.blog-main .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
}

.blog-main .meta {
    font-size: 12px;
    opacity: .8;
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.blog-main h3 {
    font-size: 21px;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #fff;
    font-family: 'Montserrat';
}

.blog-main p {
    font-size: 14px;
    opacity: .85;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.blog-side .tx-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
}

.blog-item {
    display: flex;
    gap: 16px;
    cursor: pointer;
}

.blog-item > div {
    flex: 1;
}

.blog-item > a {
    width: 150px;
    display: inline-flex;
}

.blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease);
}

.blog-item:hover img {
    transform: scale(1.04);
}

.blog-item .meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 6px;
}

.blog-item h4 {
    font-size: 14.5px;
    line-height: 1.4;
    font-family: 'Montserrat';
    transition: color .2s var(--ease);
}

.blog-item:hover h4 {
    color: var(--gold-dark);
}

/* ===== FAQ & Newsletter ===== */
.faq-news {
    /* max-width: 1200px; */
    /* margin: 0 auto 90px; */
    /* padding: 0 24px; */
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

.faq-news h2 {
    font-size: 30px;
    margin-bottom: 12px;
    color: #000;
}

.faq-news .lead {
    color: var(--muted);
    font-size: 13.5px;
    margin-bottom: 22px;
    line-height: 1.7;
}

.faq-item .title {
    /* border-bottom: 1px solid var(--line); */
    padding: 18px 0 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s var(--ease);
    font-family: 'Playfair Display', Georgia, serif;
}

.faq-item:not(:last-child) {
    border-bottom: 1px solid var(--line);
}

.faq-item .desc {
    padding-bottom: 15px;
    color: #7e7e7e;
    margin-top: 5px;
}

.faq-item:hover .title {
    color: var(--gold-dark);
}

.tx-home-section-9 .faq-item span {
    color: var(--gold-dark);
    font-size: 18px;
    font-weight: 300;
}

.newsletter .tx-form-home {
    background: linear-gradient(160deg, var(--ink), #0f1a14);
    color: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.newsletter h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: #fff;
}

.newsletter p {
    font-size: 13px;
    color: #b9c4bd;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.newsletter input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    margin-bottom: 12px;
    font-size: 13px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.newsletter input::placeholder {
    color: #8f9a92;
}

.newsletter input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(120deg, var(--gold), var(--gold-dark));
    color: #1b2a22;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 13px;
    transition: transform .2s var(--ease);
}

.newsletter button:hover {
    transform: translateY(-2px);
}

/* ===== Footer ===== */
footer.site {
    background: linear-gradient(160deg, var(--ink), #0e1712);
    color: #cfd8d0;
    padding: 60px 0 24px;
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
}

.footer-grid .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-grid .logo .mark {
    background: var(--gold);
}

.footer-grid p {
    font-size: 13px;
    color: #8fa197;
    line-height: 1.8;
}

.footer-grid h4 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.footer-grid li {
    font-size: 13px;
    padding: 7px 0;
    color: #a9b5ac;
    transition: color .2s var(--ease);
    cursor: pointer;
}

.footer-grid li:hover {
    color: var(--gold);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.socials a {
    width: 34px;
    height: 34px;
    border: 1px solid #3a473f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all .25s var(--ease);
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.footer-sub {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-sub input {
    flex: 1;
    padding: 11px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.footer-sub input::placeholder {
    color: #8f9a92;
}

.footer-sub button {
    background: var(--gold);
    border: none;
    padding: 11px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: transform .2s var(--ease);
}

.footer-sub button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2b362f;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #6d786f;
}

@media(max-width:900px) {
    nav.main {
        display: none;
    }

    .intro,
    .tx-gallery,
    .destinations,
    .tours,
    .services,
    .trust,
    .blog,
    .faq-news,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .tx-gallery .g1 {
        grid-row: auto;
    }

    .cta-strip .inner {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
}

.tx-zoom:hover img {
    transform: scale(1.1);
    transition: all 0.4s;
}

.tx-zoom {
    overflow: hidden;
}

.tx-zoom img {
    transition: all 0.4s;
}

.txHomeProduct .product-small {
    padding: 0;
}


/* =========================
   TOUR GRID
========================= */

.tour-grid {
    width: 100%;
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =========================
   CARD
========================= */

.tour-card {
    position: relative;
    /* height: 398px; */
    background: #f8f8f8;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

/* =========================
   IMAGE
========================= */

.tour-image {
    position: relative;
    height: 175px;
    flex-shrink: 0;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.04);
}

/* =========================
   BADGE
========================= */

.tour-level {
    position: absolute;
    top: 12px;
    left: 12px;

    padding: 6px 13px;

    background: #fff;
    border-radius: 20px;

    font-size: 13px;
    font-weight: 700;

    color: #1263b5;

    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.tour-level.premium {
    color: #a56a00;
}

/* =========================
   QUICK VIEW
========================= */

.quick-view {
    position: absolute;
    right: 8px;
    bottom: 9px;
    height: 31px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: rgba(21, 21, 21, .88);
    color: #f4c400;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: none;
}

.quick-view .eye {
    width: 15px;
    height: 15px;

    border: 1.5px solid #f4c400;
    border-radius: 50%;

    position: relative;
}

.quick-view .eye::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    background: #f4c400;
    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}

/* =========================
   ESG / LEI
========================= */

.tour-score {
    position: absolute;

    left: 7px;
    bottom: 8px;

    display: flex;
    align-items: center;

    padding: 7px 10px;

    background: #e9ffe8;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;

    color: #008b35;

    z-index: 3;
}

.tour-score span + span {
    margin-left: 7px;
    padding-left: 7px;

    border-left: 1px solid #9bd59d;
}

/* =========================
   CONTENT
========================= */

.tour-content {
    position: relative;

    flex: 1;

    padding: 0 9px 10px;
}

.tour-content .desc {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: 6px;
    margin-bottom: 50px;
}

/* =========================
   TITLE
========================= */

.tour-title {
    position: relative;
    margin-top: -25px;
    min-height: 57px;
    padding: 9px 10px 5px;
    background: #fff;
    border-radius: 7px 7px 0 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    z-index: 4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================
   META
========================= */

.tour-meta {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0 10px;

    color: #555;

    font-size: 12px;

    height: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-icon {
    font-size: 14px;
}

/* =========================
   CATEGORY
========================= */

.tour-category {
    display: inline-block;
    /* margin: 2px 10px 0; */
    padding: 3px 8px;
    border-radius: 10px;
    background: #e8e6ff;
    color: #5c57bd;
    font-size: 10px;
    font-weight: 600;
    margin-top: 12px;
}

.tour-category.green {
    background: #e1f7e5;
    color: #27a34a;
}

/* =========================
   PRICE
========================= */

.price-box {
    position: absolute;

    left: 10px;
    bottom: 9px;
}

.price-label {
    display: block;

    margin-bottom: 4px;

    color: #777;

    font-size: 12px;
}

.price {
    color: #0757c9;

    font-size: 17px;
    font-weight: 700;
}

/* =========================
   DETAIL BUTTON
========================= */

.detail-button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 140px;
    height: 45px;
    background: #0757c9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

    /*
      Tạo hình bo góc kiểu ảnh mẫu
    */
    border-radius: 45px 0 0 0;
}

.detail-button:hover {
    background: #0049ae;
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    body {
        padding: 10px;
    }

    .tour-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tour-card {
        height: 390px;
    }

}

.overflow-hidden{
    overflow: hidden;
}

.service-menu .desc {
    height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        height 0.25s ease,
        opacity 0.2s ease;
}

.service-menu li.active .desc {
    opacity: 1;
    font-weight: initial;
}

/* section 7 */
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    /* width: 100%; */
    /* padding: 42px 20px 34px; */
    background: #fff;
    margin-top: 40px;
}

.testimonial-container {
    max-width: 100%;
    /* margin: 0 auto; */
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}


/* =========================
   LEFT - TESTIMONIAL
========================= */

.testimonial-main {
    min-height: 440px;
    background: #f6f6f6;
    padding: 32px 40px;
    /* text-align: center; */
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: flex-start; */
    text-align: center;
}

.testimonial-title {
    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;

    color: #111;
}

.testimonial-title span {
    color: #d9b29b;
}


/* Avatar */

.testimonial-avatar {
    width: 116px;
    height: 116px;
    margin-bottom: 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9e9e9;
    display: inline-block;
}

.testimonial-avatar img {
    width: auto;
    height: auto;
    display: inline-block;
    object-fit: cover;
}


/* Name */

.testimonial-name {
    margin: 0 0 4px;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;

    color: #222;
}


/* Role */

.testimonial-role {
    margin-bottom: 22px;

    font-size: 15px;
    color: #999;
}


/* Content */

.testimonial-content {
    max-width: 500px;

    margin: 0;

    font-size: 15px;
    line-height: 1.55;

    color: #8d8d8d;
}


/* Dots */

.testimonial-dots {
    display: flex;
    gap: 10px;

    margin-top: 26px;
}

.testimonial-dots button {
    width: 13px;
    height: 13px;

    padding: 0;

    border: 1px solid #dfc4b4;
    background: transparent;

    cursor: pointer;
}

.testimonial-dots button.active {
    background: #d9b29b;
}


/* =========================
   RIGHT GRID
========================= */

.testimonial-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;

    gap: 28px;
}


/* Common box */

.review-box {
    min-height: 205px;

    background: #f6f6f6;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    text-decoration: none;
}


/* Review images */

.review-box img {
    max-width: 82%;
    max-height: 82%;

    display: block;

    object-fit: contain;
}


/* =========================
   GOOGLE
========================= */

.google-review img {
    width: 250px;
}


/* =========================
   TRUSTPILOT
========================= */

.trustpilot-review {
    padding: 28px;
}

.trustpilot-review img {
    width: 100%;
    max-width: 225px;
}


/* =========================
   TRIPADVISOR
========================= */

.tripadvisor-review {
    padding: 15px;
}

.tripadvisor-review img {
    width: 210px;
}


/* =========================
   SECURITY
========================= */

.security-box {
    flex-direction: column;

    text-align: center;

    color: #d8b49e;
}

.security-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 8px;
}

.security-icon svg {
    width: 100%;
    height: 100%;
}

.security-box h3 {
    margin: 0 0 6px;

    font-size: 19px;
    line-height: 1.3;

    color: #222;
}

.security-box p {
    margin: 0;

    font-size: 14px;
    color: #999;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .testimonial-container {
        /* grid-template-columns: 1fr; */
        display: block;
    }

    .testimonial-main {
        min-height: auto;
    }

}


@media (max-width: 600px) {

    .testimonial-section {
        padding: 25px 15px;
    }

    .testimonial-container {
        gap: 15px;
    }

    .testimonial-main {
        padding: 30px 20px;
    }

    .testimonial-title {
        font-size: 28px;
    }

    .testimonial-grid {
        gap: 15px;
    }

    .review-box {
        min-height: 160px;
    }

}


@media (max-width: 480px) {

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .review-box {
        min-height: 180px;
    }

}
.txSliderTestimonial .swiper-pagination {
    position: unset;
    margin-top: 15px;
}

.txSliderTestimonial .swiper-pagination span {
    border-radius: unset;
    width: 10px;
    height: 10px;
}
/* end section 7 */

.tx-home-section-9 {
    margin-top: 40px;
}

.newsletter-form {
    width: 100%;
    /* max-width: 370px; */
    margin: 0 auto;
    padding: 20px 24px 26px;
    background: #f7f7f7;
    box-sizing: border-box;
}

.newsletter-form form {
    margin: 0;
}

.newsletter-form h2 {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: #222;
}

.newsletter-desc {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}

.newsletter-form .form-group {
    margin-bottom: 8px;
}

.newsletter-form input,
.newsletter-form textarea {
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 0;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    color: #555;
}

.newsletter-form input {
    height: 35px!important;
    padding: 0 14px;
}

.newsletter-form textarea {
    padding: 10px 10px;
    resize: none;
    margin-top: 16px;
    /* font-size: 15px!important; */
}

.newsletter-form input::placeholder,
.newsletter-form textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.newsletter-form textarea::placeholder {
    font-size: 18px;
    color: #d0d0d0;
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
    border-color: #ccc;
}

.newsletter-form textarea::placeholder {
    font-size: 13px;
}

.newsletter-form button {
    width: 100%;
    /* height: 49px; */
    margin-top: 0;
    padding: 10px 15px;
    border: 0;
    border-radius: 0;
    background: #ffc800;
    color: #fff;
    /* font-size: 16px; */
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #edb900;
}

@media (max-width: 480px) {
    .newsletter-form {
        max-width: 100%;
        padding: 0;
    }

    .newsletter-form h2 {
        font-size: 22px;
    }

    .newsletter-form textarea {
        height: 160px;
    }
    .dest-card .name {
        font-size: 19px;
    }
    .tour-image {
        height: 220px;
    }
    .couple-row {
        margin-bottom: 0;
    }
}

.newsletter .tx-banner {
    margin-top: 30px;
}

/* Tour group */
.tour-list {
    width: 100%;
}
.tour-item {
    display: flex;
    width: 100%;
    min-height: 238px;
    margin-bottom: 36px;
}
/* IMAGE */
.tour-item__image {
    flex: 0 0 220px;
    width: 220px;
    height: 238px;
    overflow: hidden;
}
.tour-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* CONTENT */
.tour-item__content {
    display: flex;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    padding-left: 21px;
}
.tour-item__main {
    min-width: 0;
    padding-right: 30px;
}
/* TITLE */
.tour-item__title {
    margin: -5px 0 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}
/* PRICE */
.tour-item__price {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
    margin-top: 6px;
}
.tour-item__price span {
    color: #aaa;
    font-size: 12px;
    font-weight: 400;
}
/* DESCRIPTION */
.tour-item__desc {
    max-width: 600px;
    margin: 17px 0 17px;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
/* RATING */
.tour-item__rating {
    display: flex;
    align-items: center;
    gap: 7px;
}
.stars {
    color: #fdbb18;
    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
}
.reviews {
    color: #ccc;
    font-size: 11px;
}
/* META */
.tour-item__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #aaa;
    font-size: 11px;
    white-space: nowrap;
}
.meta-icon {
    color: #ffc21c;
    font-size: 11px;
}
/* BUTTON */
.tour-item__action {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex: 0 0 120px;
    padding-bottom: 4px;
}
.tour-item__button {
    display: block;
    width: 108px;
    /* height: 36px; */
    border: 1px solid #222;
    border-radius: 20px;
    background: #fff;
    transition: .2s ease;
    text-align: center;
    font-size: 13px;
    padding: 3px 10px;
    white-space: nowrap;
}
.tour-item__button:hover {
    background: #222;
    color: #fff;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .tour-item {
        align-items: flex-start;
    }
    .tour-item__image {
        flex: 0 0 180px;
        width: 180px;
        height: 200px;
    }
    .tour-item__content {
        padding-left: 15px;
    }
    .tour-item__title {
        font-size: 21px;
    }
    .tour-item__price {
        font-size: 19px;
    }
    .tour-item__desc {
        margin-top: 10px;
    }
    .tour-item__action {
        flex: 0 0 100px;
    }
    .tour-item__button {
        /* width: 90px; */
    }
    .tour-item__meta {
        margin-top: 5px;
    }
    .tour-item__desc {
        margin-bottom: 6px;
    }
}
@media (max-width: 576px) {
    .tour-item {
        display: block;
    }
    .tour-item__image {
        width: 100%;
        height: 240px;
    }
    .tour-item__content {
        display: block;
        padding: 15px 0 0;
    }
    .tour-item__main {
        padding-right: 0;
    }
    .tour-item__desc {
        max-width: none;
    }
    .tour-item__action {
        justify-content: flex-start;
        margin-top: 20px;
    }
    .gallery-grid {
        height: auto!important;
        display: block!important;
    }
    .gallery-grid .cell:nth-child(3), .gallery-grid .cell:nth-child(4) {
        width: 100% !important;
        margin-left: 0!important;
    }
    .gallery-grid .cell img {
        width: 100% !important;
        height: 200px!important;
    }
    .gallery-grid .cell:not(:first-child) {
        margin-top: 20px;
    }
    .testimonial-section {
        margin-top: 0!important;
    }
}
/* Tour group */

@media (max-width: 1024px) and (min-width: 768px){
    .services {
        grid-template-columns: 1fr 1fr 1.1fr !important;
    }
    .service-photo .cap h4, .tx-list-head a {
        font-size: 15px!important;
    }
}
