/*
Theme Name: Luxury China Tours
Theme URI: http://localhost/
Description: Premium private China travel experience - WordPress theme for luxury tours
Author: China Highlights Team
Author URI: http://localhost/
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, luxury, travel, responsive, custom-fields
Text Domain: luxury-china-tours
*/

:root {
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-card: #161616;
    --black-hover: #1E1E1E;
    --gray-dark: #2A2A2A;
    --gray-mid: #3D3D3D;
    --gray-border: #2E2E2E;
    --gray-light: #8A8A8A;
    --gray-muted: #666666;
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --white-muted: #E0E0E0;
    --orange: #E8610A;
    --orange-light: #FF7320;
    --orange-dark: #C5500A;
    --orange-glow: rgba(232, 97, 10, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
hr { border: none; border-top: 1px solid var(--gray-border); margin: 0; }
/* Suppress any WordPress-injected hr in destination hero area */
.dest-hero hr,
.destination-single > hr,
.site-main > hr { display: none !important; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10,10,10,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}
.nav-logo img,
.custom-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}
.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}
.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
}
.nav-logo-text span { color: var(--orange); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.btn-outline-nav {
    padding: 8px 20px;
    border: 1px solid var(--gray-mid);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-muted);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-nav:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-orange-nav {
    padding: 9px 22px;
    background: var(--orange);
    border: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}
.btn-orange-nav:hover { background: var(--orange-light); }

/* ── NAV DROPDOWN ── */
.nav-links .menu-item {
    position: relative;
}
.nav-links .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 4px;
}
/* 下拉箭头 */
.nav-links .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--gray-light);
    border-bottom: 1.5px solid var(--gray-light);
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform var(--transition);
}
.nav-links .menu-item-has-children > a:hover::after {
    border-color: var(--orange);
}
/* 下拉面板 */
.nav-links .sub-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-links .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--black-card);
    border-left: 1px solid var(--gray-border);
    border-top: 1px solid var(--gray-border);
}
/* Hover 展开 */
.nav-links .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
/* 二级菜单项 */
.nav-links .sub-menu .menu-item {
    display: block;
}
.nav-links .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--gray-light);
    white-space: nowrap;
    transition: all var(--transition);
}
.nav-links .sub-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.04);
}

/* ── NAV WRAPPER ── */
.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
}

/* ── MEGA DROPDOWN ── */
.nav-links .mega-trigger {
    position: relative;
}
/* 透明桥接区域 — 延长 hover 范围到下拉面板 */
.nav-links .mega-trigger::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 60px;
    z-index: 997;
}
.nav-links .mega-trigger > a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links .mega-trigger > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--gray-light);
    border-bottom: 1.5px solid var(--gray-light);
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform var(--transition);
}
.nav-links .mega-trigger > a:hover::after {
    border-color: var(--orange);
}
/* Mega Dropdown Panel */
.mega-dropdown {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black-card);
    border-bottom: 1px solid var(--gray-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}
/* hover 触发 + 下拉面板自身 hover 保持展开 */
.nav-links .mega-trigger:hover .mega-dropdown,
.mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.mega-col-cards {
    grid-column: span 2;
}

.mega-col-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-muted);
    margin-bottom: 16px;
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mega-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-light);
    padding: 6px 0;
    transition: color var(--transition);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}
.mega-list li a:hover {
    color: var(--orange);
}
.mega-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
}
.mega-icon svg {
    width: 16px;
    height: 16px;
    color: var(--gray-light);
}

/* Seasonal Picks Cards */
.mega-col-cards {
    /* grid column auto-sizes */
}
.mega-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mega-card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
    text-decoration: none;
    transition: transform var(--transition);
}
.mega-card:hover {
    transform: translateY(-2px);
}
.mega-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.mega-card:hover .mega-card-img {
    transform: scale(1.05);
}
.mega-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
    z-index: 1;
}
.mega-card-label {
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    z-index: 2;
    font-size: 11px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ── MOBILE HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1547981609-4b6bfe67ca0b?w=1920&q=80');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.6) 0%, transparent 60%),
                linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(232,97,10,0.15);
    border: 1px solid rgba(232,97,10,0.4);
    border-radius: 2px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-badge span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange-light);
}
.hero h1 {
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 8px;
}
.hero h1 em {
    font-style: italic;
    color: var(--orange-light);
}
.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    font-family: var(--font-heading);
    color: var(--white-muted);
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    padding: 16px 36px;
    background: var(--orange);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-hero-primary:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(232,97,10,0.4); }
