/* Global Styles ................................................................................. */
/* @import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap&subset=vietnamese');
:root {
    --brand-color: #CFA760;
    --text-color: #FFFFFF;
    --header-color: rgba(1, 1, 1, 0.1);
    --background-color: #101010;
    --background-color-secondary: #1B1B1B;
    --text-color-secondary: #BAC1CC;
    --pattern-bg: #E8E4DC;
    --primary-color: #FFFFFF;
    --secondary-color: #101010;
    --third-color: #30353D;

    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    /* Font families */
    /*--title-font: 'Poppins', sans-serif;*/
    /* --title-font: 'Be Vietnam Pro', sans-serif; */
    --title-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;

    /* Order page colors */
    --order-bg-color: var(--background-color-secondary);
    --order-card-bg: var(--background-color);
    --order-text-color: var(--primary-color);
    --order-border-color: rgba(207, 167, 96, 0.2);
    --order-pending-bg: rgba(255, 193, 7, 0.1);
    --order-pending-color: #FFC107;
    --order-processing-bg: rgba(13, 110, 253, 0.1);
    --order-processing-color: #0D6EFD;
    --order-completed-bg: rgba(25, 135, 84, 0.1);
    --order-completed-color: #198754;
    --order-cancelled-bg: rgba(220, 53, 69, 0.1);
    --order-cancelled-color: #DC3545;
    --order-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    font-weight: 700;
}