.btn-hero-ghost {
    padding: 15px 36px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-hero-ghost:hover { border-color: white; background: rgba(255,255,255,0.05); }
.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    color: var(--white);
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    text-align: center;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-top: 4px;
    text-align: center;
}
.hero-scroll {
    position: absolute;
    right: 40px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    color: var(--white-muted);
}
.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
    background: var(--black-card);
    border-bottom: 1px solid var(--gray-border);
    padding: 14px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.announce-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray-light);
}
.announce-item .icon-orange { color: var(--orange); }
.announce-item strong { color: var(--white); }

/* ── SECTIONS ── */
.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--orange);
}
.section-title {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}
.destination-subtitle {
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.3;
}
.destination-description {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--orange-light); }
.section-desc {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 580px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}
.link-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    white-space: nowrap;
    transition: gap var(--transition);
}
.link-view-all:hover { gap: 14px; }

/* ── DESTINATIONS ── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.dest-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}
.dest-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.6s ease, filter 0.4s ease;
}
.dest-card:hover img { transform: scale(1.06); filter: brightness(0.45); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
}
.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}
.dest-card-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: white;
    margin-bottom: 4px;
}
.dest-card:first-child .dest-card-name { font-size: 38px; }
.dest-card-count {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}
.dest-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 12px;
    background: var(--orange);
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    z-index: 2;
}
.dest-card-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.dest-card:hover .dest-card-hover { opacity: 1; }
.dest-card-hover-btn {
    padding: 12px 24px;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background var(--transition);
}

/* ── TOUR CATEGORIES ── */
.tours-bg {
    background: var(--black-soft);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}
.tours-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--gray-border);
}
.tour-tab {
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}
.tour-tab.active, .tour-tab:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tour-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.tour-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--orange);
}
.tour-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.05); }
.tour-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
}
.badge {
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.badge-orange { background: var(--orange); color: white; }
.badge-dark { background: rgba(0,0,0,0.7); color: var(--white-muted); border: 1px solid rgba(255,255,255,0.15); }
.badge-outline { background: transparent; color: var(--orange); border: 1px solid var(--orange); }
.tour-card-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    transition: var(--transition);
}
.tour-card-wishlist:hover { background: var(--orange); color: white; }
.tour-card-body { padding: 22px; }
.tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.tour-card-dest {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
}
.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-light);
}
.star-icon { color: var(--orange); font-size: 11px; }
.tour-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.tour-card-desc {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 18px;
}
.tour-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.feature-tag {
    padding: 4px 10px;
    background: var(--black-hover);
    border: 1px solid var(--gray-border);
    border-radius: 2px;
    font-size: 11px;
    color: var(--gray-light);
    letter-spacing: 0.3px;
}
.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--gray-border);
}
.tour-price {}
.tour-price-from {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-muted);
}
.tour-price-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}
.tour-price-amount span { font-size: 16px; color: var(--gray-light); }
.btn-tour-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--gray-mid);
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-muted);
    cursor: pointer;
    transition: var(--transition);
}
.btn-tour-detail:hover { background: var(--orange); border-color: var(--orange); color: white; }

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.why-item {
    padding: 48px 40px;
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}
.why-item:hover {
    background: var(--black-hover);
    border-color: var(--orange);
}
.why-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 24px;
    transition: var(--transition);
}
.why-item:hover .why-icon {
    background: var(--orange);
    color: white;
}
.why-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}
.why-desc {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ── EXPERIENCE SECTION ── */
.experience-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}
.experience-img {
    position: relative;
    overflow: hidden;
}
.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.experience-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--black));
}
.experience-content {
    background: var(--black);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.experience-list {
    list-style: none;
    margin: 40px 0;
}
.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-border);
}
.experience-list li:last-child { border-bottom: none; }
.exp-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--orange);
    margin-top: 2px;
}
.exp-text-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.exp-text-desc {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-bg {
    background: var(--black-soft);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 100px 40px;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    padding: 36px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}
.testimonial-quote {
    font-size: 64px;
    font-family: var(--font-heading);
    color: var(--orange);
    line-height: 0.7;
    margin-bottom: 20px;
    opacity: 0.6;
}
.testimonial-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: italic;
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    color: var(--orange);
    font-size: 13px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-border);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-border);
}
.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}
.testimonial-trip {
    font-size: 12px;
    color: var(--gray-muted);
    margin-top: 2px;
}

/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 120px 40px;
    text-align: center;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1508804185872-d7badad00f7d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
}
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(232,97,10,0.15) 0%, transparent 70%);
}
.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.cta-banner h2 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
}
.cta-banner p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 48px;
    line-height: 1.8;
}
.cta-banner-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    padding: 18px 44px;
    background: var(--orange);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-cta-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,97,10,0.5); }
.btn-cta-secondary {
    padding: 17px 44px;
    background: transparent;
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-cta-secondary:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* ── FOOTER ── */
.footer {
    background: var(--black-soft);
    border-top: 1px solid var(--gray-border);
    padding: 80px 40px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand {}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: white;
}
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
.footer-logo-text span { color: var(--orange); }
.footer-logo .custom-logo-link { display: flex; }
.footer-logo .custom-logo-link img {
    height: 36px;
    width: auto;
    display: block;
}
.footer-tagline {
    font-size: 14px;
    color: var(--gray-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 300px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-muted);
    transition: var(--transition);
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 13px;
    color: var(--gray-muted);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-border);
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copy {
    font-size: 12px;
    color: var(--gray-muted);
}
.footer-copy a { color: var(--orange); }
.footer-awards {
    display: flex;
    align-items: center;
    gap: 16px;
}
.award-badge {
    padding: 6px 14px;
    border: 1px solid var(--gray-border);
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-card:first-child { grid-row: span 1; }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .experience-wrap { grid-template-columns: 1fr; }
    .experience-img { height: 400px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .hamburger { display: flex; }
    .nav-links-wrapper {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--black-card);
        padding: 80px 30px 30px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid var(--gray-border);
    }
    .nav-links-wrapper.active {
        right: 0;
    }
    .nav-links-wrapper.active {
        display: flex;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .mega-dropdown {
        display: none !important;
    }
    .nav-links > .menu-item {
        border-bottom: 1px solid var(--gray-border);
    }
    .nav-links > .menu-item > a {
        display: block;
        padding: 14px 0;
        font-size: 14px;
    }
    .mobile-menu-overlay { display: block; }
    .mobile-menu-overlay.active { display: block; }
    /* 移动端下拉：内嵌展开 */
    .nav-links .menu-item-has-children > a::after {
        position: absolute;
        right: 4px;
        top: 50%;
        margin-top: -3px;
    }
    .nav-links .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        min-width: auto;
    }
    .nav-links .sub-menu::before { display: none; }
    .nav-links .menu-item-has-children.open > .sub-menu {
        max-height: 500px;
        padding: 0 0 8px 16px;
    }
    .nav-links .sub-menu a {
        padding: 8px 0;
        font-size: 13px;
    }
    /* 移动端禁用 hover 下拉 */
    .nav-links .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        max-height: none;
    }
    .nav-cta {
        margin-top: 20px;
        flex-direction: column;
        width: 100%;
    }
    .nav-cta .btn-outline-nav,
    .nav-cta .btn-orange-nav {
        width: 100%;
        text-align: center;
    }
    .section { padding: 70px 20px; }
    .hero-content { padding: 0 20px; }
    .hero-stats { padding: 0 20px; gap: 30px; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .tours-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .announce-bar { padding: 12px 20px; gap: 20px; }
}
/* 详情页banner样式 */
.single-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 450px;
    overflow: hidden;
}
.single-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* 显示图片中间部分 */
}
/* 调整详情页标题区域 */
.single-banner + .section {
    padding-top: 60px;
}

/* 详情页视频播放器 */
.destination-video {
    max-width: 1200px;
    margin: 0 auto 40px;
}
.destination-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* 关联旅游产品区域 */
.related-tours-section {
    margin-top: 60px;
    margin-bottom: 60px;
}
.related-tours-section .section-label {
    margin-bottom: 30px;
}

/* ========== Tour 产品详情页样式 ========== */