p,
span,
a,
li,
button,
input,
textarea,
label,
select,
div {
    font-family: var(--body-font);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

strong{
    color: var(--primary-color);
}

.text-center {
    text-align: center;
    margin: 2rem 0;
}

.truncate-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Số dòng muốn hiển thị */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Buttons ................................................................................. */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--brand-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(207, 167, 96, 0.5);
    opacity: 0.9;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-text {
    font-weight: 500;
    color: var(--brand-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--brand-color);
    opacity: 0.8;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Responsive styles for buttons ................................................................................. */
@media (max-width: 992px) {
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .auth-buttons {
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .btn-primary {
        padding: 7px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

/* Animation on Scroll................................................................................. */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show,
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styles ................................................................................. */
section {
    padding: 5rem 0;
}

/* Auth buttons container */
.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Header ................................................................................. */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    /* padding: 15px 0; */
}

header.scrolled {
    background-color: rgba(29, 29, 29, 0.95);
    box-shadow: var(--box-shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-links a .full {
    display: none;
}

.nav-links a:hover .short {
    display: none;
}

.nav-links a:hover .full {
    display: inline;
}


.nav-links a:hover::after {
    opacity: 1;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-color);
    transform: scale(1.1);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(207, 167, 96, 0.5);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 1200px) {

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

/* User icon styles after login ................................................................................. */
.user-icons a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
}

.user-icons a:hover {
    color: var(--brand-color);
    transform: scale(1.1);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(207, 167, 96, 0.5);
}

/* Cart list ................................................................................. */
.cart-dropdown {
    position: absolute;
    top: 97px;
    right: 150px;
    width: 360px;
    background-color: var(--background-color-secondary);
    border: 1px solid var(--third-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.cart-dropdown::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.cart-icon.active+.cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--third-color);
}

.dropdown-header h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.cart-list {
    padding: 10px 0;
}

.empty-cart-message {
    text-align: center;
    padding: 30px 15px;
    color: var(--gray-300);
}

.empty-cart-message i {
    font-size: 2.5rem;
    margin-top: 15px;
    color: var(--gray-300);
    opacity: 0.5;
}

.empty-cart-message p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-content {
    flex: 1;
}

.cart-content h5 {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin: 0 0 5px;
    font-weight: 500;
}

.cart-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-price {
    color: var(--brand-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-quantity {
    color: var(--gray-300);
    font-size: 0.8rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray-300);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: #ff0000;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid var(--third-color);
    border-bottom: 1px solid var(--third-color);
    font-size: 0.9rem;
}

.subtotal-amount {
    color: var(--brand-color);
    font-weight: 600;
}

.dropdown-footer {
    display: flex;
    padding: 15px;
    justify-content: center;
}

.view-cart {
    text-align: center;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.view-cart {
    color: var(--primary-color);
    width: 50%;

}

.view-cart {
    background-color: transparent;
}


@media (min-width: 769px) {

    /* Hide mobile-only links on larger screens */
    .mobile-only-links {
        display: none;
    }
}

/* Badge notifications */
.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff0000;
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge.count-plus {
    border-radius: 10px;
    padding: 0 6px;
}

/* Position badges in mobile menu */
.mobile-link .badge {
    top: 15px;
    right: 24px;
    margin-left: 5px;
    font-size: 0.65rem;
    height: 16px;
    min-width: 16px;
}

.mobile-link .badge.count-plus {
    min-width: 24px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* User dropdown styles */
.user-dropdown {
    position: relative;
    cursor: pointer;
}

.avatar-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.user-dropdown.active .dropdown-arrow {
    color: var(--brand-color);
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background-color: var(--background-color-secondary);
    border: 1px solid var(--third-color);
    border-radius: 8px;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 10px;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--brand-color);
    transform: none;
    text-shadow: none;
    font-weight: normal;
}

.dropdown-menu i {
    width: 16px;
    text-align: center;
    font-size: 1rem;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--third-color);
    margin: 5px 0;
}

.logout-link {
    color: #ff6b6b !important;
}

.logout-link:hover {
    background-color: rgba(255, 107, 107, 0.1) !important;
}

/* Hamburger styles ................................................................................. */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    margin-left: 20px;
    margin-right: 10px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* User auth section handling */
.user-auth {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/* Show either user-icons or auth-buttons, not both */
.user-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Media queries for responsive header ................................................................................. */
@media (max-width: 1200px) {
    .logo img {
        height: 100px;
    }

    .nav-links li {
        margin: 0 10px;
    }
}

@media (max-width: 992px) {
    .logo img {
        height: 80px;
    }

    .nav-links li {
        margin: 0 8px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    /* Show hamburger on tablet */
    .hamburger {
        display: flex;
    }

    /* Hide main navigation links */
    .nav-links {
        display: none;
    }

    .user-auth {
        margin-left: 10px;
    }

    .auth-buttons {
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 5px 0;
    }

    .logo img {
        height: 60px;
    }

    /* Hide bell and cart icons on mobile */
    .user-icons a[title="Thông báo"],
    .user-icons a[title="Giỏ hàng"] {
        display: none;
    }

    .auth-buttons {
        margin-right: 15px;
    }

    /* Show notification and cart in dropdown on mobile */
    .mobile-only-links {
        display: block !important;
        /* Add !important to override any conflicting styles */
    }

    .mobile-link {
        color: var(--primary-color);
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.2s ease;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .mobile-link:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--brand-color);
    }

    .mobile-link i {
        width: 16px;
        text-align: center;
        font-size: 1rem;
    }

    .nav-links a .short {
        display: none !important;
    }

    .nav-links a .full {
        display: inline !important;
    }

    /* Tùy chọn: tắt hiệu ứng hover trên mobile nếu cần */
    .nav-links a:hover .short,
    .nav-links a:hover .full {
        display: initial;
    }
}

@media (max-width: 576px) {
    header .container {
        padding: 0 15px;
    }
}

/* Mobile navigation styles ................................................................................. */
nav.mobile-active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-top: 1px solid var(--third-color);
    gap: 0px;
}

nav.mobile-active .nav-links li {
    width: 100%;
    text-align: center;
}

nav.mobile-active .nav-links a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile only dropdown links */
.mobile-only-links {
    display: none;
}

/* Hero Section ................................................................................. */
/*.hero {*/
/*    position: relative;*/
/*    !*height: 100vh;*!*/
/*    !*min-height: 600px;*!*/
/*    width: 100%;*/
/*    aspect-ratio: 16 / 9;*/
/*    !*overflow: hidden;*!*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--text-color);*/
/*}*/

/*.video-container {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: -1;*/
/*}*/

/*#hero-video {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    z-index: 1;*/
/*}*/

/*!* Hero Image Slider *!*/
/*.hero-image-slider {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 1;*/
/*}*/

/*.hero-image {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    opacity: 0;*/
/*    transition: opacity 1s ease-in-out;*/
/*    z-index: 1;*/
/*}*/

/*.hero-image.active {*/
/*    opacity: 1;*/
/*}*/

/*.video-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    z-index: 2;*/
/*}*/

.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Giữ khung tỷ lệ 16:9 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    /* overflow: hidden; */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Hero Image Slider */
.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain; /* ⚠️ giữ nguyên tỉ lệ ảnh */
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-image.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* ✅ Responsive mobile hỗ trợ tốt */
@media (max-width: 576px) {
    .hero {
        aspect-ratio: auto;
        height: auto;
        min-height: 300px;
        margin-top: 70px;
    }

    .hero-image {
        background-size: contain;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    /*padding-bottom: 100px;*/
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Slider Controls ................................................................................. */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 10px;
    width: 50%;
    max-width: 400px;
    margin: 0 auto;
}

.slider-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    font-size: 1.2rem;
}

.slider-pagination .current {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white-color);
}

.slider-pagination .separator {
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.5);
}

.slider-pagination .total {
    color: rgba(255, 255, 255, 0.7);
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Travel Options Container ................................................................................. */
.travel-options-container {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    margin-top: 40px;
    /* Giữ khoảng cách với slider-controls phía trên */
}

/* Travel Options */
.travel-options {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 16, 16, 0.85);
    color: var(--primary-color);
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 4px var(--primary-color), 0 0 8px var(--primary-color);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.travel-options * {
    transition: var(--transition);
    color: inherit;
}

.travel-options:hover {
    box-shadow: 0 0 6px var(--brand-color), 0 0 12px var(--brand-color), 0 0 18px var(--brand-color);
    border-color: var(--brand-color);
}


.option {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.option:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.option i {
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.option:hover i,
.option:focus-within i {
    color: var(--brand-color);
}

.option:hover .option-content input,
.option:focus-within .option-content input,
.option:hover .option-content input::placeholder,
.option:focus-within .option-content input::placeholder {
    color: var(--brand-color);
    opacity: 1;
}

.option-header label,
.option-content label {
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    text-align: center;
}

.option-content input,
.option-content select {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.option-content input::placeholder {
    color: var(--primary-color);
    opacity: 1;
}

.option-content input:focus,
.option-content input:hover,
.option-content select:focus,
.option-content select:hover {
    outline: none;
    color: var(--brand-color);
}

.option-content select {
    appearance: none;
    border: none;
    border-radius: 4px;
    padding: 0.5em 0.7em;
    width: 100%;
    cursor: pointer;
    font-size: inherit;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfa760' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%;
    background-size: 1em;
    padding-right: 2.5em;
    text-overflow: ellipsis;
}

/* Styling for Firefox */
.option-content select::-moz-focus-inner {
    border: 0;
}

/* For IE */
.option-content select::-ms-expand {
    display: none;
}

/* Style the options */
.option-content select option {
    background-color: var(--background-color-secondary);
    color: var(--text-color);
    padding: 10px;
}

.option-content select option:checked,
.option-content select option[selected] {
    background: var(--brand-color);
    color: var(--secondary-color);
}

.option-content select option:hover {
    background: var(--brand-color);
    color: var(--secondary-color);
}

.date-picker input {
    cursor: pointer;
}

.search-btn {
    background-color: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    cursor: pointer;
    margin-left: 15px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.search-btn i {
    font-size: 1.2rem;
}

.search-btn:hover,
.search-btn:focus {
    background-color: var(--brand-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive travel-options */
@media (max-width: 1200px) {

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p,
    span {
        font-size: 1.3rem;
    }

    .slider-pagination .current {
        font-size: 2rem;
    }

    .travel-options {
        max-width: 1000px;
        padding: 12px 10px;
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p,
    span {
        font-size: 1.2rem;
    }

    .slider-pagination .current {
        font-size: 1.8rem;
    }

    .travel-options {
        max-width: 800px;
        padding: 10px 5px;
        gap: 8px;
    }

    .option {
        padding: 0 8px;
    }

    .option-content input,
    .option-content select {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p,
    span {
        font-size: 1.1rem;
    }

    .slider-pagination .current {
        font-size: 1.6rem;
    }

    .travel-options {
        max-width: 100vw;
        padding: 8px 2px;
        gap: 5px;
    }

    .option {
        padding: 0 4px;
    }

    .option-content input,
    .option-content select {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .slider-controls {
        /*position: static;*/
        /*width: 100%;*/
        /*max-width: 100vw;*/
        /*margin: 0 auto 10px auto;*/
        /*padding: 0;*/
        /*background: none;*/
        /*box-shadow: none;*/
        /*border-radius: 16px;*/
        /*display: flex;*/
        /*justify-content: center;*/
        /*align-items: center;*/
        /*z-index: 20;*/
        bottom: 60px;
    }

    .slider-controls .slider-prev,
    .slider-controls .slider-next {
        font-size: 1.2rem;
        padding: 4px;
    }

    .slider-controls .slider-pagination {
        font-size: 1rem;
        gap: 4px;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 5px;
    }

    .hero-content {
        text-align: center;
        width: 100%;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p,
    span {
        font-size: 1rem;
    }

    .slider-pagination .current {
        font-size: 1.6rem;
    }

    .travel-options-container {
        /*margin-top: 0;*/
        top: 360px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .travel-options {
        margin: 0 auto;
        width: 100%;
        max-width: 95vw;
    }

    .travel-options {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        padding: 10px 5px;
        gap: 10px;
        max-width: 95vw;
        width: 100%;
    }

    .option {
        width: 100%;
        padding: 0;
        justify-content: center;
        text-align: center;
    }

    .option-content {
        width: 100%;
        text-align: center;
    }

    .search-btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        border-radius: 10px;
        display: flex;
        justify-content: center;
    }
}

/* Discover Section.......................................................................................................... */
.discover {
    padding: 5rem 0;
}

.discover-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.discover-quote {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.discover-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.discover-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.discover-image {
    flex: 1;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CSS cho video trong phần discover */
.video-wrapper {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* Đảm bảo video hiển thị đúng khi ở chế độ fullscreen */
.video-wrapper video:fullscreen {
    object-fit: contain;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
}

/* Hỗ trợ cho các trình duyệt khác nhau */
.video-wrapper video:-webkit-full-screen {
    object-fit: contain;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
}

.video-wrapper video:-moz-full-screen {
    object-fit: contain;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
}

.video-wrapper video:-ms-fullscreen {
    object-fit: contain;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
}

/* Tùy chỉnh điều khiển video */
.video-wrapper video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

.discover-text {
    padding: 30px 0;
    flex: 1;
    text-align: justify;
}

@media (max-width: 1200px) {
    .discover {
        padding: 4rem 0;
    }

    .discover-content {
        gap: 24px;
    }

    .discover-title {
        font-size: 1.7rem;
    }

    .discover-quote blockquote {
        font-size: 1.3rem;
    }

    .discover-text p {
        font-size: 1rem;
    }

    .read-more {
        margin-top: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .discover {
        padding: 3rem 0;
    }

    .discover-content {
        gap: 16px;
    }

    .discover-title {
        font-size: 1.4rem;
    }

    .discover-quote blockquote {
        font-size: 1.1rem;
    }

    .discover-text p {
        font-size: 0.9rem;
    }

    .read-more {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .discover {
        padding: 2rem 0;
    }

    .discover-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .discover-image,
    .discover-text {
        width: 100%;
        max-width: 100%;
    }

    .discover-title {
        font-size: 1.2rem;
    }

    .discover-quote blockquote {
        font-size: 1rem;
    }

    .discover-text p {
        font-size: 0.85rem;
    }

    .read-more {
        margin-top: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .discover {
        padding: 14rem 0 2rem;
    }

    .discover-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .discover-quote {
        margin-bottom: 1.5rem;
    }

    .discover-quote blockquote {
        font-size: 0.9rem;
    }

    .discover-content {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .discover-image {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
    }

    .discover-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .discover-text {
        width: 100%;
        max-width: 100%;
        text-align: left;
        font-size: 0.8rem;
    }

    .read-more {
        margin-top: 0.8rem;
        text-align: center;
        font-size: 0.8rem;
    }
}

/* Voucher Section .................................................................................. */
.voucher {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.voucher-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.voucher-section-header h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.voucher-section-header p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: center;
}

.voucher-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: auto;
    padding: 20px 10px 40px;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: none;
    width: 100%;
    margin: 0 auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
    transition: none;
}

.voucher-grid:active {
    cursor: grabbing;
}

.voucher-grid::-webkit-scrollbar {
    display: none;
}

.voucher-card {
    margin: 0 auto;
    width: 100%;
    min-width: calc(33% - 10px);
    max-width: 320px;
    flex: 1;
    margin-bottom: 40px;
    background-color: var(--background-color-secondary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    /* padding-bottom: 20px; */
    scroll-snap-align: center;
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.04));
    transition: var(--transition), box-shadow 0.4s, border-color 0.4s, outline 0.4s, transform 0.4s;
    border: 2px solid transparent;
}

.voucher-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
    border: 2.5px solid var(--primary-color);
    outline: none;
    z-index: 5;
}

.voucher-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.voucher-image img {
    aspect-ratio: 16 / 9;
    width: 100%; /* hoặc bất kỳ kích thước nào bạn muốn */
    object-fit: cover; /* hoặc contain tùy mục đích */
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.voucher-location {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
    z-index: 2;
}

.voucher-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.3);
}

.voucher-progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    width: 70%;
    border-radius: 0 4px 4px 0;
    transition: width 0.4s cubic-bezier(.4, 2, .6, 1);
}

.voucher-content {
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    flex: 1 1 auto;
}

.voucher-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
    text-align: center;
}

.voucher-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.voucher-meta {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.voucher-meta-highlight {
    color: var(--primary-color);
}

.voucher-meta-item {
    color: rgba(255, 255, 255, 0.7);
}

.voucher-meta-dot {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
}

.voucher-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color, #23272f);
    border: none;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    align-self: center;
    margin-bottom: 18px;
    margin-top: auto;
}

.voucher-btn:hover {
    background-color: var(--brand-color);
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .voucher {
        padding: 4rem 0;
    }

    .voucher-card {
        min-width: calc(33% - 10px);
    }

    .voucher-section-header h2 {
        font-size: 1.7rem;
    }

    .voucher-section-header p {
        font-size: 1.3rem;
    }

    .voucher-location {
        font-size: 0.95rem;
    }

    .voucher-title {
        font-size: 1.2rem;
    }

    .voucher-description {
        font-size: 0.95rem;
    }

    .voucher-meta span {
        font-size: 0.95rem;
    }

    .voucher-btn {
        font-size: 0.95rem;
    }

}

@media (max-width: 992px) {
    .voucher {
        padding: 3rem 0;
    }

    /*.voucher-card {*/
    /*    min-width: 310px;*/
    /*}*/

    .voucher-section-header h2 {
        font-size: 1.4rem;
    }

    .voucher-section-header p {
        font-size: 1.1rem;
    }

    .voucher-location {
        font-size: 0.9rem;
    }

    .voucher-title {
        font-size: 1.1rem;
    }

    .voucher-description {
        font-size: 0.9rem;
    }

    .voucher-meta span {
        font-size: 0.9rem;
    }

    .voucher-btn {
        font-size: 0.9rem;
        padding: 7px 14px;
    }
}

@media (max-width: 920px) {
    .voucher-card {
        min-width: calc(50% - 10px);
    }
}


@media (max-width: 768px) {
    .voucher {
        padding: 2rem 0;
    }

    /*.voucher-card {*/
    /*    min-width: 260px;*/
    /*}*/

    .voucher-section-header h2 {
        font-size: 1.2rem;
    }

    .voucher-section-header p {
        font-size: 1rem;
    }

    .voucher-location {
        font-size: 0.85rem;
    }


    .voucher-title {
        font-size: 1rem;
    }

    .voucher-description {
        font-size: 0.85rem;
    }


    .voucher-meta span {
        font-size: 0.85rem;
    }

    .voucher-btn {
        font-size: 0.85rem;
        padding: 7px 12px;
        margin-bottom: 10px;
    }

    .voucher-content {
        padding: 16px 10px 8px;
    }
}

@media (max-width: 576px) {
    .voucher {
        padding: 2rem 0;
    }

    .voucher-card {
        min-width: calc(100% - 20px);
    }

    .voucher-grid {
        flex-direction: column !important;
    }
    
    /* Đồng nhất kích thước card với flash-card */
    .voucher-card {
        margin: 0 auto;
        width: 100%;
        min-width: 250px;
        max-width: 320px;
    }

    .voucher-section-header h2 {
        font-size: 1.1rem;
    }

    .voucher-section-header p {
        font-size: 0.9rem;
    }

    .voucher-location {
        font-size: 0.8rem;
    }

    .voucher-title {
        font-size: 0.95rem;
    }

    .voucher-description {
        font-size: 0.8rem;
    }

    .voucher-meta span {
        font-size: 0.8rem;
    }

    .voucher-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
        margin-bottom: 8px;
    }

    .voucher-content {
        padding: 12px 6px 6px;
    }

}

/* Vietnam Exploration Section................................................................................. */
.vietnam-exploration {
    padding: 5rem 0;
}

.exploration-card {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: flex-start;
}

.exploration-image {
    flex: 5;
    padding-top: 10px;
}

/* Image frames styling */
.image-frames {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-end;
}

.frame {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    flex: 1;
    height: 380px;
    transition: all 0.3s;
}

.frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 40%);
    z-index: 1;
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-left {
    background-image: url(../images/banner/nha-trang.jpg);
    background-position: center;
    height: 380px;
}

.frame-center {
    background-image: url(../images/banner/du-thuyen-ha-long.jpg);
    background-position: center;
    height: 380px;
    transform: translateY(-40px);
}

.frame-right {
    background-image: url(../images/banner/fansipan.jpg);
    background-position: center;
    height: 380px;
    transform: translateY(40px);
}

.exploration-content {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px;
}

.content-header h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.content-description p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: justify;
}

.content-features {
    display: flex;
    gap: 40px;
    width: 100%;
}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature h3 {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1em;
    color: var(--primary-color);
}

.feature-description p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1rem;
    color: var(--text-color-secondary, #BAC1CC);
    text-align: justify;
}

.exploration-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.exploration-btn:hover {
    background: var(--primary-color);
    color: black;
}

@media (max-width: 1200px) {
    .vietnam-exploration {
        padding: 4rem 0;
    }

    .exploration-card {
        gap: 25px;
    }

    .image-frames {
        gap: 4px;
    }

    .frame,
    .frame-left,
    .frame-center,
    .frame-right {
        height: 320px;
        border-radius: 18px;
    }

    .frame-center {
        transform: translateY(-40px);
    }

    .frame-right {
        transform: translateY(40px);
    }

    .content-header h2 {
        font-size: 1.7rem;
    }

    .content-description p {
        font-size: 1.3rem;
    }

    .feature h3 {
        font-size: 1.4rem;
    }

    .feature-description p {
        font-size: 0.95rem;
    }

}

@media (max-width: 992px) {
    .vietnam-exploration {
        padding: 3rem 0;
    }

    .exploration-card {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .exploration-image,
    .exploration-content {
        width: 100%;
    }

    .image-frames {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }

    .frame,
    .frame-left,
    .frame-center,
    .frame-right {
        width: 32%;
        min-width: 130px;
        max-width: 180px;
        height: 350px;
        border-radius: 12px;
    }

    .frame-left {
        background-position: 0% 50%;
    }

    .frame-center {
        background-position: 50% 50%;
        transform: translateY(-30px);
    }

    .frame-right {
        background-position: 100% 50%;
        transform: translateY(30px);
    }

    .content-header h2 {
        font-size: 1.4rem;
    }

    .content-description p {
        font-size: 1.2rem;
    }

    .feature h3 {
        font-size: 1.3rem;
    }

    .feature-description p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .vietnam-exploration {
        padding: 2rem 0;
    }

    .image-frames {
        gap: 6px;
    }

    .frame,
    .frame-left,
    .frame-center,
    .frame-right {
        width: 32%;
        min-width: 110px;
        max-width: 160px;
        height: 300px;
        border-radius: 8px;
    }

    .frame-center {
        transform: translateY(-16px);
    }

    .frame-right {
        transform: translateY(16px);
    }

    .content-header h2 {
        font-size: 1.2rem;
    }

    .content-description p {
        font-size: 1.1rem;
    }

    .feature h3 {
        font-size: 1.2rem;
    }

    .feature-description p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .vietnam-exploration {
        padding: 2rem 0;
    }

    .image-frames {
        gap: 4px;
        justify-content: center;
    }

    .frame,
    .frame-left,
    .frame-center,
    .frame-right {
        width: 90px;
        min-width: 70px;
        max-width: 100px;
        height: 190px;
        border-radius: 5px;
    }

    .frame-center {
        transform: translateY(-10px);
    }

    .frame-right {
        transform: translateY(10px);
    }

    .content-header h2 {
        font-size: 1rem;
    }

    .content-description p {
        font-size: 1rem;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .feature-description p {
        font-size: 0.8rem;
    }

}

/* Flash Sales Section.......................................................................................... */
.flash-sales {
    padding: 5rem 0;
}

.flash-sales-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.flash-sales-title h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.flash-sales-description {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.flash-sales-description p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: center;
}

.flash-sales-timer {
    background-color: #1B1B1B;
    border: 2.5px solid #30353D;
    border-radius: 12px;
    padding: 16px 32px;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-hours,
.timer-minutes,
.timer-seconds {
    font-family: 'Digital Numbers', 'Courier New', monospace;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.29em;
    text-align: center;
}

.timer-separator {
    font-family: 'Digital Numbers', 'Courier New', monospace;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.29em;
}

.flash-sales-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.flash-sales-left {
    width: 65%;
}

/* Region tabs styling */
.region-tabs {
    position: relative;
    margin-bottom: 40px;
    padding: 20px 0;
    border-radius: 10px;
}

.region-line {
    position: absolute;
    top: 65%;
    left: 0;
    width: 100%;
    background-color: transparent;
    border-top: 3px dashed rgba(255, 255, 255, 0.2);
}

.region-line:before,
.region-line:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: -5px;
    /* Để căn giữa so với đường đứt đoạn */
}

.region-line:before {
    left: 0;
}

.region-line:after {
    right: 0;
}

.region-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 0 30px;
}

.region-item {
    position: relative;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.region-item h3 {
    margin: 0 0 20px;
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s, transform 0.3s;
}

.region-item:hover h3 {
    color: rgba(255, 255, 255, 1);
}

.region-item.active h3 {
    color: #fff;
    font-weight: 600;
}

.region-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    transform: translateX(-50%) rotate(45deg);
    background-color: rgba(255, 255, 255, 0.4);
}

.region-item::before,
.region-item::after {
    content: '';
    position: absolute;
    bottom: 3.5px;
    width: 1px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.region-item::before {
    left: -15px;
}

.region-item::after {
    right: -15px;
}

.region-item.active .region-indicator {
    width: 15px;
    height: 15px;
    bottom: 13px;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Add spacing between region tabs and flash sales cards */
.flash-sales-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-top: 30px;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    cursor: grab;
}

.flash-sales-cards:active {
    cursor: grabbing;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.flash-sales-cards::-webkit-scrollbar {
    display: none;
}

.vietnam-map {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.vietnam-map img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

/* Cards section */
.flash-card {
    min-width: 280px;
    max-width: 380px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 380px;
    scroll-snap-align: center;
}


.flash-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flash-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    /* Prevent image from shrinking */
}

.flash-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.flash-card:hover .flash-card-image img {
    transform: scale(1.05);
}

.flash-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flash-card:hover .flash-card-video {
    opacity: 1;
}

.flash-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Allow content to grow and fill remaining space */
    justify-content: space-between;
    /* Distribute content evenly */
}

.flash-card-header {
    margin-bottom: 12px;
}

.flash-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    color: red;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    gap: 6px;
}

.flash-card-header h4 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.3;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    min-height: 3.4rem;
}

.flash-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: column;
}

.flash-card-details {
    flex: 1;
    min-width: 0;
    width: 100%;
    /* Allow the details to shrink below min-content width */
}

.flash-prices {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}

.sale-price {
    color: red;
    font-weight: bold;
    font-size: 1.2rem;
}


.flash-progress {
    height: 5px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.flash-progress-bar {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #ff8a3d, #ff4500);
    border-radius: 5px;
}

.flash-btn {
    margin-top: 10px;
}

.flash-card-footer {
    display: flex;
    align-items: center;
    font-size: 1rem;
    flex-wrap: wrap;
}

.flash-highlight {
    color: #ff4500;
    font-weight: 500;
    margin-right: 8px;
    white-space: nowrap;
}

.flash-dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 8px;
    flex-shrink: 0;
}

.flash-expire {
    color: #999;
    white-space: nowrap;
}

.flash-expire span:first-child {
    margin-right: 2px;
}

.flash-terms {
    color: #666;
    text-decoration: none;
    margin-left: 8px;
    white-space: nowrap;
}

.flash-terms:hover {
    color: #ff4500;
    text-decoration: underline;
}

/* Right section with map */
.flash-sales-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 80px;
}

.navigation-buttons {
    display: flex;
    gap: 40px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(1, 1, 1, 0.1);
    border: 1.5px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.nav-btn i {
    color: #FFFFFF;
    font-size: 18px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.map-region {
    font-size: 0;
}

/* Responsive styles for Flash Sales */
@media (max-width: 1200px) {

    .timer-hours,
    .timer-minutes,
    .timer-seconds {
        font-size: 1.5rem;
    }

    .flash-sales-title h2 {
        font-size: 1.7rem;
    }

    .flash-sales-description p {
        font-size: 1.3rem;
    }

    .region-row {
        gap: 40px;
    }

    .region-item h3 {
        font-size: 1.6rem;
    }

    .flash-sales-content {
        gap: 32px;
    }

    .flash-card-header h4 {
        font-size: 1.2rem;
    }

    .flash-tag {
        font-size: 0.95rem;
    }

    .original-price {
        font-size: 0.95rem;
    }

    .sale-price {
        font-size: 1.1rem;
    }

    .flash-btn {
        font-size: 0.95rem;
    }

    .flash-card-footer {
        font-size: 0.95rem;
    }

    .flash-expire span {
        font-size: 0.95rem;
    }

    .flash-highlight {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {

    .timer-hours,
    .timer-minutes,
    .timer-seconds {
        font-size: 1.3rem;
    }

    .flash-sales-title h2 {
        font-size: 1.4rem;
    }

    .flash-sales-description p {
        font-size: 1.1rem;
    }

    .region-item h3 {
        font-size: 1.3rem;
    }

    .flash-card-header h4 {
        font-size: 1.1rem;
    }

    .flash-tag {
        font-size: 0.9rem;
    }

    .original-price {
        font-size: 0.9rem;
    }

    .sale-price {
        font-size: 1rem;
    }

    .flash-btn {
        font-size: 0.9rem;
    }

    .flash-card-footer {
        font-size: 0.9rem;
    }

    .flash-expire span {
        font-size: 0.9rem;
    }

    .flash-highlight {
        font-size: 0.9rem;
    }

    .region-row {
        gap: 20px;
    }

    .region-indicator {
        bottom: 13px;
    }

    .region-item.active .region-indicator {
        bottom: 10px;
    }
}

@media (max-width: 768px) {
    .flash-sales-content {
        flex-direction: column;
        gap: 16px;
    }

    .flash-sales-left,
    .flash-sales-right {
        width: 100%;
    }

    .flash-sales-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding: 0 0 10px 0;
        scroll-snap-type: x mandatory;
    }

    .flash-card {
        min-width: 280px;
        scroll-snap-align: center;
    }

    .navigation-buttons {
        display: none !important;
    }

    .flash-sales-right {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .region-tabs {
        flex: 1;
        margin-bottom: 0;
    }

    .vietnam-map {
        flex: 1;
        height: 120px;
        min-width: 120px;
        max-width: 180px;
        margin-left: 16px;
    }

    .flash-sales-title h2 {
        font-size: 1.2rem;
    }

    .flash-sales-description p {
        font-size: 1rem;
    }

    .timer-hours,
    .timer-minutes,
    .timer-seconds {
        font-size: 1.1rem;
    }

    .region-row {
        gap: 16px;
    }

    .region-item h3 {
        font-size: 1.1rem;
    }

    .vietnam-map {
        display: none !important;
    }

    .flash-card-header h4 {
        font-size: 1rem;
    }

    .flash-tag {
        font-size: 0.85rem;
    }

    .original-price {
        font-size: 0.85rem;
    }

    .sale-price {
        font-size: 0.95rem;
    }

    .flash-btn {
        font-size: 0.85rem;
    }

    .flash-card-footer {
        font-size: 0.85rem;
    }

    .flash-expire span {
        font-size: 0.85rem;
    }

    .flash-highlight {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {

    .timer-hours,
    .timer-minutes,
    .timer-seconds {
        font-size: 1rem;
    }

    .region-indicator {
        bottom: 23px;
    }

    .region-item.active .region-indicator {
        bottom: 20px;
    }

    .flash-sales {
        padding: 1.5rem 0;
    }

    .flash-sales-title {
        margin-bottom: 1rem;
        gap: 8px;
    }

    .flash-sales-title h2 {
        font-size: 1rem;
    }

    .flash-sales-description p {
        font-size: 0.9rem;
    }

    .region-tabs {
        margin-bottom: 0;
    }

    .region-row {
        flex-direction: row;
        gap: 8px;
    }

    .region-item h3 {
        font-size: 0.95rem;
    }

    .flash-sales-content {
        gap: 8px;
    }

    .flash-sales-cards {
        display: flex;
        /*flex-wrap: nowrap;*/
        flex-direction: column;
        overflow-x: auto;
        gap: 20px;
        padding: 0 0 6px 0;
        scroll-snap-type: x mandatory;
    }

    .flash-card {
        margin: 0 auto;
        width: 100%;
        min-width: 250px;
        max-width: 320px;
        scroll-snap-align: center;
    }

    .vietnam-map {
        height: 80px;
        min-width: 80px;
        max-width: 120px;
        margin-left: 8px;
    }

    .vietnam-map {
        display: none !important;
    }

    .flash-card-header h4 {
        font-size: 0.95rem;
    }

    .flash-tag {
        font-size: 0.8rem;
    }

    .original-price {
        font-size: 0.8rem;
    }

    .sale-price {
        font-size: 0.9rem;
    }

    .flash-btn {
        font-size: 0.8rem;
    }

    .flash-card-footer {
        font-size: 0.8rem;
    }

    .flash-expire span {
        font-size: 0.8rem;
    }

    .flash-highlight {
        font-size: 0.8rem;
    }
}

/* Tourism Section.......................................................................................... */
.tourism {
    padding: 5rem 0;
}

.tourism-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.tourism-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 400px;
    min-width: 260px;
    max-width: 100%;
}

.tourism-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tourism-header h4 {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 1rem;
    color: var(--brand-color);
    margin: 0;
}

.tourism-header h2 {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1em;
}

.tourism-description {
    max-width: 670px;
    text-align: right;
    align-self: flex-end;
}

.tourism-description p {
    font-weight: 400;
    font-size: 1.2rem;
    font-style: italic;
    color: #BAC1CC;
    margin: 0;
    line-height: 1.5;
}

.tourism-content-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.tourism-image {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 500px;
    margin: 0 auto;
}

.tourism-image img {
    position: absolute;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.tourism-image img:first-child {
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
    z-index: 1;
}

.tourism-image img:last-child {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 55%;
    z-index: 2;
}

.tourism-features {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.tourism-features-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.tourism-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.tourism-feature h3 {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1em;
}

.tourism-feature h4 {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1em;
}

.feature-description {
    margin-top: 8px;
}

.feature-description p {
    font-weight: 400;
    font-size: 1rem;
    color: #BAC1CC;
    margin: 0;
    line-height: 1.5;
}

/* Responsive styles for Tourism Section */
@media (max-width: 1200px) {
    .tourism-header h2 {
        font-size: 1.7rem;
    }

    .tourism-header h4 {
        font-size: 0.95rem;
    }

    .tourism-feature h3 {
        font-size: 1.2rem;
    }

    .tourism-feature h4 {
        font-size: 1rem;
    }

    .tourism-description p,
    .feature-description p {
        font-size: 1rem;
    }

    .tourism-content-grid {
        gap: 40px;
    }

    .tourism-image {
        max-width: 340px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .tourism-row {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 48px;
        align-items: flex-start;
    }

    .tourism-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .tourism-description {
        text-align: left;
        align-self: flex-start;
        max-width: 100%;
    }

    .tourism-content-grid {
        flex-direction: column;
        gap: 32px;
    }

    .tourism-image {
        max-width: 480px;
        height: 380px;
        margin-bottom: 22px;
        position: relative;
    }

    .tourism-image img:first-child {
        width: 78%;
        height: 92%;
        top: -20px;
        left: -45px;
        z-index: 1;
    }

    .tourism-image img:last-child {
        width: 68%;
        height: 80%;
        bottom: -15px;
        right: -50px;
        z-index: 2;
    }

    .tourism-features-row {
        flex-direction: row;
        gap: 24px;
    }

    .tourism-header h2 {
        font-size: 1.4rem;
    }

    .tourism-header h4 {
        font-size: 0.9rem;
    }

    .tourism-feature h3 {
        font-size: 1.1rem;
    }

    .tourism-feature h4 {
        font-size: 0.95rem;
    }

    .tourism-description p,
    .feature-description p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .tourism-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .tourism-header h2 {
        font-size: 1.2rem;
    }

    .tourism-header h4 {
        font-size: 0.9rem;
    }

    .tourism-feature h3 {
        font-size: 1rem;
    }

    .tourism-feature h4 {
        font-size: 0.9rem;
    }

    .tourism-description p,
    .feature-description p {
        font-size: 0.85rem;
    }

    .tourism-content-grid {
        flex-direction: column;
        gap: 24px;
    }

    .tourism-image {
        max-width: 340px;
        height: 250px;
        margin-bottom: 16px;
        position: relative;
    }

    .tourism-image img:first-child {
        width: 75%;
        height: 90%;
        top: -15px;
        left: -30px;
        z-index: 1;
    }

    .tourism-image img:last-child {
        width: 65%;
        height: 75%;
        bottom: -15px;
        right: -30px;
        z-index: 2;
    }

    .tourism-features-row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .tourism {
        padding: 2rem 0;
    }

    .tourism-header h2 {
        font-size: 1.1rem;
    }

    .tourism-header h4 {
        font-size: 0.85rem;
    }

    .tourism-feature h3 {
        font-size: 0.95rem;
    }

    .tourism-feature h4 {
        font-size: 0.85rem;
    }

    .tourism-description p,
    .feature-description p {
        font-size: 0.85rem;
    }

    .tourism-content-grid {
        gap: 12px;
    }

    .tourism-image {
        max-width: 220px;
        height: 140px;
        min-height: 90px;
        margin-bottom: 10px;
        position: relative;
    }

    .tourism-image img:first-child {
        width: 70%;
        height: 90%;
        top: -15px;
        left: -15px;
        z-index: 1;
    }

    .tourism-image img:last-child {
        width: 60%;
        height: 75%;
        bottom: -10px;
        right: -15px;
        z-index: 2;
    }
}

/* Vietnam Blogs Section.......................................................... */
.vietnam-blogs {
    padding: 5rem 0;
    overflow: hidden;
}

.vietnam-blogs-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.vietnam-blogs-title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.vietnam-blogs-title h2 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.vietnam-blogs-title p {
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.5;
    font-style: italic;
    color: #BAC1CC;
    max-width: 800px;
    margin: 0 auto;
}

.vietnam-header h2 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.vietnam-section {
    display: flex;
    gap: 30px;
}

.vietnam-map-container {
    flex: 6;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vietnam-map-wrapper {
    width: 100%;
    background-color: var(--background-color-secondary);
    border: 1px solid #30353D;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vietnam-map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.vietnam-map-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
}

.vietnam-info-container {
    flex: 6;
    /* Decreased from 5 to 4 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vietnam-flag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #DA251D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.vietnam-flag i {
    color: #FFFF00;
    font-size: 30px;
}

.vietnam-info {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vietnam-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.vietnam-info-header h3 {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.vietnam-stats {
    display: flex;
    gap: 20px;
    justify-content: space-between
}

.vietnam-stats p {
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    margin: 0;
}

.vietnam-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.region-button {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    margin: 0;
    border: 2px solid transparent;
    box-shadow: 0 0 0 0 rgba(207, 167, 96, 0.5);
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
    cursor: pointer;
}

.region-button:hover,
.region-button:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 12px 2px var(--brand-color), 0 0 2px 0 var(--primary-color);
    background-color: rgba(255, 255, 255, 0.18);
    outline: none;
}

.region-button.active,
.region-button:active {
    border-color: var(--primary-color);
    box-shadow: 0 0 18px 4px var(--primary-color), 0 0 4px 0 var(--brand-color);
    background-color: rgba(255, 255, 255, 0.22);
}

.back-button {
    background-color: var(--brand-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    margin: 0;
}

.region-tag {
    background-color: rgba(1, 1, 1, 0.2);
    border: 1px solid #30353D;
    border-radius: 100px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-tag:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.region-tag span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white-color);
}

.vietnam-flag-container img {
    width: 100%;
    height: auto;
    display: block;
    padding: 15px 15px 0;
}

.vietnam-blogs-grid {
    position: relative;
    margin-top: 40px;
}

.blogs-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    margin: 0 -5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    will-change: transform, scroll-position;
    /* Performance optimization */
    width: 100%;
}

.blogs-row::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.blogs-row.active {
    cursor: grabbing;
    will-change: transform, scroll-position;
}

.vietnam-blogs-grid .blog-card {
    min-width: calc(33% - 10px);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    background-color: var(--background-color-secondary);
    border-radius: 8px;
}

.blog-card-image {
    position: relative;
    /*height: 220px;*/
    overflow: hidden;
    border-radius: 8px;
}

.blog-card-image img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    height: 100%;
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
}

/* Transitions for smooth effects */
.blog-card {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(255, 255, 255, 0.18) 0px 4px 16px 0px, rgba(0, 0, 0, 0.1) 0px 2px 8px;
    border: 2.5px solid var(--primary-color);
    outline: none;
    z-index: 5;
}

/* --- Vietnam Blogs Card Modern Responsive --- */
.blog-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.blog-card-description p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: justify;
}

.blog-card-content {
    padding: 16px 10px 0px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
}

.blog-book-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color, #23272f);
    border: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    align-self: center;
    margin-bottom: 18px;
    margin-top: auto;
}

.blog-book-btn:hover {
    background-color: var(--brand-color);
    color: var(--primary-color);
}


/* --- Responsive Vietnam Blogs Section --- */
@media (max-width: 1200px) {
    .vietnam-blogs {
        padding: 4rem 0;
    }

    .vietnam-blogs-title h2 {
        font-size: 1.7rem;
    }

    .vietnam-blogs-title p {
        font-size: 1.2rem;
    }

    .vietnam-header h2 {
        font-size: 1.7rem;
    }

    .region-button,
    .vietnam-stats p {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .region-item h3 {
        font-size: 1.2rem;
    }

    .blogs-row {
        gap: 12px;
    }

    /*.blog-card-image {*/
    /*    height: 230px;*/
    /*}*/

    .blogs-row .blog-card {
        min-width: calc(33% - 4px);
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-card-description p {
        font-size: 0.95rem;
    }

    .blog-book-btn {
        font-size: 0.95rem;
        padding: 7px 16px;
    }
}

@media (max-width: 992px) {
    .vietnam-blogs {
        padding: 3rem 0;
    }

    .vietnam-blogs-title h2 {
        font-size: 1.4rem;
    }

    .vietnam-blogs-title p {
        font-size: 1.1rem;
    }

    .vietnam-header h2 {
        font-size: 1.4rem;
    }

    .vietnam-info-header h3 {
        font-size: 1.1rem;
    }

    .blogs-row {
        gap: 10px;
    }

    /*.blog-card-image {*/
    /*    height: 210px;*/
    /*}*/

    .region-button,
    .vietnam-stats p {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .vietnam-blogs-grid {
        margin-top: 20px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    .blog-card-description p {
        font-size: 0.9rem;
    }

    .blog-book-btn {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 920px) {
    .blogs-row .blog-card {
        min-width: calc(50% - 5px);
    }
}

@media (max-width: 768px) {
    .vietnam-blogs {
        padding: 2rem 0;
    }

    .vietnam-blogs-title h2 {
        font-size: 1.2rem;
    }

    .vietnam-blogs-title p {
        font-size: 1rem;
    }

    .vietnam-header h2 {
        font-size: 1.2rem;
    }

    .vietnam-info-header h3 {
        font-size: 1rem;
    }

    .blogs-row {
        gap: 8px;
        padding: 10px 0;
    }

    /*.blog-card-image {*/
    /*    height: 230px;*/
    /*    border-radius: 10px;*/
    /*}*/

    .region-button,
    .vietnam-stats p {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .vietnam-blogs-grid {
        margin-top: 0px;
    }

    /*.blogs-row .blog-card {*/
    /*    min-width: 350px*/
    /*}*/

    .vietnam-section {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .vietnam-map-container {
        width: 400px;
    }

    .vietnam-map-container,
    .vietnam-info-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .vietnam-map-wrapper {
        min-height: 140px;
    }

    .vietnam-flag-container {
        display: none !important;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-description p {
        font-size: 0.85rem;
    }

    .blog-book-btn {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

}

@media (max-width: 576px) {
    .blogs-row {
        flex-direction: column !important;
    }

    .blog-card {
        margin: 0 auto;
        width: 100%;
        min-width: 250px;
        max-width: 320px;
    }

    .vietnam-blogs {
        padding: 2rem 0;
    }

    .vietnam-blogs-title h2 {
        font-size: 1rem;
    }

    .vietnam-blogs-title p {
        font-size: 0.9rem;
    }

    .vietnam-header h2 {
        font-size: 1rem;
    }

    .vietnam-info-header h3 {
        font-size: 0.95rem;
    }

    .blogs-row {
        gap: 20px;
        padding: 6px 0;
    }

    /*.blog-card-image {*/
    /*    height: 170px;*/
    /*    border-radius: 8px;*/
    /*}*/

    .vietnam-blogs-grid {
        margin-top: 0px;
    }

    /*.blogs-row .blog-card {*/
    /*    min-width: 245px;*/
    /*}*/

    .region-button,
    .vietnam-stats p {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .region-tag span {
        font-size: 0.85rem;
    }

    .vietnam-section {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .vietnam-map-container {
        width: 300px;
    }

    .vietnam-map-container,
    .vietnam-info-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .vietnam-map-wrapper {
        min-height: 80px;
    }

    .vietnam-flag-container {
        display: none !important;
    }

    .blog-card-title {
        font-size: 0.95rem;
    }

    .blog-card-description p {
        font-size: 0.8rem;
    }

    .blog-book-btn {
        font-size: 0.8rem;
        padding: 5px 6px;
    }

}

/* Customer Feedback Section */
.customer-feedback {
    padding: 5rem 0;
    overflow: hidden;
}

.feedback-header {
    text-align: center;
    margin-bottom: 40px;
}

.feedback-header h2 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feedback-header p {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #BAC1CC;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.feedback-container {
    position: relative;
    padding: 0 20px;
    margin-top: 40px;
    overflow: hidden;
    /* Ensure content doesn't overflow */
}

.feedback-row {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5px;
    margin: 0 -5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    will-change: transform, scroll-position;
    /* Performance optimization */
    max-width: 100%;
}

.feedback-row::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.feedback-row.active {
    cursor: grabbing;
    will-change: transform, scroll-position;
}

.feedback-card {
    min-width: 350px;
    position: relative;
    background-color: #1A1A1A;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-10px);
}

.quote-icon-left {
    color: rgba(255, 255, 255, 0.1);
    font-size: 35px;
}

.quote-icon-right {
    color: rgba(255, 255, 255, 0.1);
    font-size: 35px;
    display: flex;
    justify-content: flex-end;
}

.feedback-content {
    position: relative;
    z-index: 2;
}

.feedback-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #E0E0E0;
    min-height: 150px;
}

.feedback-author {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white-color);
    margin: 0;
}

.author-info p {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 5px 0 0;
    min-height: auto;
}

/* --- Responsive Customer Feedback Section --- */
@media (max-width: 1200px) {
    .customer-feedback {
        padding: 4rem 0;
    }

    .feedback-header h2 {
        font-size: 1.7rem;
    }

    .feedback-header p {
        font-size: 1.3rem;
    }

    .feedback-card {
        min-width: 360px;
    }

    .feedback-row {
        gap: 18px;
        padding: 16px 2px;
    }

    .author-info h4 {
        font-size: 1.4rem;
    }

    .author-info p {
        font-size: 0.95rem;
    }

    .feedback-content p {
        font-size: 0.95rem;
    }

}

@media (max-width: 992px) {
    .customer-feedback {
        padding: 3rem 0;
    }

    .feedback-header h2 {
        font-size: 1.4rem;
    }

    .feedback-header p {
        font-size: 1.1rem;
    }

    .feedback-card {
        min-width: 295px;
    }

    .feedback-row {
        gap: 12px;
        padding: 10px 0;
    }

    .feedback-content p {
        font-size: 0.9rem;
    }

    .author-info h4 {
        font-size: 1.2rem;
    }

    .author-info p {
        font-size: 0.9rem;
    }

    .author-image {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .customer-feedback {
        padding: 2rem 0;
    }

    .feedback-header h2 {
        font-size: 1.2rem;
    }

    .feedback-header p {
        font-size: 1rem;
    }

    .feedback-card {
        min-width: 340px;
    }

    .feedback-row {
        gap: 8px;
        padding: 6px 0;
    }

    .feedback-content p {
        font-size: 0.85rem;
        min-height: unset;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .author-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .customer-feedback {
        padding: 2rem 0;
    }

    .feedback-header {
        margin-bottom: 18px;
    }

    .feedback-header h2 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feedback-header p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .feedback-row {
        gap: 4px;
        padding: 2px 0;
    }

    .feedback-card {
        min-width: 260px;
    }

    .feedback-content p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .author-image {
        width: 35px;
        height: 35px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 5rem 0;
    overflow: hidden;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.faq-title {
    width: 400px;
}

.brand-name {
    font-weight: 400;
    font-size: 1rem;
    color: var(--brand-color);
    margin: 0;
}

.faq-title h2 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
}

.faq-description {
    max-width: 670px;
    text-align: right;
    align-self: flex-end;
}

.faq-description p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #BAC1CC;
}

.faq-list {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(35, 35, 35, 0.5);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question:hover {
    background-color: rgba(207, 167, 96, 0.08);
}

.faq-item.active .faq-question h3 {
    color: var(--brand-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
}

.faq-question h3 {
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #BAC1CC;
}

@media (max-width: 1200px) {
    .faq-section {
        padding: 4rem 0;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .faq-title h2 {
        font-size: 1.7rem;
    }

    .faq-description p {
        font-size: 1.3rem;
    }

    .faq-question h3 {
        font-size: 1.2rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 3rem 0;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .faq-title h2 {
        font-size: 1.4rem;
    }

    .faq-description {
        text-align: left;
        align-self: flex-start;
        max-width: 100%;
    }

    .faq-description p {
        font-size: 1.1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }

    .faq-toggle {
        font-size: 20px;
        width: 26px;
        height: 26px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-header {
        flex-direction: column;
        gap: 30px;
    }


}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }

    .brand-name {
        font-size: 0.85rem;
    }

    .faq-title h2 {
        font-size: 1.2rem;
    }

    .faq-description p {
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-toggle {
        font-size: 18px;
        width: 22px;
        height: 22px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 2rem 0;
    }

    .brand-name {
        font-size: 0.8rem;
    }

    .faq-title h2 {
        font-size: 1rem;
    }

    .faq-description p {
        font-size: 0.9rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 15px;
    }

    .faq-toggle {
        font-size: 16px;
        width: 18px;
        height: 18px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* Contact Section............................... */
.contact-section {
    background-color: var(--background-color);
    padding: 5rem 0;
    overflow: hidden;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    position: relative;
    background-image: url('/images/common/patten01.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #121212;
    border-radius: 8px;
    max-width: 550px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Đảm bảo overlay không tràn ra ngoài */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    /* lớp phủ mờ đen */
    z-index: 0;
}

.contact-card .content {
    position: relative;
    z-index: 1;
    /* Đảm bảo nội dung nằm trên lớp phủ */
}

.contact-logo {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-logo img {
    width: 230px;
    height: auto;
    margin-bottom: 15px;
}

.contact-title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-description {
    margin-bottom: 30px;
}

.contact-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #BAC1CC;
    max-width: 450px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.form-group input {
    width: 100%;
    height: 45px;
    background: rgba(24, 24, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0 15px 0 45px;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    width: 100%;
    height: 48px;
    background-color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--brand-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px 4px var(--primary-color), 0 0 4px 0 var(--brand-color);
}

@media (max-width: 1200px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-title {
        font-size: 1.7rem;
    }

    .contact-description p {
        font-size: 0.95rem;
    }

    .form-group input {
        font-size: 0.95rem;
    }

    .submit-btn {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-title {
        font-size: 1.4rem;
    }

    .contact-description p {
        font-size: 0.9rem;
    }

    .form-group input {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-card {
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 1.2rem;
    }

    .contact-description p {
        font-size: 0.85rem;
    }

    .form-group input {
        font-size: 0.85rem;
    }

    .submit-btn {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 1rem;
    }

    .contact-description p {
        font-size: 0.8rem;
    }

    .form-group input {
        font-size: 0.8rem;
    }

    .submit-btn {
        font-size: 0.8rem;
    }
}


/* Footer Section --------------------------------------------------- */
footer {
    background-color: #181818;
    color: #e0e0e0;
    padding: 4rem 0 1.5rem;
    font-size: 1rem;
    border-top: 1.5px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 200px;
    margin-bottom: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.footer-column p {
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--text-color-secondary);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    color: #fff;
    font-size: 1.3rem;
}

.social-links a:hover {
    background-color: var(--brand-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px 2px var(--brand-color);
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-color);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 6px;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--brand-color);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column ul li a {
    color: #e0e0e0;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s, padding-left 0.2s;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    color: var(--brand-color);
    opacity: 1;
    padding-left: 6px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-info li i {
    color: var(--brand-color);
    font-size: 1rem;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.98rem;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--text-color-secondary);
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--brand-color);
    opacity: 1;
}

@media (max-width: 1200px) {
    .footer-column h3 {
        font-size: 1.6rem;
    }


    .footer-column p {
        font-size: 0.95rem;
    }

    .footer-column ul li a {
        font-size: 0.95rem;
    }

    .contact-info li {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.95rem;
    }

    .footer-column h3 {
        font-size: 1.3rem;
    }

    .footer-column p {
        font-size: 0.9rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .contact-info li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column p {
        font-size: 0.85rem;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
    }

    .contact-info li {
        font-size: 0.85rem;
    }


}

@media (max-width: 576px) {
    footer {
        padding: 2rem 0 1rem;
        font-size: 0.95rem;
    }

    .footer-grid {
        gap: 18px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 10px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-column h3 {
        font-size: 0.95rem;
    }

    .footer-column p {
        font-size: 0.8rem;
    }

    .footer-column ul li a {
        font-size: 0.8rem;
    }

    .contact-info li {
        font-size: 0.8rem;
    }


}

/* Auth Page Styles (Login/Register) --------------------------------------------------- */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.auth-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
    animation: slowPulse 15s ease-in-out infinite alternate;
}

.auth-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    height: 100%;
}

.auth-card {
    background: rgba(35, 39, 47, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    height: 600px;
    position: relative;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Logo Side */
.auth-side {
    width: 50%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.logo-side {
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.auth-card.show-register .logo-side {
    transform: translateX(-100%);
}

.logo-container {
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-card.show-register .logo-container {
    transform: translateX(100%);
}

.logo-container img {
    width: 300px;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.logo-container img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Forms Side */
.forms-side {
    background: var(--background-color-secondary);
    padding: 0;
    top: 0;
    right: 0;
}

.forms-wrapper {
    position: relative;
    width: 200%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.form-container {
    width: 50%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 1.8rem;
    color: var(--brand-color);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.form-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--brand-color);
    margin: 8px auto 0;
    border-radius: 3px;
}

.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    margin-bottom: 0;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-color);
    font-size: 1rem;
    opacity: 1;
    z-index: 10;
}

.input-with-icon input {
    font-size: 1rem;
    padding-left: 45px !important;
    /* Increased padding-left to create space for the icon */
}

.form-group:hover .input-with-icon i {
    color: var(--brand-color);
    text-shadow: 0 0 6px rgba(207, 167, 96, 0.8);
}

.form-group input:focus~.input-with-icon i {
    color: var(--brand-color);
    text-shadow: 0 0 8px rgba(207, 167, 96, 1);
}

.form-group input {
    width: 100%;
    height: 45px;
    background: rgba(24, 24, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0 15px 0 48px;
    /* Increased padding-left from 15px to 48px */
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-group input:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 2px rgba(207, 167, 96, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    outline: none;
    background: rgba(24, 24, 24, 0.9);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
}

.remember-me input[type="checkbox"] {
    margin: 0;
    accent-color: var(--brand-color);
}

.forgot-password {
    color: var(--brand-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-terms input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--brand-color);
}

.form-terms label a {
    color: var(--brand-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-terms label a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    height: 48px;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 0;
    background: linear-gradient(45deg, var(--brand-color) 0%, #ddb978 100%);
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(207, 167, 96, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.auth-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(207, 167, 96, 0.35);
    background: linear-gradient(45deg, #ddb978 0%, var(--brand-color) 100%);
    letter-spacing: 1px;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(207, 167, 96, 0.3);
}

.social-auth {
    margin-top: 18px;
}

.auth-divider {
    width: 100%;
    text-align: center;
    margin: 0 0 15px 0;
    position: relative;
}

.auth-divider span {
    background: rgba(35, 39, 47, 0.4);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 16px;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.btn-social {
    flex: 1;
    height: 42px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-social i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-social span {
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-social::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 120%;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1;
}

.btn-social:hover::after {
    height: 200%;
}

.btn-social:hover i {
    transform: scale(1.15) translateY(-2px);
}

.btn-social:hover span {
    transform: translateY(-1px);
}

.btn-social.google {
    background: #fff;
    color: #23272f;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-social.google:hover {
    background: #f5f5f5;
    color: #4285F4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    transform: translateY(-2px);
}

.btn-social.facebook {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}

.btn-social.facebook:hover {
    background: #166fe5;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
    transform: translateY(-2px);
}

.switch-form {
    text-align: center;
    margin-top: 15px;
}

.switch-form p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.switch-form a {
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.switch-form a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Auth Forms and Overlay Animation */
.auth-forms {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.form-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 40px;
    background: rgba(35, 39, 47, 0.95);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow-y: hidden;
    justify-content: center;
}

.login-form {
    left: 0;
    z-index: 2;
    animation: slideInLeft 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.register-form {
    right: 0;
    opacity: 0;
    z-index: 1;
    transform: translateX(100%);
}

.auth-card.right-panel-active .register-form {
    animation: slideInRight 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 50;
}

.overlay {
    position: relative;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-color-secondary) 100%);
    display: flex;
    justify-content: space-between;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.overlay-panel {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    text-align: center;
}

.overlay-left {
    transform: translateX(-20%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Active Animation State */
.auth-card.right-panel-active .login-form {
    transform: translateX(-100%);
    opacity: 0;
}

.auth-card.right-panel-active .register-form {
    transform: translateX(0);
    opacity: 1;
    z-index: 5;
}

.auth-card.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.auth-card.right-panel-active .overlay {
    transform: translateX(50%);
}

.auth-card.right-panel-active .overlay-left {
    transform: translateX(0);
}

.auth-card.right-panel-active .overlay-right {
    transform: translateX(20%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .auth-card {
        width: 80%;
        max-width: 800px;
        margin: 0 auto;
        height: 510px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .input-with-icon i,
    .input-with-icon input {
        font-size: 0.95rem;
    }

    .form-options {
        font-size: 0.85rem;
    }

    .auth-btn {
        font-size: 1rem;
    }

    .auth-divider span {
        font-size: 0.9rem;
    }

    .btn-social span {
        font-size: 0.9rem;
    }

    .btn-social i {
        font-size: 1rem;
    }

    .switch-form p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .auth-card {
        width: 80%;
        max-width: 680px;
        margin: 0 auto;
        height: 500px;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .input-with-icon i,
    .input-with-icon input {
        font-size: 0.9rem;
    }

    .form-options {
        font-size: 0.8rem;
    }

    .auth-btn {
        font-size: 0.95rem;
    }

    .auth-divider span {
        font-size: 0.85rem;
    }

    .btn-social span {
        font-size: 0.85rem;
    }

    .btn-social i {
        font-size: 0.95rem;
    }

    .switch-form p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .auth-card {
        flex-direction: column;
        height: auto;
        width: 50%;
        max-width: 550px;
    }

    .auth-side {
        width: 100%;
        position: relative;
    }

    .forms-side {
        width: 100%;
    }

    .form-panel {
        width: 100%;
        padding: 20px 25px;
    }

    .overlay-container {
        display: none;
    }

    .register-form {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        opacity: 0;
        display: none;
    }

    .login-form {
        position: relative;
        opacity: 1;
        width: 100%;
    }

    .auth-card.right-panel-active .login-form {
        display: none;
    }

    .auth-card.right-panel-active .register-form {
        display: block;
        opacity: 1;
        transform: none;
    }

    .form-title {
        font-size: 1.1rem;
    }

    .input-with-icon i,
    .input-with-icon input {
        font-size: 0.85rem;
    }

    .form-options {
        font-size: 0.75rem;
    }

    .auth-btn {
        font-size: 0.9rem;
    }

    .auth-divider span {
        font-size: 0.8rem;
    }

    .btn-social span {
        font-size: 0.8rem;
    }

    .btn-social i {
        font-size: 0.9rem;
    }

    .switch-form p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .auth-card {
        width: 60%;
        min-width: 300px;
        border-radius: 15px;
    }

    .form-panel {
        padding: 15px 20px;
    }

    .form-title {
        font-size: 0.95rem;
    }

    .input-with-icon i,
    .input-with-icon input {
        font-size: 0.8rem;
    }

    .form-options {
        font-size: 0.7rem;
    }

    .auth-btn {
        font-size: 0.85rem;
    }

    .auth-divider span {
        font-size: 0.75rem;
    }

    .btn-social span {
        font-size: 0.75rem;
    }

    .btn-social i {
        font-size: 0.85rem;
    }

    .switch-form p {
        font-size: 0.75rem;
    }

}

/* Forgot Password.......................................................... */
.forgot-card {
    max-width: 550px;
    margin: 0 auto;
}

.forgot-password-panel {
    width: 100%;
    padding: 30px 40px;
    background: rgba(35, 39, 47, 0.95);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.steps-container {
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.step.active {
    background-color: var(--brand-color);
    color: var(--primary-color);
}

.step-content {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.step-content.active {
    display: flex;
}

.verification-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verification-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.verification-inputs input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(24, 24, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--primary-color);
}

.resend-link {
    text-align: center;
    margin-top: 10px;
    color: var(--brand-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.resend-link:hover {
    text-decoration: underline;
}

.new-password-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-icon {
    font-size: 50px;
    color: #4BB543;
    margin: 0 auto 20px;
    text-align: center;
}

.step-description {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 20px;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

/*Tours Page.......................................................... */
.tour-banner {
    position: relative;
    height: 75vh;
    /* overflow: hidden; */
    padding: 0;
}

.banner-image {
    position: relative;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .tour-banner {
        aspect-ratio: auto;
        height: auto;
        min-height: 300px;
    }

    .banner-image{
        background-size: contain;
    }
}

.tour-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

.banner-content {
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Tours Section */
.tours-section {
    padding: 120px 0 80px;
    background-color: var(--background-color);
}

.tours-grid {
    display: grid;
    /*grid-template-columns: 220px 1fr;*/
    gap: 30px;
}

/* Tours Filters */
.tours-filters {
    background-color: var(--background-color-secondary);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--brand-color);
    color: var(--primary-color);
}

.filter-header h3 {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    margin: 0;
}

.filter-close {
    display: none;
}

.mobile-filter-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.filter-container {
    padding: 20px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.filter-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--pattern-bg);
    border-radius: 3px;
}

.filter-option:hover input~.checkmark {
    background-color: #ccc;
}

.filter-option input:checked~.checkmark {
    background-color: var(--brand-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.filter-option input:checked~.checkmark:after {
    display: block;
}

.filter-option .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-option .stars {
    display: flex;
    align-items: center;
}

.filter-option .stars i {
    color: var(--brand-color);
    font-size: 0.8rem;
    margin-right: 2px;
}

.clear-filters {
    display: block;
    width: 100%;
    margin-top: 20px;
}

.clear-filters:hover {
    background-color: var(--brand-color);
    color: var(--primary-color);
}

/* Tours List */
.tours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tours-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tours-sort {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.tours-sort label {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: 500;
    width: 100px;
}

.tours-sort select {
    padding: 8px 12px;
    border-radius: 5px;
    background-color: var(--primary-color);
    font-size: 0.9rem;
}

.tours-sort select:focus {
    border-color: var(--brand-color);
    outline: none;
}

.tours-sort select option:hover {
    background-color: var(--brand-color);
    color: var(--primary-color);
}

/* Tours Count Notification */
.tours-count-notification {}

.tours-count {
    padding: 8px 12px;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.no-tours-message {
    color: #721c24;
}

/* Tour Cards */
.tours-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tour-card {
    width: 100%;
    background-color: var(--background-color-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.04));
    transition: var(--transition), box-shadow 0.4s, border-color 0.4s, outline 0.4s, transform 0.4s;
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
    border: 2.5px solid var(--primary-color);
    outline: none;
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.card-tour-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tours-row .tour-card{
    min-width: 380px;
}

.tour-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--brand-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 3;
}

.tour-tag.bestseller {
    background-color: #ff6b6b;
}

.tour-tag.new {
    background-color: #20c997;
}

.tour-content {
    padding: 15px;
}

.tour-rating-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.tour-rating .stars {
    display: flex;
    align-items: center;
}

.tour-rating .stars i {
    color: var(--brand-color);
    font-size: 0.9rem;
    margin-right: 2px;
}

.tour-rating span {
    font-size: 0.8rem;
    color: var(--text-color-secondary);
}

.tour-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    min-height: 50px;
    text-align: center;
}

.tour-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: space-between;
}

.tour-duration,
.tour-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-color-secondary);
}

.tour-duration i,
.tour-location i {
    color: var(--brand-color);
}

.tour-price {
    margin-top: 15px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
    justify-content: space-between;
}

.price-info span {
    display: block;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.2rem;
    color: var(--brand-color);
    font-weight: 600;
}

/* Pagination */
.tours-pagination {
    margin: 0 auto;
}

.pagination-items {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--third-color);
    font-weight: 500;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pagination-btn:hover {
    background-color: var(--brand-color);
    color: var(--primary-color);
}

.pagination-btn.active {
    background-color: var(--brand-color);
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .banner-content h1 {
        font-size: 3.2rem;
    }

    .banner-content p {
        font-size: 1.3rem;
    }

    .filter-header h3 {
        font-size: 1.3rem;
    }

    .filter-group h4 {
        font-size: 1rem;
    }

    .filter-option {
        font-size: 0.85rem;
    }

    .tours-count span {
        font-size: 0.85rem;
    }

    .tour-title {
        font-size: 1.4rem;
    }

    .tour-duration span,
    .tour-location span {
        font-size: 0.8rem;
    }

    .old-price {
        font-size: 0.85rem;
    }

    .current-price {
        font-size: 1.1rem;
    }

    .tour-rating .stars i {
        font-size: 0.85rem;
    }

    .tour-rating span {
        font-size: 0.75rem;
    }

    .tour-card{
        min-width: 320px;
    }
}

@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.8rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .filter-header h3 {
        font-size: 1.1rem;
    }

    .filter-group h4 {
        font-size: 0.95rem;
    }

    .filter-option {
        font-size: 0.8rem;
    }

    .tours-count span {
        font-size: 0.8rem;
    }

    .tour-title {
        font-size: 1.3rem;
    }

    .tour-duration span,
    .tour-location span {
        font-size: 0.75rem;
    }

    .old-price {
        font-size: 0.8rem;
    }

    .current-price {
        font-size: 1rem;
    }

    .tour-rating .stars i {
        font-size: 0.8rem;
    }

    .tour-rating span {
        font-size: 0.7rem;
    }

    .tours-grid {
        gap: 15px;
    }

    .tours-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tour-card {
        margin-bottom: 15px;
        min-width: 320px;
    }

    .tour-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.4rem;
    }

    .banner-content p {
        font-size: 1.0rem;
    }

    .filter-header h3 {
        font-size: 1rem;
    }

    .filter-group h4 {
        font-size: 0.9rem;
    }

    .filter-option {
        font-size: 0.75rem;
    }

    .tours-count span {
        font-size: 0.75rem;
    }

    .tour-title {
        font-size: 1.2rem;
    }

    .tour-duration span,
    .tour-location span {
        font-size: 0.7rem;
    }

    .old-price {
        font-size: 0.75rem;
    }

    .current-price {
        font-size: 0.95rem;
    }

    .tour-rating .stars i {
        font-size: 0.75rem;
    }

    .tour-rating span {
        font-size: 0.65rem;
    }

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

    .tours-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Mobile filter style */
    .tours-filters {
        position: fixed;
        top: 90px;
        left: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--background-color);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 20px;
        overflow-y: auto;
        transition: left 0.3s ease;
    }

    .tours-filters.active {
        left: 0;
    }

    .mobile-filter-toggle {
        display: flex;
        align-items: center;
        background-color: var(--brand-color);
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
    }

    .mobile-filter-toggle i {
        margin-right: 8px;
    }

    .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .filter-overlay.active {
        display: block;
    }

    .filter-close {
        display: block;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 1.2rem;
        cursor: pointer;
    }

    .tour-card{
        min-width: 350px;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .tour-banner .travel-options-container{
        top: 340px;
    }

    .filter-header h3 {
        font-size: 0.9rem;
    }

    .filter-group h4 {
        font-size: 0.85rem;
    }

    .filter-option {
        font-size: 0.7rem;
    }

    .tours-count span {
        font-size: 0.7rem;
    }

    .tour-title {
        font-size: 1.1rem;
    }

    .tour-duration span,
    .tour-location span {
        font-size: 0.65rem;
    }

    .old-price {
        font-size: 0.7rem;
    }

    .current-price {
        font-size: 0.9rem;
    }

    .tour-rating .stars i {
        font-size: 0.7rem;
    }

    .tour-rating span {
        font-size: 0.6rem;
    }

    .tours-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tours-sort {
        margin-left: 0;
        width: 100%;
    }

    .tours-filters {
        top: 70px;
    }

    .tours-cards {
        grid-template-columns: 1fr;
        margin: 0 auto;
        gap: 15px;
    }

    .tour-card {
        margin: 0 auto;
        width: 100%;
        min-width: 250px;
        max-width: 320px;
    }

    .tour-image {
        height: 180px;
    }

    .tours-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tours-count {
        margin-bottom: 10px;
    }

    .tours-sort {
        width: 100%;
        justify-content: space-between;
    }

    .tours-pagination {
        padding: 15px 0;
    }

    .pagination-items {
        justify-content: center;
    }

}

/* Tour Detail Page.......................................................... */
.tour-detail-section {
    margin-top: 140px;
    padding: 0;
}

.tour-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.tour-detail-media {
    flex: 1;
    min-width: 45%;
    max-width: 50%;
}

.tour-detail-content {
    flex: 1;
    min-width: 45%;
    max-width: 50%;
    padding: 10px 20px;
}

.tour-detail-media .media-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* This maintains the aspect ratio of the media container */
}

.tour-detail-media img,
.tour-detail-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.tour-detail-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.tour-detail-content h2 {
    font-size: 2rem;
    color: var(--brand-color);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.tour-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.detail-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tour-detail-price {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    justify-content: space-between;
}

.price-label {
    font-size: 1rem;
    color: #BAC1CC;
    font-weight: 500;
    margin-right: 8px;
}

.price-dt{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-detail-note {
    margin: 8px 0 0 0;
    font-size: 1rem;
    color: var(--brand-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: italic;
}

.tour-detail-note i {
    color: var(--brand-color);
    margin-right: 6px;
}

.tour-btn-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

/* Fix for extra-info-list bullets issue */
.extra-info-list {
    padding-left: 1.5rem;
}

.extra-info-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.75rem;
}

.extra-info-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #4CAF50;
}

/* --- TOUR TABS SECTION --- */
.tour-tabs-section {
    margin-top: 40px;
    padding: 48px 0 32px 0;
    background: var(--background-color-secondary, #181818);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.tour-tabs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    background: transparent;
    border-radius: 10px;
    margin-bottom: 32px;
    padding: 0;
    list-style: none;
}

.tour-tabs-nav li {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 12px 32px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.tour-tabs-nav li.active {
    background: var(--brand-color);
    color: var(--third-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tour-tabs-nav li:hover:not(.active) {
    background: rgba(207, 167, 96, 0.08);
    color: var(--brand-color);
}

.tour-tabs-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TAB SPLIT 4/8 --- */
.tab-split {
    display: flex;
    gap: 40px;
    height: 100%;
}

/* Phần Nav cố định (4) */
.tab-split__nav {
    flex: 0 0 30%;
    max-width: 30%;
    position: sticky;
    top: 140px;
    align-self: flex-start;
    background: var(--background-color, #232323);
    border-radius: 10px;
    padding: 20px;
    height: auto;
    overflow: visible;
}

.tab-split__nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.tab-split__nav ul li {
    font-size: 1rem;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.tab-split__nav ul li a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.tab-split__nav ul li.active {
    background: var(--brand-color, #CFA760);
    color: #181818;
    font-weight: 600;
}

.tab-split__nav ul li:hover:not(.active) a {
    background: rgba(207, 167, 96, 0.08);
    color: var(--brand-color, #CFA760);
}

/* Với tab chính sách cao hơn, giảm khoảng cách giữa các mục */
.policy-nav ul li a {
    padding: 8px 14px;
    font-size: 0.95rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid var(--primary-color); /* Viền trắng xung quanh bảng */
}

table th, table td {
    border: 1px solid var(--primary-color); /* Viền trắng cho ô */
    padding: 8px;
    text-align: left;
}



/* Đảm bảo không bị scroll khi hiển thị trên mobile */
@media (max-width: 960px) {
    .tab-split__nav {
        overflow-y: visible;
        height: auto;
        max-height: none;
    }
}

.tab-split__content {
    flex: 1 1 70%;
    background: var(--background-color, #232323);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 32px 28px;
    min-height: 320px;
    position: relative;
}

/* Ẩn thanh cuộn cho Chrome, Safari và Opera */
.tab-split__content::-webkit-scrollbar {
    display: none;
}

/* Hiển thị tất cả nội dung tab con với margin phù hợp */
.itinerary-day,
.policy-detail {
    padding-bottom: 28px;
    margin-bottom: 28px;
    position: relative;
    scroll-margin-top: 20px;
}

.itinerary-day::after,
.policy-detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(207, 167, 96, 0.3), transparent);
}

.itinerary-day:last-child::after,
.policy-detail:last-child::after {
    display: none;
}

/* Định dạng nội dung bên trong các tab */
.itinerary-day h3,
.policy-detail h2 {
    color: var(--brand-color, #CFA760);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(207, 167, 96, 0.3);
}

/* Tab chính ở giữa không có href */
#extra-tab h2,
#faq-tab h2 {
    color: var(--brand-color, #CFA760);
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.6rem;
}

.faq-tab-container {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 32px 28px;
}

.extra-info-list {
    padding-left: 24px;
}

.extra-info-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 8px;
}

.extra-info-list li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-color, #CFA760);
}

.extra-info-container {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 32px 28px;
}

.extra-info-container h5 {
    color: var(--brand-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.extra-info-container p {
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Itinerary Day */
.itinerary-day {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(207, 167, 96, 0.2);
}

.itinerary-day:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.itinerary-day {
    font-size: 1rem;
}

.itinerary-day p {
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.6;
}

.itinerary-day strong {
    color: var(--brand-color);
    font-weight: 600;
    display: inline-block;
    min-width: 70px;
}

/* Policy Details */
.policy-detail {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(207, 167, 96, 0.2);
}

.policy-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-detail p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.policy-detail h5 {
    color: var(--brand-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.policy-detail p {
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Extra Info Tab */
.extra-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.extra-info-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    /* Tăng padding-left để tạo khoảng trống cho dấu chấm */
    border-bottom: 1px solid rgba(207, 167, 96, 0.15);
    margin-bottom: 8px;
    line-height: 1.6;
    display: block;
    font-size: 1rem;
    /* Thay đổi từ flex thành block để tránh vấn đề với căn chỉnh */
}

.extra-info-list li:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-color, #CFA760);
}

:target {
    scroll-margin-top: 120px;
}

.tab-split__content {
    padding: 28px 20px;
}


.tour-tab-pane {
    display: none;
}

.tour-tab-pane.active {
    display: block;
}

.tour-tab-pane.tab-fade-in {
    animation: tabFadeIn 0.35s cubic-bezier(.4, 0, .2, 1);
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for tour-detail-grid */
@media (max-width: 1200px) {
    .tour-detail-grid {
        gap: 20px;
    }

    .tour-detail-content {
        padding: 8px 16px;
        gap: 12px;
    }

    .tour-detail-content h2 {
        font-size: 1.7rem;
    }

    .tour-detail-info {
        font-size: 0.95rem;
    }

    .price-label {
        font-size: 0.95rem;
    }

    .tour-detail-note {
        font-size: 0.95rem;
    }

    .tour-tabs-nav {
        gap: 20px;
    }

    .tour-tabs-nav li {
        font-size: 1.2rem;
        padding: 10px 16px;
    }

    .itinerary-day h3,
    .policy-detail h2 {
        font-size: 1.3rem;
    }

    .itinerary-day {
        font-size: 0.95rem;
    }

    .policy-detail h5 {
        font-size: 1.1rem;
    }

    .policy-detail p {
        font-size: 0.95rem;
    }

    .extra-info-container h5 {
        font-size: 1.1rem;
    }

    .extra-info-container p {
        font-size: 0.95rem;
    }

    .extra-info-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .tour-detail-grid {
        gap: 20px;
    }

    .tour-detail-content {
        padding: 15px 10px;
        gap: 10px;
    }

    .tour-detail-content h2 {
        font-size: 1.4rem;
    }

    .tour-detail-info {
        font-size: 0.9rem;
    }

    .price-label {
        font-size: 0.9rem;
    }

    .tour-detail-note {
        font-size: 0.9rem;
    }

    .tour-tabs-nav {
        gap: 16px;
    }

    .tour-tabs-nav li {
        font-size: 1rem;
        padding: 10px 10px;
    }

    .itinerary-day h3,
    .policy-detail h2 {
        font-size: 1.1rem;
    }

    .itinerary-day {
        font-size: 0.9rem;
    }

    .policy-detail h5 {
        font-size: 1rem;
    }

    .policy-detail p {
        font-size: 0.9rem;
    }

    .extra-info-container h5 {
        font-size: 1rem;
    }

    .extra-info-container p {
        font-size: 0.9rem;
    }

    .extra-info-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .tour-detail-section {
        margin-top: 120px;
    }

    .tour-detail-grid {
        flex-direction: column;
        gap: 20px;
    }

    .tour-detail-media,
    .tour-detail-content {
        min-width: 100%;
        max-width: 100%;
    }

    .tour-detail-content {
        padding: 15px 0;
    }

    .tour-detail-content h2 {
        font-size: 1.2rem;
    }

    .tour-detail-info {
        font-size: 0.85rem;
    }

    .detail-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-label {
        font-size: 0.85rem;
    }

    .tour-detail-note {
        font-size: 0.85rem;
    }

    /* Hide sidebar navigation on mobile */
    .tab-split {
        flex-direction: column;
        gap: 20px;
    }

    .tab-split__nav {
        display: none;
        /* Hide the navigation sidebar */
    }

    .tab-split__content {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .tour-tabs-nav {
        gap: 10px;
    }

    .tour-tabs-nav li {
        font-size: 0.9rem;
        padding: 10px 10px;
    }

    .itinerary-day h3,
    .policy-detail h2 {
        font-size: 1rem;
    }

    .itinerary-day {
        font-size: 0.85rem;
    }

    .policy-detail h5 {
        font-size: 0.95rem;
    }

    .policy-detail p {
        font-size: 0.85rem;
    }

    .extra-info-container h5 {
        font-size: 0.95rem;
    }

    .extra-info-container p {
        font-size: 0.85rem;
    }

    .extra-info-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .tour-detail-section {
        margin-top: 100px;
    }

    .tour-detail-grid {
        gap: 15px;
    }

    .tour-detail-content {
        padding: 10px 0;
    }

    .tour-detail-content h2 {
        font-size: 1rem;
    }

    .tour-detail-info {
        font-size: 0.8rem;
    }

    .price-label {
        font-size: 0.8rem;
    }

    .tour-detail-note {
        font-size: 0.8rem;
    }

    .tour-btn-container {
        flex-direction: column;
        gap: 12px;
    }

    .tour-btn-container .btn-primary {
        width: 100%;
    }

    /* Content area takes full width */
    .tab-split__content {
        padding: 15px;
        width: 100%;
    }

    .tour-tabs-nav {
        gap: 6px;
    }

    .tour-tabs-nav li {
        font-size: 0.8rem;
        padding: 10px 10px;
    }

    .itinerary-day h3,
    .policy-detail h2 {
        font-size: 0.9rem;
    }

    .itinerary-day {
        font-size: 0.8rem;
    }

    .policy-detail h5 {
        font-size: 0.9rem;
    }

    .policy-detail p {
        font-size: 0.8rem;
    }

    .extra-info-container h5 {
        font-size: 0.9rem;
    }

    .extra-info-container p {
        font-size: 0.8rem;
    }

    .extra-info-list li {
        font-size: 0.8rem;
    }
}

/* Cart Page Styles ................................................................................. */
.cart-content-section {
    padding: 50px 0;
    min-height: 400px;
}

.cart-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-tour-card {
    background-color: var(--background-color-secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cart-tour-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-tour-select {
    margin-right: 15px;
    position: relative;
}

.cart-tour-select input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.cart-tour-select label {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-color-secondary);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.cart-tour-select input[type="checkbox"]:checked+label::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--brand-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-tour-info {
    flex: 1;
}

.cart-tour-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cart-tour-meta {
    display: flex;
    gap: 20px;
    font-size: 1rem;
    color: var(--text-color-secondary);
}

.cart-tour-date,
.cart-tour-location {
    display: flex;
    align-items: center;
}

.cart-tour-date i,
.cart-tour-location i {
    margin-right: 5px;
    color: var(--brand-color);
}

.cart-tour-action {
    margin-left: 15px;
}

.remove-tour-btn {
    background: none;
    border: none;
    color: var(--text-color-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-tour-btn:hover {
    color: #ff5555;
}

.cart-tour-content {
    padding: 20px;
}

.cart-tour-guests {
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.guest-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.guest-type:last-child {
    margin-bottom: 20px;
}

.guest-label {
    font-weight: 500;
    flex: 1;
}

.guest-counter {
    display: flex;
    align-items: center;
    flex: 1;
}

.decrease-btn,
.increase-btn {
    width: 30px;
    height: 30px;
    border: none;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.decrease-btn:hover,
.increase-btn:hover {
    background-color: var(--brand-color);
}

.guest-count {
    width: 40px;
    height: 30px;
    background-color: var(--background-color);
    border: none;
    color: var(--text-color);
    text-align: center;
    margin: 0 5px;
    border-radius: 4px;
}

.guest-price {
    text-align: right;
    color: var(--text-color-secondary);
    flex: 1;
}

.guest-discount {
    text-align: right;
    color: var(--brand-color);
    font-size: 0.85rem;
    margin-top: 2px;
    font-style: italic;
}

.guest-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.guest-type .guest-label {
    flex: 1;
    font-size: 1rem;
}

.guest-type .guest-counter {
    flex: 1;
    font-size: 1rem;
}

.guest-type .guest-price {
    flex: 1;
    font-size: 1rem;
}

.guest-type .guest-price-discount {
    flex: 1;
    font-size: 1rem;
}

.tour-subtotal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
    color: var(--text-color-secondary);
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.subtotal-amount {
    margin-left: 10px;
    font-size: 1.1rem;
    color: var(--brand-color);
}

/* Add-ons Section */
.cart-tour-addons {
    margin-top: 25px;
}

.cart-tour-addons h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.addon-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.addon-category {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.addon-category-title {
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.addon-category-title i {
    margin-right: 8px;
    color: var(--brand-color);
}

.addon-items {
    padding: 10px 15px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-info {
    flex: 1;
}

.addon-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.addon-price {
    font-size: 0.85rem;
    color: var(--text-color-secondary);
    margin-top: 3px;
}

.remove-addon-btn {
    background: none;
    border: none;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.remove-addon-btn:hover {
    color: #ff5555;
}

.add-addon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    background-color: transparent;
    border: 1px dashed var(--brand-color);
    color: var(--brand-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.add-addon-btn i {
    margin-right: 5px;
}

.add-addon-btn:hover {
    background-color: var(--brand-color);
    color: var(--background-color);
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

.summary-card {
    background-color: var(--background-color-secondary);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.summary-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-empty-message {
    text-align: center;
    padding: 15px 0;
    color: var(--text-color-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 1.1rem;
}

.total-amount {
    color: var(--brand-color);
}

.summary-note {
    margin: 15px 0 25px;
    font-size: 0.85rem;
    color: var(--text-color-secondary);
    display: flex;
    align-items: flex-start;
}

.summary-note i {
    margin-right: 8px;
    margin-top: 3px;
}

.checkout-btn {
    width: 100%;
}

.checkout-btn:disabled {
    cursor: not-allowed;
    background-color: #555;
    color: #999;
}

.checkout-btn:disabled:hover {
    background-color: #555;
    transform: none;
}

/* Add-on Modal */
.addon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.addon-modal.active {
    display: flex;
}

.addon-modal-content {
    background-color: var(--background-color-secondary);
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.addon-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-modal-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-color-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal-btn:hover {
    color: #ff5555;
}

.addon-modal-body {
    padding: 20px 25px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

.modal-addon-category {
    margin-bottom: 25px;
}

.modal-addon-category h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.modal-addon-category h4 i {
    margin-right: 10px;
    color: var(--brand-color);
}

.modal-addon-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-addon-item {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.modal-addon-checkbox {
    margin-right: 15px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.modal-addon-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.modal-addon-checkbox label {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-color-secondary);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.modal-addon-checkbox input[type="checkbox"]:checked+label::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--brand-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.modal-addon-info {
    flex: 1;
}

.modal-addon-name {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1rem;
}

.modal-addon-description {
    font-size: 0.85rem;
    color: var(--text-color-secondary);
    margin-bottom: 5px;
}

.modal-addon-price {
    font-size: 0.9rem;
    color: var(--brand-color);
}

.addon-modal-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-icon {
    background-color: var(--background-color-secondary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-cart-icon i {
    font-size: 40px;
    color: var(--text-color-secondary);
}

.empty-cart h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--text-color-secondary);
    margin-bottom: 25px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .cart-tour-info h3 {
        font-size: 1.2rem;
    }

    .cart-tour-meta {
        font-size: 0.95rem;
    }

    .cart-tour-meta span {
        font-size: 0.95rem;
    }

    .guest-type .guest-label {
        font-size: 0.95rem;
    }

    .guest-type .guest-counter {
        font-size: 0.95rem;
    }

    .guest-type .guest-price {
        font-size: 0.95rem;
    }

    .guest-type .guest-price-discount .guest-price {
        font-size: 0.95rem;
    }

    .guest-type .guest-price-discount .guest-discount {
        font-size: 0.8rem;
    }

    .cart-tour-addons h4 {
        font-size: 1rem;
    }

    .addon-category-title {
        font-size: 0.95rem;
    }

    .modal-addon-category h4 {
        font-size: 1rem;
    }

    .addon-name {
        font-size: 0.9rem;
    }

    .addon-price {
        font-size: 0.85rem;
    }

    .addon-modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-addon-name {
        font-size: 0.95rem;
    }

    .modal-addon-description {
        font-size: 0.8rem;
    }

    .modal-addon-price {
        font-size: 0.85rem;
    }

}

@media (max-width: 992px) {
    .cart-tour-info h3 {
        font-size: 1.1rem;
    }

    .cart-tour-meta {
        font-size: 0.9rem;
    }

    .cart-tour-meta span {
        font-size: 0.9rem;
    }

    .guest-type .guest-label {
        font-size: 0.9rem;
    }

    .guest-type .guest-counter {
        font-size: 0.9rem;
    }

    .guest-type .guest-price {
        font-size: 0.9rem;
    }

    .guest-type .guest-price-discount .guest-price {
        font-size: 0.9rem;
    }

    .guest-type .guest-price-discount .guest-discount {
        font-size: 0.75rem;
    }

    .cart-tour-addons h4 {
        font-size: 0.95rem;
    }

    .addon-category-title {
        font-size: 0.9rem;
    }

    .addon-name {
        font-size: 0.85rem;
    }

    .addon-price {
        font-size: 0.8rem;
    }

    .addon-modal-header h3 {
        font-size: 1.1rem;
    }

    .modal-addon-category h4 {
        font-size: 0.95rem;
    }

    .cart-content-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: sticky;
        bottom: 0;
        top: auto;
        margin-top: 30px;
        z-index: 90;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        background-color: var(--background-color);
        padding-top: 10px;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    }

    .summary-card {
        margin: 0 auto;
    }

    .cart-page-header h1 {
        font-size: 2rem;
    }

    .summary-card h3 {
        display: none;
    }

    .summary-item {
        display: none;
    }

    .summary-total {
        border-top: none;
        padding-top: 0;
    }

    .modal-addon-name {
        font-size: 0.9rem;
    }

    .modal-addon-description {
        font-size: 0.75rem;
    }

    .modal-addon-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .cart-tour-info h3 {
        font-size: 1rem;
    }

    .cart-tour-meta {
        font-size: 0.85rem;
    }

    .cart-tour-meta span {
        font-size: 0.85rem;
    }

    .guest-type .guest-label {
        font-size: 0.85rem;
    }

    .guest-type .guest-counter {
        font-size: 0.85rem;
    }

    .guest-type .guest-price {
        font-size: 0.85rem;
    }

    .guest-type .guest-price-discount .guest-price {
        font-size: 0.85rem;
    }

    .guest-type .guest-price-discount .guest-discount {
        font-size: 0.7rem;
    }

    .cart-tour-addons h4 {
        font-size: 0.9rem;
    }

    .addon-category-title {
        font-size: 0.85rem;
    }

    .addon-name {
        font-size: 0.8rem;
    }

    .addon-price {
        font-size: 0.75rem;
    }

    .addon-modal-header h3 {
        font-size: 1rem;
    }

    .cart-tour-header {
        flex-wrap: wrap;
    }

    .cart-tour-info {
        flex: 1 0 calc(100% - 80px);
        order: 2;
    }

    .cart-tour-meta {
        flex-direction: column;
        gap: 8px;
    }

    .cart-tour-meta span {
        font-size: 0.8rem;
    }

    .modal-addon-category h4 {
        font-size: 0.9rem;
    }

    .cart-tour-select {
        order: 1;
    }

    .cart-tour-action {
        order: 3;
    }

    .guest-type {
        flex-wrap: wrap;
    }

    .guest-label {
        flex: 1 0 30%;
    }

    .guest-counter {
        flex: 1 0 40%;
    }

    .guest-price {
        flex: 1 0 100%;
        margin-top: 10px;
        padding-left: 30%;
    }

    .cart-page-header h1 {
        font-size: 1.8rem;
    }

    .modal-addon-name {
        font-size: 0.85rem;
    }

    .modal-addon-description {
        font-size: 0.7rem;
    }

    .modal-addon-price {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .cart-tour-info h3 {
        font-size: 0.95rem;
    }

    .cart-tour-meta {
        font-size: 0.8rem;
    }

    .cart-tour-meta span {
        font-size: 0.8rem;
    }

    .guest-type .guest-label {
        font-size: 0.8rem;
    }

    .guest-type .guest-counter {
        font-size: 0.8rem;
    }

    .guest-type .guest-price {
        font-size: 0.8rem;
    }

    .guest-type .guest-price-discount .guest-price {
        font-size: 0.8rem;
    }

    .guest-type .guest-price-discount .guest-discount {
        font-size: 0.65rem;
    }

    .cart-tour-addons h4 {
        font-size: 0.85rem;
    }

    .addon-category-title {
        font-size: 0.8rem;
    }

    .addon-name {
        font-size: 0.75rem;
    }

    .addon-price {
        font-size: 0.7rem;
    }

    .addon-modal-header h3 {
        font-size: 0.95rem;
    }

    .modal-addon-category h4 {
        font-size: 0.85rem;
    }

    .cart-content-section {
        padding: 30px 0;
    }

    .summary-card {
        padding: 20px;
    }

    .modal-addon-item {
        flex-direction: column;
    }

    .modal-addon-checkbox {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .modal-addon-info {
        padding-left: 25px;
    }

    .cart-page-header {
        padding: 40px 0 30px;
    }

    .cart-page-header h1 {
        font-size: 1.5rem;
    }

    .cart-page-header p {
        font-size: 0.9rem;
    }

    .modal-addon-name {
        font-size: 0.8rem;
    }

    .modal-addon-description {
        font-size: 0.65rem;
    }

    .modal-addon-price {
        font-size: 0.7rem;
    }
}

/* Styles for static content pages like Privacy Policy and Terms of Service */
.page-content-section {
    padding: 60px 0;
    background-color: var(--background-color); /* Light grey background for the section */
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--background-color-secondary); /* White background for the content box */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.7; /* General line height for readability */
}

.content-wrapper h2 {
    font-size: 2.25rem; /* Equivalent to Bootstrap's h2 if using similar scale */
    color: var(--brand-color); /* Dark grey for headings */
    margin-top: 40px; /* Space above headings */
    margin-bottom: 20px; /* Space below headings */
    padding-bottom: 10px; /* Space before border */
    border-bottom: 1px solid #dee2e6; /* Light border below heading */
    font-weight: 600;
}

.content-wrapper h2:first-child {
    margin-top: 0; /* No top margin for the very first heading */
}

.content-wrapper p {
    font-size: 1rem; /* Standard paragraph text size */
    color: var(--text-color-secondary); /* Slightly lighter than headings */
    margin-bottom: 1.5rem; /* Space below paragraphs */
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 25px; /* Indentation for lists */
}

.content-wrapper ul li,
.content-wrapper ol li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.75rem; /* Space between list items */
}

.content-wrapper ul {
    list-style-type: disc;
}

.content-wrapper ol {
    list-style-type: decimal;
}

.content-wrapper strong {
    font-weight: 700; /* Bootstrap's default bold weight */
    color: var(--text-color); /* Darker color for emphasis */
}

.content-wrapper a {
    color: var(--brand-color); /* Primary link color, adjust to your site's theme */
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Specific styling for the update date paragraph (often at the end) */
.content-wrapper p em {
    font-style: italic;
    color: #6c757d; /* Muted text color */
    font-size: 0.9rem;
    display: block; /* Make it a block to allow margin-top */
    margin-top: 30px; /* Space above the "last updated" text */
    text-align: right;
}

/* Ensure consistent styling for headings within list items if any */
.content-wrapper li h3 {
    font-size: 1.5rem;
    color: #343a40;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.content-wrapper li p {
    margin-bottom: 10px; /* Reduce bottom margin for paragraphs within list items */
}

/* Customer Info Section */
.customer-info-section {
    margin-top: 30px;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--background-color-secondary);
}

.customer-info-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.customer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--input-bg-color);
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Payment Options */
.payment-options {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-options h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.payment-method {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: var(--input-bg-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method:hover {
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.payment-method input[type="radio"] {
    margin-right: 12px;
    cursor: pointer;
}

.payment-method label {
    display: flex;
    align-items: center;
    flex: 1;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
}

.payment-method label i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Summary Actions */
.summary-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.summary-actions .btn-secondary,
.summary-actions .btn-primary {
    flex: 1;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .customer-info-section h3 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group .error-message {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .customer-info-section h3 {
        font-size: 1.2rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group .error-message {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .customer-info-section h3 {
        font-size: 1.1rem;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .payment-method {
        padding: 8px 12px;
    }

    .payment-method label {
        font-size: 0.9rem;
    }

    .summary-actions {
        flex-direction: column;
    }

    .customer-info-section h3 {
        font-size: 1.2rem;
    }

    .payment-options h4 {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group .error-message {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .customer-info-section {
        padding: 15px;
    }

    .customer-form {
        gap: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .payment-method label i {
        font-size: 1rem;
    }

    .customer-info-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .form-group .error-message {
        font-size: 0.65rem;
    }
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Modal Addon Item */
.modal-addon-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.modal-addon-checkbox {
    margin-right: 15px;
}

.modal-addon-checkbox input[type="checkbox"] {
    display: none;
}

.modal-addon-checkbox label {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
}

.modal-addon-checkbox input[type="checkbox"]:checked+label::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--brand-color);
    font-size: 12px;
}

.modal-addon-info {
    flex: 1;
}

.modal-addon-name {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1rem;
}

.modal-addon-description {
    color: var(--text-color-secondary);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.modal-addon-price {
    color: var(--brand-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Modal Addon Quantity */
.modal-addon-quantity,
.addon-quantity {
    display: flex;
    align-items: center;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2px;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-addon-checkbox input[type="checkbox"]:checked~.modal-addon-info+.modal-addon-quantity,
.modal-addon-item:hover .modal-addon-quantity {
    opacity: 1;
    pointer-events: auto;
}

.modal-decrease-btn,
.modal-increase-btn,
.decrease-addon-btn,
.increase-addon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-decrease-btn:hover,
.modal-increase-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-addon-count,
.addon-count {
    width: 30px;
    text-align: center;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-weight: 500;
    -moz-appearance: textfield;
}

.modal-addon-count::-webkit-outer-spin-button,
.modal-addon-count::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* My Orders Page Styles ................................................................................. */
.my-orders-section {
    padding: 4rem 0;
    min-height: 70vh;
}

.order-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.order-tab {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--order-border-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
}

.order-tab:hover {
    background-color: rgba(207, 167, 96, 0.1);
    transform: translateY(-2px);
}

.order-tab.active {
    background-color: var(--brand-color);
    color: var(--primary-color);
    border-color: var(--brand-color);
}

.orders-container {
    max-width: 900px;
    margin: 0 auto;
}

.order-tab-content {
    display: none;
}

.order-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-item {
    background-color: var(--background-color-secondary);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--order-shadow);
    transition: var(--transition);
    border: 1px solid var(--order-border-color);
}

.order-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--order-border-color);
}

.order-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-color-secondary);
    font-size: 1rem;
}

.order-meta span {
    font-weight: 600;
    color: var(--primary-color);
}

.order-status {
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    text-align: center;
    min-width: 130px;
}

.order-status.pending-payment {
    background-color: var(--order-pending-bg);
    color: var(--order-pending-color);
}

.order-status.processing {
    background-color: var(--order-processing-bg);
    color: var(--order-processing-color);
}

.order-status.completed {
    background-color: var(--order-completed-bg);
    color: var(--order-completed-color);
}

.order-status.cancelled {
    background-color: var(--order-cancelled-bg);
    color: var(--order-cancelled-color);
}

.order-content {
    display: flex;
    padding: 1.5rem;
    gap: 1.5rem;
    align-items: flex-start;
}

.order-image {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.order-item:hover .order-image img {
    transform: scale(1.05);
}

.order-details {
    flex: 1;
}

.order-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.order-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.order-schedule,
.order-guests,
.order-time,
.order-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}

.order-schedule i,
.order-guests i,
.order-time i,
.order-location i {
    color: var(--brand-color);
}

/* Add-on badge and details */
.order-addon-badge {
    display: inline-block;
    color: var(--order-processing-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.order-addon-badge i {
    margin-right: 0.4rem;
}

.order-addon-badge.completed {
    color: var(--order-completed-color);
}

.order-addon-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: var(--text-color-secondary);
    font-weight: 500;
}

.addon-list {
    list-style: none;
}

.addon-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.addon-list li:last-child {
    border-bottom: none;
}

.addon-name {
    color: var(--order-text-color);
}

.addon-price {
    color: var(--brand-color);
    font-weight: 600;
}

.order-footer {
    padding: 1.5rem;
    justify-items: end;
}

.order-actions {
    display: flex;
    gap: 0.8rem;
}

.order-actions .btn-primary,
.order-actions .btn-secondary,
.order-actions .btn-danger {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-danger {
    display: inline-block;
    background-color: var(--order-cancelled-bg);
    color: var(--order-cancelled-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--order-cancelled-color);
    cursor: pointer;
}

.btn-danger:hover {
    background-color: var(--order-cancelled-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.order-price {
    text-align: right;
    min-width: 160px;
}

.order-price .price-label {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.order-price .price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.order-price .price-update {
    font-size: 0.9rem;
    color: var(--order-processing-color);
}

.order-price .price-update i {
    margin-right: 0.3rem;
}

/* Payment details styles */
.payment-details {
    margin-top: 0.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
}

.payment-details .label {
    font-size: 0.9rem;
}

.paid-amount,
.remaining-amount,
.refund-amount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    align-items: center;
}

.paid-amount .label,
.remaining-amount .label,
.refund-amount .label {
    color: var(--text-color-secondary);
}

.paid-amount .amount {
    color: var(--order-completed-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.remaining-amount .amount {
    color: var(--brand-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.refund-amount .amount {
    color: var(--brand-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.payment-details.cancelled .paid-amount .amount {
    color: var(--text-color-secondary);
}

.price-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.price-status.paid {
    background-color: var(--order-completed-bg);
    color: var(--order-completed-color);
}

.order-notification {
    border-radius: 6px;
    margin-bottom: 1rem;
    color: var(--order-processing-color);
    font-size: 0.9rem;
}

.order-notification i {
    margin-right: 0.5rem;
}

.order-notification.completed {
    color: var(--order-completed-color);
}

.order-notification.cancelled {
    color: var(--order-cancelled-color);
}

/* Responsive styles for order page */
@media (max-width: 1200px) {
    .order-tabs {
        font-size: 0.95rem;
    }

    .order-meta {
        font-size: 0.95rem;
    }

    .order-meta span {
        font-size: 0.95rem;
    }

    .order-status {
        font-size: 0.95rem;
    }

    .order-title {
        font-size: 1.25rem;
    }

    .order-info {
        font-size: 0.95rem;
    }

    .order-notification {
        font-size: 0.85rem;
    }

    .order-addon-badge {
        font-size: 0.85rem;
    }

    .order-price .price-label {
        font-size: 0.85rem;
    }

    .order-price .price-amount {
        font-size: 1.15rem;
    }

    .order-price .price-update {
        font-size: 0.85rem;
    }

    .payment-details .label {
        font-size: 0.85rem;
    }

    .paid-amount .amount {
        font-size: 1.15rem;
    }

    .remaining-amount .amount {
        font-size: 1.15rem;
    }

    .refund-amount .amount {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    .order-tabs {
        gap: 0.4rem;
    }

    .order-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .order-meta {
        font-size: 0.9rem;
    }

    .order-meta span {
        font-size: 0.9rem;
    }

    .order-status {
        font-size: 0.9rem;
    }

    .order-title {
        font-size: 1.2rem;
    }

    .order-info {
        font-size: 0.9rem;
    }

    .order-notification {
        font-size: 0.8rem;
    }

    .order-addon-badge {
        font-size: 0.8rem;
    }

    .order-price .price-label {
        font-size: 0.8rem;
    }

    .order-price .price-amount {
        font-size: 1.1rem;
    }

    .order-price .price-update {
        font-size: 0.8rem;
    }

    .payment-details .label {
        font-size: 0.8rem;
    }

    .paid-amount .amount {
        font-size: 1.1rem;
    }

    .remaining-amount .amount {
        font-size: 1.1rem;
    }

    .refund-amount .amount {
        font-size: 1.1rem;
    }

    .guest-price {
        min-width: 100px;
    }
}

@media (max-width: 768px) {

    .order-tab {
        font-size: 0.8rem;
    }

    .order-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-meta {
        flex-direction: column;
        font-size: 0.85rem;
    }

    .order-meta span {
        font-size: 0.85rem;
    }

    .order-status {
        font-size: 0.85rem;
    }

    .order-title {
        font-size: 1.15rem;
    }

    .order-info {
        font-size: 0.85rem;
    }

    .order-notification {
        font-size: 0.75rem;
    }

    .order-addon-badge {
        font-size: 0.75rem;
    }

    .order-price .price-amount {
        font-size: 1.1rem;
    }

    .order-price .price-update {
        font-size: 0.75rem;
    }

    .paid-amount .amount {
        font-size: 1.1rem;
    }

    .remaining-amount .amount {
        font-size: 1.1rem;
    }

    .refund-amount .amount {
        font-size: 1.1rem;
    }

    .order-image {
        width: 100%;
        height: 180px;
        flex: unset;
    }

    .order-details {
        width: 100%;
    }

    .order-price {
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 1rem;
        border-top: 1px solid var(--order-border-color);
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .price-info {
        display: flex;
    }

    .payment-details {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .guest-type {
        flex-wrap: wrap;
    }

    .guest-label {
        width: 100%;
        margin-bottom: 0.3rem;
    }

    .guest-counter {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .order-header {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .order-meta {
        justify-content: space-between;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .order-meta span {
        font-size: 0.8rem;
    }

    .order-status {
        align-self: center;
        font-size: 0.8rem;
    }

    .order-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        gap: 0.3rem;
    }

    .order-tab {
        white-space: nowrap;
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }

    .order-title {
        font-size: 1.1rem;
    }

    .order-info {
        font-size: 0.8rem;
    }

    .order-notification {
        font-size: 0.7rem;
    }

    .order-addon-badge {
        display: block;
        font-size: 0.7rem;
    }

    .order-price .price-amount {
        font-size: 1rem;
    }

    .order-price .price-update {
        font-size: 0.7rem;
    }

    .paid-amount .amount {
        font-size: 1rem;
    }

    .remaining-amount .amount {
        font-size: 1rem;
    }

    .refund-amount .amount {
        font-size: 1rem;
    }

    .order-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .order-actions .btn-primary,
    .order-actions .btn-secondary,
    .order-actions .btn-danger {
        width: 100%;
        text-align: center;
    }

    .guest-type {
        flex-direction: column;
        align-items: flex-start;
    }

    .guest-counter {
        margin: 0.3rem 0;
    }

    .guest-price {
        width: 100%;
        text-align: left;
    }
}

/* Order Detail Page Styles */
.order-detail-section {
    padding: 3rem 0;
}

.back-to-orders {
    margin-bottom: 2rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.btn-back i {
    margin-right: 0.5rem;
}

.btn-back:hover {
    color: var(--brand-color);
    transform: translateX(-3px);
}

.order-info-header {
    margin-bottom: 2rem;
}

.order-basic-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.order-detail-card {
    background-color: var(--background-color-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--order-shadow);
    border: 1px solid var(--order-border-color);
}

.order-detail-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--order-border-color);
}

.order-detail-section:last-child {
    border-bottom: none;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.section-title i {
    margin-right: 0.6rem;
    color: var(--brand-color);
}

.tour-info-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tour-image {
    flex: 0 0 250px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.tour-image img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.tour-details {
    flex: 1;
}

/* Price List Styles (for tour prices and addons) */
.price-services {
    margin-bottom: 1.5rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-name {
    font-weight: 500;
    color: var(--text-color-secondary);
    flex: 1;
    font-size: 1rem;
}

.price-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.price-quantity {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.price-value {
    color: var(--brand-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-item.discount {
    color: var(--order-cancelled-color);
}

.payment-total {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-status-info {
    padding: 0.75rem 1rem;
}

/* Responsive Styles for Order Detail Page */
@media (max-width: 1200px) {
    .tour-info-content {
        gap: 1rem;
    }

    .tour-image {
        flex: 0 0 200px;
        height: 200px;
    }

    .order-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .price-name {
        font-size: 0.95rem;
    }

    .price-value {
        font-size: 0.9rem;
    }

    .payment-total {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .tour-info-content {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .tour-image {
        width: 100%;
        flex: none;
        height: 190px;
    }

    .order-info {
        gap: 1rem;
    }

    .order-schedule,
    .order-guests,
    .order-time,
    .order-location {
        font-size: 0.85rem;
    }

    .order-actions {
        justify-content: flex-end;
    }

    .price-name {
        font-size: 0.9rem;
    }

    .price-value {
        font-size: 0.85rem;
    }

    .payment-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .order-basic-info {
        gap: 1rem;
        align-items: flex-start;
    }

    .order-detail-section {
        padding: 1.2rem;
    }

    .order-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-item {
        padding: 0.6rem 0.8rem;
    }

    .price-details {
        gap: 0.8rem;
    }

    .payment-item,
    .payment-total {
        padding: 0.6rem 0.8rem;
    }

    .payment-status-info {
        padding: 0.6rem 0.8rem;
    }

    .paid-amount,
    .remaining-amount {
        align-items: flex-start;
        gap: 0.3rem;
    }

    .order-actions {
        width: 100%;
        gap: 0.8rem;
    }

    .order-actions .btn-primary,
    .order-actions .btn-danger,
    .order-actions button {
        text-align: center;
    }

    .price-name {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .order-detail-section {
        padding: 1rem;
    }

    .back-to-orders {
        margin-bottom: 1.2rem;
    }

    .section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .order-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .order-status {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .price-details {
        width: 100%;
        justify-content: space-between;
    }

    .payment-item,
    .payment-total {
        font-size: 0.85rem;
    }

    .payment-status-info {
        font-size: 0.85rem;
    }

    .tour-image {
        height: 180px;
    }

    .price-name {
        font-size: 0.8rem;
    }

    .price-value {
        font-size: 0.75rem;
    }
}


/* Event Page Styles */
.event-section {
    padding: 5rem 0;
}

.event-header {
    text-align: center;
    margin-bottom: 50px;
}

.event-header h2 {
    font-size: 2rem;
    color: var(--brand-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.event-header h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--brand-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.event-header h2 i{
    color: var(--brand-color);
}

.event-subtitle {
    font-size: 1.3rem;
    color: var(--text-color-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Event Card */
.event-card {
    background-color: var(--background-color-secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 1.8rem;
    color: var(--brand-color);
    margin-bottom: 15px;
}

.event-description {
    color: var(--text-color-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--text-color-secondary);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--brand-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Event Benefits */
.event-benefit {
    margin: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-card {
    background-color: var(--background-color-secondary);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--brand-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-color-secondary);
    line-height: 1.6;
}

.event-media {
    position: relative;
    aspect-ratio: 16 / 9;
    /* hoặc 4 / 3, hoặc tùy theo ảnh bạn */
    width: 100%;
    height: auto;
    /* quan trọng */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.event-image-slider {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.05);
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 5s ease;
}

.slider-item.active img {
    transform: scale(1.05);
}

.slider-images-controls {
    position: absolute;
    bottom: 25px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    z-index: 3;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    left: 0;
    right: 10px;
    width: 50%;
    width: 160px;
    margin: 0 auto;
}

.slider-pagination {
    display: flex;
    align-items: center;
    color: white;
    margin: 0 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.slider-pagination .separator {
    margin: 0 5px;
    opacity: 0.7;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.expand-slider {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.expand-slider:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Registration Form Section Styling */
.registration-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.registration-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-color-secondary);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.registration-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.registration-form .form-group {
    flex: 1;
    position: relative;
}

.registration-form .form-group.full-width {
    width: 100%;
}

.registration-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.registration-form .form-group .required {
    color: #e74c3c;
    margin-left: 3px;
}

.input-with-icon {
    position: relative;
    overflow: hidden;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-color-secondary);
    background-color: var(--background-color);
    transition: all 0.3s ease;
    padding-left: 45px;
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.form-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--brand-color);
    cursor: pointer;
}

.form-terms label {
    font-size: 0.9rem;
    font-weight: 400 !important;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.form-terms a {
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-terms a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background-image: linear-gradient(to right, var(--brand-color), var(--brand-color-dark));
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--brand-color-rgb), 0.3);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, var(--brand-color-dark), var(--brand-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.submit-btn:hover::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .event-section {
        padding: 4rem 0;
    }

    .registration-section {
        padding: 4rem 0;
    }

    .event-header h2 {
        font-size: 1.7rem;
    }

    .event-subtitle {
        font-size: 1.2rem;
    }

    .event-content h3 {
        font-size: 1.6rem;
    }

    .event-description {
        font-size: 0.95rem;
    }

    .meta-item i {
        font-size: 1rem;
    }

    .meta-item span {
        font-size: 0.9rem;
    }

    .benefit-icon {
        font-size: 2.2rem;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-section {
        padding: 3rem 0;
    }

    .registration-section {
        padding: 3rem 0;
    }

    .event-header h2 {
        font-size: 1.4rem;
    }

    .event-subtitle {
        font-size: 1.1rem;
    }

    .event-content h3 {
        font-size: 1.3rem;
    }

    .event-description {
        font-size: 0.9rem;
    }

    .meta-item i {
        font-size: 0.95rem;
    }

    .meta-item span {
        font-size: 0.85rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-card h4 {
        font-size: 1.05rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .registration-form {
        padding: 30px;
        max-width: 95%;
    }

    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
        padding: 12px 15px 12px 40px;
    }

    .submit-btn {
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {

    .event-section {
        padding: 2rem 0;
    }

    .registration-section {
        padding: 2rem 0;
    }

    .event-header h2 {
        font-size: 1.2rem;
    }

    .event-subtitle {
        font-size: 1rem;
    }

    .event-content h3 {
        font-size: 1.1rem;
    }

    .event-description {
        font-size: 0.85rem;
    }

    .meta-item i {
        font-size: 0.9rem;
    }

    .meta-item span {
        font-size: 0.8rem;
    }

    .benefit-icon {
        font-size: 1.8rem;
    }

    .benefit-card h4 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .registration-section {
        padding: 3rem 0;
    }

    .registration-form {
        padding: 25px;
    }

    .registration-form .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
        padding: 10px 15px 10px 40px;
        font-size: 0.9rem;
    }

    .input-with-icon textarea {
        min-height: 120px;
    }

    .form-submit {
        margin-top: 25px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .event-section {
        padding: 2rem 0;
    }

    .registration-section {
        padding: 2rem 0;
    }

    .event-header h2 {
        font-size: 1rem;
    }

    .event-subtitle {
        font-size: 0.9rem;
    }

    .event-content h3 {
        font-size: 0.95rem;
    }

    .event-description {
        font-size: 0.8rem;
    }

    .meta-item i {
        font-size: 0.85rem;
    }

    .meta-item span {
        font-size: 0.75rem;
    }

    .benefit-icon {
        font-size: 1.6rem;
    }

    .benefit-card h4 {
        font-size: 0.95rem;
    }

    .benefit-card p {
        font-size: 0.8rem;
    }

    .registration-section {
        padding: 2.5rem 0;
    }

    .registration-form {
        padding: 20px;
        border-radius: 10px;
    }

    .registration-form .form-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .registration-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
        padding: 9px 12px 9px 35px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .input-with-icon i {
        left: 12px;
        font-size: 0.9rem;
    }

    .form-terms label {
        font-size: 0.8rem;
    }

    .form-terms input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slider-images-controls {
        bottom: 4px;
    }
}

/* About Section.................................................. */
.about-contact-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}


.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-items: center;
}

.about-contact-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-contact-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-color);
    border-radius: 10px;
    z-index: -1;
}

.about-contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.about-contact-image:hover img {
    transform: scale(1.03);
}

.about-contact-content {
    padding: 20px;
}

.about-contact-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-contact-desc {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-contact-values {
    list-style: none;
    margin-bottom: 30px;
}

.about-contact-values li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.about-contact-values li i {
    color: var(--brand-color);
    margin-right: 10px;
    font-size: 1.2rem;
}


/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    margin-bottom: 50px;
}

/* Form Styles */
.contact-form-container {
    background-color: var(--background-color-secondary);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-group.full-width {
    width: 100%;
}

.required {
    color: #ff6b6b;
}


.form-terms {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.form-terms input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--brand-color);
}

.form-submit {
    margin-top: 30px;
}

/* Contact Info */
.contact-information-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-box {
    background-color: var(--background-color-secondary);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--brand-color);
    margin-right: 20px;
    min-width: 40px;
    height: 40px;
    background-color: rgba(207, 167, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-content h4 {
    margin-bottom: 5px;
}

.contact-info-content p {
    margin-bottom: 0;
    color: var(--text-color-secondary);
}

.social-connect {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--third-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--brand-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Office Locations */
.office-locations {
    margin-bottom: 60px;
    background-color: var(--background-color-secondary);
    padding: 40px;
    border-radius: 10px;
}

.office-locations h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.office-container {
    margin-top: 40px;
    height: 500px;
}

/* .office-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-content {
    padding: 25px;
}

.office-address,
.office-phone,
.office-email {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.office-address i,
.office-phone i,
.office-email i {
    color: var(--brand-color);
    margin-right: 15px;
    margin-top: 5px;
}

.office-phone a,
.office-email a {
    color: var(--text-color-secondary);
}

.office-phone a:hover,
.office-email a:hover {
    color: var(--brand-color);
}

/* Map Section */
/* .map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
} */

/* iframe {
    width: 100%;
    height: 100%;
    border: none;
} */

@media (max-width: 1200px) {
    .about-contact-section {
        padding: 4rem 0;
    }

    .about-contact-content h2 {
        font-size: 1.7rem;
    }

    .about-contact-desc {
        font-size: 0.95rem;
    }

    .about-contact-values li {
        font-size: 0.95rem;
    }

    .contact-form-container h2 {
        font-size: 1.7rem;
    }

    .contact-info-box h3 {
        font-size: 1.6rem;
    }

    .office-locations h2 {
        font-size: 1.7rem;
    }

    .contact-info-icon {
        font-size: 1.4rem;
    }

    .contact-info-content h4 {
        font-size: 1.2rem;
    }

    .contact-info-content p {
        font-size: 0.95rem;
    }

    .social-connect h4 {
        font-size: 1.2rem;
    }

}

@media (max-width: 992px) {
    .about-contact-section {
        padding: 3rem 0;
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-contact-content h2 {
        font-size: 1.4rem;
    }

    .about-contact-desc {
        font-size: 0.9rem;
    }

    .about-contact-values li {
        font-size: 0.9rem;
    }

    .contact-grid-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-container h2 {
        font-size: 1.4rem;
    }

    .contact-info-box h3 {
        font-size: 1.3rem;
    }

    .office-locations h2 {
        font-size: 1.4rem;
    }

    .contact-info-icon {
        font-size: 1.3rem;
    }

    .contact-info-content h4 {
        font-size: 1.1rem;
    }

    .contact-info-content p {
        font-size: 0.9rem;
    }

    .social-connect h4 {
        font-size: 1.1rem;
    }

    .office-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-contact-section {
        padding: 2rem 0;
    }

    .about-contact-content h2 {
        font-size: 1.2rem;
    }

    .about-contact-desc {
        font-size: 0.85rem;
    }

    .about-contact-values li {
        font-size: 0.85rem;
    }

    .contact-form-container h2 {
        font-size: 1.2rem;
    }

    .contact-info-box h3 {
        font-size: 1.1rem;
    }

    .office-locations h2 {
        font-size: 1.2rem;
    }

    .contact-info-icon {
        font-size: 1.2rem;
    }

    .contact-info-content h4 {
        font-size: 1rem;
    }

    .contact-info-content p {
        font-size: 0.85rem;
    }

    .social-connect h4 {
        font-size: 1rem;
    }

    .office-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-contact-section {
        padding: 2rem 0;
    }

    .about-contact-content h2 {
        font-size: 1rem;
    }

    .about-contact-desc {
        font-size: 0.8rem;
    }

    .about-contact-values li {
        font-size: 0.8rem;
    }

    .contact-form-container h2 {
        font-size: 1rem;
    }

    .contact-info-box h3 {
        font-size: 0.95rem;
    }

    .office-locations h2 {
        font-size: 1rem;
    }

    .contact-grid-row {
        grid-template-columns: 1fr;
    }

    .contact-info-icon {
        font-size: 1.1rem;
    }

    .contact-info-content h4 {
        font-size: 0.95rem;
    }

    .contact-info-content p {
        font-size: 0.8rem;
    }

    .social-connect h4 {
        font-size: 0.95rem;
    }
}

/* Blog-Detail.................................................. */
.tour-grid-related {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    margin: 0 -5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    will-change: transform, scroll-position;
    max-width: 100%;
}

.tour-grid-related .tour-card {
    min-width: 380px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    background-color: var(--background-color-secondary);
    border-radius: 12px;
}

/* Blog-Detail.................................................. */
.blog-detail-section {
    padding: 5rem 0;
}

.blog-detail-section .blog-header {
    text-align: center;
}

.blog-detail-section .blog-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-detail-section .blog-header p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.blog-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: flex-end;
}

.blog-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-tag i {
    color: var(--brand-color);
    font-size: 1.2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.blog-stats {
    display: flex;
    gap: 20px;
}

.blog-stats>div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color-secondary);
}

.blog-stats i {
    color: var(--brand-color);
    font-size: 1.2rem;
}

.blog-stats span {
    font-size: 1rem;
}

/* Blog Sections */
.blog-section {
    margin-bottom: 50px;
}

.blog-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.blog-section .description {
    font-size: 1rem;
    color: var(--text-color-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.blog-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.social-share {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.facebook-share {
    background: #3b5998;
}

.twitter-share {
    background: #1da1f2;
}

.pinterest-share {
    background: #bd081c;
}

.linkedin-share {
    background: #0077b5;
}

.social-share a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.tours-flex-related {
    position: relative;
    padding: 0 20px;
    margin-top: 40px;
}

.tours-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    margin: 0 -5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    will-change: transform, scroll-position;
    max-width: 100%;
}


@media (max-width: 1200px) {
    .blog-detail-section {
        padding: 4rem 0;
    }

    .blog-detail-section .blog-header h2 {
        font-size: 2.3rem;
    }

    .blog-detail-section .blog-header p {
        font-size: 1.3rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.85rem;
    }

    .blog-stats i {
        font-size: 1.1rem;
    }

    .blog-stats span {
        font-size: 0.95rem;
    }

    .blog-tag {
        font-size: 0.95rem;
    }

    .blog-tag i {
        font-size: 1.1rem;
    }

    .blog-section h2 {
        font-size: 1.6rem;
    }

    .blog-section .description {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .blog-detail-section {
        padding: 3rem 0;
    }

    .blog-detail-section .blog-header h2 {
        font-size: 2rem;
    }

    .blog-detail-section .blog-header p {
        font-size: 1.2rem;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .blog-stats i {
        font-size: 1rem;
    }

    .blog-stats span {
        font-size: 0.9rem;
    }

    .blog-tag {
        font-size: 0.9rem;
    }

    .blog-tag i {
        font-size: 1rem;
    }

    .blog-section h2 {
        font-size: 1.3rem;
    }

    .blog-section .description {
        font-size: 0.9rem;
    }

    .image-caption {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 2rem 0;
    }

    .blog-detail-section .blog-header h2 {
        font-size: 1.8rem;
    }

    .blog-detail-section .blog-header p {
        font-size: 1.1rem;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info span {
        font-size: 0.75rem;
    }

    .blog-stats i {
        font-size: 0.95rem;
    }

    .blog-stats span {
        font-size: 0.85rem;
    }

    .blog-tag {
        font-size: 0.85rem;
    }

    .blog-tag i {
        font-size: 0.95rem;
    }

    .blog-section h2 {
        font-size: 1.1rem;
    }

    .blog-section .description {
        font-size: 0.85rem;
    }

    .image-caption {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .blog-detail-section {
        padding: 2rem 0;
    }

    .blog-detail-section .blog-header h2 {
        font-size: 1.5rem;
    }

    .blog-detail-section .blog-header p {
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 0.85rem;
    }

    .author-info span {
        font-size: 0.7rem;
    }

    .blog-stats i {
        font-size: 0.9rem;
    }

    .blog-stats span {
        font-size: 0.8rem;
    }

    .blog-tag {
        font-size: 0.8rem;
    }

    .blog-tag i {
        font-size: 0.9rem;
    }

    .blog-section h2 {
        font-size: 1rem;
    }

    .blog-section .description {
        font-size: 0.8rem;
    }

    .image-caption {
        font-size: 0.75rem;
    }

    .tours-row{
        gap: 10px;
    }
}

/* Tour-Custom.................................................. */
.tour-custom-section {
    padding: 5rem 0;
    margin: 0 auto;
}
.tour-type-selector {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background: var(--background-color-secondary);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.tour-type-selector h2 {
    color: var(--brand-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.tour-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tour-type-grid h4 i{
    color: var(--brand-color);
}

.tour-type-card {
    background: var(--background-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tour-type-card:hover {
    border-color: var(--brand-color);
}

.tour-type-card.active {
    border-color: var(--brand-color);
    background: rgba(207, 167, 96, 0.1);
}

.tour-type-card h4 {
    color: var(--brand-color);
    margin-bottom: 8px;
    margin-top: 15px;
    font-size: 1.6rem;
}

.tour-type-card p {
    color: var(--text-color-secondary);
    font-size: 1rem;
    margin: 0;
}

.tour-type-card-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}
.tour-type-card-image img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: var(--background-color-secondary);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    display: none;
}

.custom-form.active {
    display: block;
}


.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--brand-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header i{
    color: var(--brand-color);
}

.form-header p {
    color: var(--text-color-secondary);
    font-size: 1rem;
    font-style: italic;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-row {
    display: flex;
    gap: 10px;
}


.label-question {
    color: var(--brand-color);
    margin-bottom: 8px;
    font-weight: 500;

}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--background-color);
    color: var(--primary-color);
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-option input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--third-color);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--brand-color);
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .tour-type-selector h2 {
        font-size: 1.7rem;
    }

    .tour-type-card h4 {
        font-size: 1.4rem;
    }

    .tour-type-card p {
        font-size: 0.95rem;
    }

    .form-header h2 {
        font-size: 1.7rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }

    .label-question {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .checkbox-option span {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .tour-type-selector h2 {
        font-size: 1.4rem;
    }

    .tour-type-card h4 {
        font-size: 1.2rem;
    }

    .tour-type-card p {
        font-size: 0.9rem;
    }

    .form-header h2 {
        font-size: 1.4rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .label-question {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .checkbox-option span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .tour-type-selector h2 {
        font-size: 1.2rem;
    }

    .tour-type-card h4 {
        font-size: 1rem;
    }

    .tour-type-card p {
        font-size: 0.85rem;
    }

    .tour-type-grid {
        grid-template-columns: 1fr;
    }

    .custom-form {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 1.2rem;
    }

    .form-header p {
        font-size: 0.85rem;
    }

    .label-question {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
    }

    .checkbox-option span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .tour-type-selector h2 {
        font-size: 1rem;
    }

    .tour-type-card h4 {
        font-size: 0.95rem;
    }

    .tour-type-card p {
        font-size: 0.8rem;
    }

    .form-header h2 {
        font-size: 1rem;
    }

    .form-header p {
        font-size: 0.8rem;
    }

    .label-question {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.8rem;
    }

    .checkbox-option span {
        font-size: 0.8rem;
    }
}

/* Popup custom thành công */
.custom-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-popup-success {
    background: var(--background-color);
    border: 1px solid var(--background-color-secondary);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 36px 32px 28px 32px;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    animation: popupFadeIn 0.4s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.custom-popup-success .popup-icon {
    font-size: 3.2rem;
    color: #4BB543;
    margin-bottom: 12px;
}
.custom-popup-success .popup-message {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 500;
}
.custom-popup-success .popup-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(66,133,244,0.08);
}
.custom-popup-success .popup-btn:hover {
    background: var(--brand-color);
    color: var(--primary-color);
}
@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 576px) {
    .voucher-grid,
    .blogs-row {
      flex-direction: column !important;
    }
  }
  .voucher-card.hidden,
  .blog-card.hidden {
    display: none !important;
  }

/* View More Button Styles */
.view-more-container {
    display: none;
}

@media (max-width: 576px) {
    .view-more-container {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .view-more-btn {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 12px 30px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .view-more-btn:hover {
        background: var(--primary-color);
        color: var(--secondary-color);
        border-color: var(--brand-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    
    /* .view-more-btn:active {
        transform: translateY(0);
    }
    
    .view-more-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .view-more-btn:hover::before {
        left: 100%;
    } */

    .view-more-container {
        margin-top: 25px;
    }
    
    .view-more-btn {
        padding: 8px 24px;
        font-size: 0.9rem;
    }
}