/* 整体容器 */
.tour-detail-page {
    max-width: 1200px;
    margin: 0 auto;
}
.tour-detail-hero {
    margin-bottom: 40px;
}
.tour-detail-hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.tour-detail-layout {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}
.tour-detail-main {
    flex: 1;
    min-width: 0;
    padding-right: 24px;
    border-right: 1px solid var(--gray-border);
}
.tour-detail-sidebar {
    width: 300px;
    flex-shrink: 0;
    padding-left: 24px;
}
.sidebar-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-border);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.sidebar-tour-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sidebar-tour-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.25s ease;
}
.sidebar-tour-item:last-child {
    border-bottom: none;
}
.sidebar-tour-item:hover {
    padding-left: 6px;
}
.sidebar-tour-item:hover .sidebar-tour-info h4 {
    color: var(--orange);
}
.sidebar-tour-img {
    width: 72px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
}
.sidebar-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.sidebar-tour-item:hover .sidebar-tour-img img {
    transform: scale(1.08);
}
.sidebar-tour-info h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 4px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.sidebar-tour-meta {
    font-size: 12px;
    color: var(--gray-light);
}
.sidebar-tour-price {
    display: block;
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    margin-top: 2px;
}

/* Meta：目的地 + 评分 */
.tour-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-light);
}
.tour-dest {
    position: relative;
}
.tour-dest a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.tour-dest a:hover {
    color: var(--orange-light);
}
.tour-dest .separator {
    color: var(--gray-mid);
    margin: 0 4px;
}
.tour-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--orange);
    font-weight: 500;
    background: rgba(232, 97, 10, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
}
.tour-detail-info-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.info-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-light);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 8px 16px;
    transition: var(--transition);
}
.info-tag:hover {
    border-color: var(--orange);
    background: rgba(232, 97, 10, 0.06);
}
.info-tag svg {
    color: var(--orange);
    flex-shrink: 0;
    opacity: 0.85;
}
.info-tag .tag-value {
    color: var(--white);
    font-weight: 500;
}
.info-tag .tag-label {
    color: var(--gray-muted);
}

/* 摘要 */
.tour-detail-excerpt {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 30px;
    padding-left: 16px;
    border-left: 3px solid var(--gray-border);
}

/* 标题 */
.tour-detail-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 30px 0;
    line-height: 1.3;
}

/* ========== 行程亮点模块 ========== */
.tour-highlights-section {
    margin: 40px 0;
}
.tour-highlights-section .section-label {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.highlight-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 20px;
}
.highlight-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}
.highlight-card-img {
    margin-bottom: 14px;
    border-radius: 6px;
    overflow: hidden;
}
.highlight-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.highlight-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px 0;
}
.highlight-card .highlight-desc {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}
/* 全宽高亮块（含表格/子标题等复杂内容） */
.highlight-fullwidth {
    grid-column: 1 / -1;
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 24px;
}
.highlight-fullwidth:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}
.highlight-fullwidth-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.highlight-fullwidth-content {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}
.highlight-fullwidth-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.highlight-fullwidth-content table th,
.highlight-fullwidth-content table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--gray-border);
}
.highlight-fullwidth-content table th {
    color: var(--orange);
    font-weight: 600;
}
.highlight-fullwidth-content table tr:nth-child(even) {
    background: var(--black-hover);
}
.highlight-fullwidth-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

/* ========== 行程安排模块 ========== */
.tour-itinerary-section {
    margin: 50px 0;
}
.tour-itinerary-section .section-label {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.itinerary-day {
    border-left: 3px solid var(--gray-border);
    padding: 0 0 30px 24px;
    position: relative;
    margin-bottom: 10px;
}
.itinerary-day:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 6px;
    width: 13px;
    height: 13px;
    background: var(--orange);
    border-radius: 50%;
    border: 2px solid var(--black);
    box-shadow: 0 0 0 1px var(--orange);
}
.day-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 10px 0;
}
.day-content {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}
.day-content p {
    margin: 0 0 10px 0;
}
.day-content p:empty,
.day-content p:has(> br:only-child) {
    margin-bottom: 0;
    line-height: 0;
    height: 0;
}
.day-img {
    margin-top: 14px;
    border-radius: 6px;
    overflow: hidden;
}
.day-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== 正文内容 ========== */
.tour-detail-content {
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-light);
}
.tour-detail-content h2,
.tour-detail-content h3 {
    color: var(--white);
    margin-top: 28px;
}
.tour-detail-content p {
    margin-bottom: 16px;
}
.tour-detail-content p:empty,
.tour-detail-content p:has(> br:only-child) {
    margin-bottom: 0;
    line-height: 0;
    height: 0;
}
.tour-detail-content table,
.day-content table,
.inc-content table,
.exc-content table,
.highlight-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}
.tour-detail-content table th,
.tour-detail-content table td,
.day-content table th,
.day-content table td,
.inc-content table th,
.inc-content table td,
.exc-content table th,
.exc-content table td,
.highlight-card table th,
.highlight-card table td {
    border: 1px solid var(--gray-border);
    padding: 10px 14px;
    text-align: left;
    color: var(--gray-light);
}
.tour-detail-content table th,
.day-content table th,
.inc-content table th,
.exc-content table th,
.highlight-card table th {
    background: var(--black-card);
    color: var(--white);
    font-weight: 600;
}
.tour-detail-content table tr:nth-child(even),
.day-content table tr:nth-child(even),
.inc-content table tr:nth-child(even),
.exc-content table tr:nth-child(even),
.highlight-card table tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

/* ========== 费用包含/不包含 ========== */
.tour-includes-section {
    margin: 50px 0;
}
.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.inc-col,
.exc-col {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 24px;
}
.inc-col h3 {
    font-size: 17px;
    font-weight: 600;
    color: #4caf50;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4caf50;
}
.exc-col h3 {
    font-size: 17px;
    font-weight: 600;
    color: #ef5350;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ef5350;
}
.inc-col ul,
.exc-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.inc-col li,
.exc-col li,
.inc-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
}
.inc-col li:before,
.inc-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}
.exc-col li:before,
.exc-content ul li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef5350;
    font-weight: 700;
}

/* ========== 底部价格 + 咨询按钮 ========== */
.tour-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 0 0;
    padding: 24px 0;
    border-top: 1px solid var(--gray-border);
}
.price-label {
    font-size: 13px;
    color: var(--gray-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
}
.price-amount small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-muted);
}
.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-book-now:hover {
    background: var(--orange-dark);
}

/* ========== 响应式：手机端适配 ========== */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .includes-grid {
        grid-template-columns: 1fr;
    }
    .tour-detail-title {
        font-size: 24px;
    }
    .tour-detail-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ========== Destination Single Page Styles ========== */
.destination-single {
    overflow-x: hidden;
}

/* Banner */
.dest-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.dest-badge {
    display: inline-block;
    background: #C9A96E;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.title-badge-wrap {
    margin-bottom: 8px;
}

/* Title Section (below banner) */
.dest-title-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 20px;
}
.dest-title-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.2;
    color: #ffffff;
}
.dest-title-section .dest-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #8A8A8A;
    margin: 0;
}

/* Content Section (uses .container class directly, no extra margin) */
.dest-content-section {
    /* Inherits padding from .container */
}
.dest-description {
    font-size: 16px;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 36px;
}
.dest-video-wrap {
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
}
.dest-video-wrap video {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.video-container {
    position: relative;
    cursor: pointer;
}
.video-container video {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}
.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}
.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.video-play-btn svg {
    width: 36px;
    height: 36px;
    fill: #000;
    margin-left: 4px; /* 微调播放图标居中 */
}
.video-overlay:hover .video-play-btn {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}
.dest-body-content {
    font-size: 16px;
    line-height: 1.8;
    color: #E0E0E0;
}
.dest-body-content p {
    margin-bottom: 16px;
}
.dest-body-content img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* Related Tours */
.dest-tours-grid {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px;
    color: #1a1a1a;
}
.dest-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.dest-tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.dest-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.dest-tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.dest-tour-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.dest-tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.dest-tour-card:hover .dest-tour-card-img img {
    transform: scale(1.05);
}
.dest-tour-card-body {
    padding: 20px;
}
.dest-tour-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1a1a1a;
}
.dest-tour-excerpt {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px;
    line-height: 1.6;
}
.dest-tour-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #999;
}
.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .dest-banner {
        height: 280px;
    }
    .dest-title-section h1 {
        font-size: 36px;
    }
    .dest-title-section .dest-subtitle {
        font-size: 18px;
    }
    .dest-content-section {
        margin: 36px auto;
    }
    .dest-tours-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 28px;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -36px;
        font-size: 28px;
    }
    
    .dest-play-btn {
        bottom: 16px;
        right: 16px;
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════
   DESTINATION HERO - Scoped to .dest-hero only
   (avoid conflicting with homepage .hero)
   ═══════════════════════════════════════════ */
.dest-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    /* NO filter here — brightness goes on the pseudo-element below */
}
/* Darken only the background image, not the text */
.dest-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 0;
}
.dest-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.dest-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;
    width: 100%;
    color: var(--white);
}
.dest-hero .hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.dest-hero .hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.dest-hero .hero-breadcrumb a:hover {
    color: var(--orange);
}
.dest-hero .hero-breadcrumb svg {
    width: 14px;
    height: 14px;
}
.dest-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.dest-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}


/* Reduce vertical gap between adjacent containers on destination page */
.destination-single .container + .container {
    padding-top: 0;
}

/* ═══════════════════════════════════════════
   QUICK STATS - Match static HTML
   ═══════════════════════════════════════════ */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.stat-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}
.stat-label {
    font-size: 13px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   SECTION TITLE - For Destination Single Page
   ═══════════════════════════════════════════ */
.destination-single .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}
.destination-single .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.destination-single .section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}
.destination-single .section-desc {
    font-size: 16px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   HIGHLIGHTS GRID - For Destination Single Page
   ═══════════════════════════════════════════ */
.destination-single .highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.destination-single .highlight-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.destination-single .highlight-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}
.destination-single .highlight-img {
    height: 280px;
    overflow: hidden;
}
.destination-single .highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-single .highlight-card:hover .highlight-img img {
    transform: scale(1.05);
}
.destination-single .highlight-content {
    padding: 24px;
}
.destination-single .highlight-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}
.destination-single .highlight-content p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════
   BEST TIME - Match static HTML
   ═══════════════════════════════════════════ */
.best-time {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}
.best-time-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}
.best-time-info p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.month-item {
    background: var(--black);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    transition: var(--transition);
}
.month-item.best {
    border-color: var(--orange);
    background: var(--orange-glow);
}
.month-item.good {
    border-color: var(--gray-mid);
}
.month-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}
.month-item span {
    font-size: 12px;
    color: var(--gray-light);
}
.month-item.best span {
    color: var(--orange);
}

/* ═══════════════════════════════════════════
   TOURS GRID (Updated to match static HTML)
   ═══════════════════════════════════════════ */
.dest-tours-section {
    background: transparent;
    padding: 0;
}
.dest-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dest-tour-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.dest-tour-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}
.dest-tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.tour-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}
.tour-content {
    padding: 24px;
}
.tour-dest {
    font-size: 12px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.tour-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--white);
}
.tour-excerpt {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.tour-meta {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-border);
    margin-bottom: 20px;
}
.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-light);
}
.tour-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--gray-muted);
}
.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tour-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}
.tour-price span {
    font-size: 13px;
    color: var(--gray-light);
    font-family: var(--font-body);
}
.btn-tour {
    padding: 10px 20px;
    background: var(--orange);
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-tour:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   CTA SECTION - Match static HTML
   ═══════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    color: var(--white);
}
.cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    color: var(--white);
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--white);
    border: none;
    border-radius: 8px;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-white svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE - Match static HTML
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .highlights-grid,
    .dest-tours-grid {
        grid-template-columns: 1fr;
    }
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .best-time {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    .container {
        padding: 60px 20px;
    }
    .container {
        padding: 60px 20px;
    }
    .dest-hero {
        height: 50vh;
        min-height: 400px;
    }
    .dest-hero .hero-content {
        padding: 0 20px 40px;
    }
    .quick-stats {
        margin-top: -60px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-card {
        padding: 20px 16px;
    }
    .highlights-grid,
    .dest-tours-grid {
        grid-template-columns: 1fr;
    }
    .months-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .best-time {
        padding: 30px 20px;
        gap: 24px;
    }
    .cta-section {
        padding: 60px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
