/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
    /* Color Variables */
    --primary-color: #2A6F97;
    --secondary-color: #F29F05;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #888;
    --bg-light: #F8F9FA;
    --bg-white: #ffffff;
    --bg-dark: #222;
    --border-light: #e1e5e9;
    --border-gray: #eee;
    --success-color: #28a745;
    --error-color: #dc3545;
    
    /* Text Variables */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-xxl: 24px;
    --font-size-huge: 32px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Background Variables */
    --dropdown-bg: #ffffff;
    --custom-trip-bg: #f0f5f9;
    --reviews-bg: #f9f9f9;
    --price-display-bg: var(--light-bg);
    
    /* Border Variables */
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    --border-radius-circle: 50%;
    
    /* Shadow Variables */
    --dropdown-shadow: 0 4px 12px rgba(0,0,0,0.15);
    --card-shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --card-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --card-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --modal-shadow: 0 10px 40px rgba(0,0,0,0.3);
    --hover-shadow: 0 2px 8px rgba(242, 159, 5, 0.3);
    
    /* Spacing Variables */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 25px;
    --spacing-xxl: 30px;
    --spacing-huge: 40px;
    --container-padding: 15px;
    
    /* Transition Variables */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --hover-gradient: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,1) 100%);
    
    /* Responsive Breakpoints */
    --breakpoint-xs: 480px;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}

/* =========================================
   BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =========================================
   NAVIGATION BAR
   ========================================= */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    width: 100%;
    transition: all var(--transition-normal);
}

/* 滚动时的导航栏样式 */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 第一行：logo + 货币选择 + 语言切换 */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    width: auto;
    max-width: none;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.logo a {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
}

.logo-slogan {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 右侧操作区：语言 + 货币 组合布局 */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 语言切换按钮 */
.lang-switch {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    font-size: var(--font-size-sm);
    display: inline-block !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.lang-btn:hover:not(.active) {
    background: var(--hover-gradient);
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* 语言切换下拉菜单 */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background-color: var(--dropdown-bg);
    min-width: 140px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-radius: var(--border-radius-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px) scale(0.98);
    transition: all 0.25s ease-in-out;
    z-index: 9999;
    border: 1px solid var(--border-light);
}

.lang-switch:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-item {
    padding: 8px 18px;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-item-icon {
    font-size: 11px;
    color: var(--text-lighter);
}

.lang-item:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 22px;
}

.lang-item.active {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

.lang-item.active .lang-item-icon {
    color: var(--primary-color);
}

/* 当前语言按钮 */
#currentLang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
}

.lang-icon {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.lang-switch:hover .lang-icon {
    transform: rotate(180deg);
}

/* 货币选择按钮 */
.currency-switch {
    display: flex;
    position: relative;
    flex-shrink: 0;
}

.currency-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    font-size: var(--font-size-sm);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--bg-white);
    color: var(--text-color);
    min-width: 80px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* 货币下拉箭头图标 */
.currency-icon {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.currency-switch:hover .currency-icon {
    transform: rotate(180deg);
}

.currency-btn:hover {
    background: var(--hover-gradient);
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* 货币下拉菜单 */
.currency-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background-color: var(--dropdown-bg);
    min-width: 140px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-radius: var(--border-radius-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px) scale(0.98);
    transition: all 0.25s ease-in-out;
    z-index: 9999;
    border: 1px solid var(--border-light);
}

.currency-switch:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* 临时隐藏下拉菜单的类 */
.dropdown-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(5px) scale(0.98) !important;
}

.currency-item {
    padding: 8px 18px;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-item-icon {
    font-size: 11px;
    color: var(--text-lighter);
}

.currency-item:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 22px;
}

.currency-item.active {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

.currency-item.active .currency-item-icon {
    color: var(--primary-color);
}

/* 第二行：导航链接 + 菜单按钮 */
.nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 导航链接 */
.nav-links {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    flex-wrap: nowrap;
    overflow-x: visible;
    padding-bottom: 0;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

/* 导航菜单项 */
.nav-item {
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-item > a {
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-normal);
    white-space: nowrap;
    font-size: var(--font-size-sm);
    display: block;
    padding: 8px 12px;
}

.nav-item > a:hover {
    color: var(--secondary-color);
}

/* 导航栏活动状态样式 */
.nav-item.active {
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-color);
}

.nav-item > a.active {
    color: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
}

/* 下拉菜单活动状态样式 */
.dropdown-item.active {
    background-color: var(--bg-light);
    padding-left: 20px;
}

.dropdown-item.active a {
    color: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
}

/* 下拉菜单 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dropdown-bg);
    min-width: 200px;
    box-shadow: var(--dropdown-shadow);
    border-radius: var(--border-radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease-in-out;
    z-index: 999;
    overflow: visible;
    max-height: none;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下拉菜单项 */
.dropdown-item {
    padding: 8px 15px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item a {
    font-size: 13px;
    display: block;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    padding-left: 20px;
}

.dropdown-item:hover a {
    color: var(--secondary-color);
}

/* 下拉菜单分割线 */
.dropdown-divider {
    height: 1px;
    background-color: var(--border-gray);
    margin: 8px 0;
}

/* 响应式导航（移动端） */
.menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?ixlib=rb-4.0.3') center/cover no-repeat;
    height: 35vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    width: 100%;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    margin-top: var(--spacing-huge);
    padding-bottom: var(--spacing-huge);
}

.hero-content {
    width: 100%;
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

.hero-slogan {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero h1 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: var(--font-weight-medium);
    margin-bottom: 20px;
    opacity: 0.9;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
    text-align: center;
}

.cta-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.cta-btn:hover {
    background-color: #e08f04;
}

/* =========================================
   SEARCH SECTION
   ========================================= */
.search-section {
    background-color: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: var(--font-size-md);
    outline: none;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-md);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color var(--transition-normal);
}

.search-btn:hover {
    background-color: #235b7e;
}

/* =========================================
   CUSTOM TOURS SECTION
   ========================================= */
.custom-tours-section {
    margin-top: var(--spacing-huge);
    padding-top: var(--spacing-xxl);
}

/* =========================================
   CARD STYLES
   ========================================= */
/* Tour Cards Layout */
.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-huge);
    margin-bottom: var(--spacing-xxl);
    width: 100%;
}

/* City Card */
.city-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-lg);
}

.city-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    display: block;
}

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

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: var(--spacing-lg);
}

.city-overlay h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.city-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.city-content p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    flex: 1;
}

/* Tour Card */
.tour-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Tour Badges */
.tour-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.badge-group {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(2px);
}

/* Tour Image */
.tour-image {
    height: 200px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.tour-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.tour-image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tour Content */
.tour-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-title {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: var(--font-weight-semibold);
}

.tour-description {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    flex: 1;
    min-height: 60px;
    max-height: 120px;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    font-size: 13px;
    color: var(--text-lighter);
}

.tour-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-price {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 15px;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: auto;
    gap: 10px;
    padding-top: 10px;
}

.tour-price-wrapper {
    flex: 1;
    min-width: 0;
}

.tour-price {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 0;
    max-width: 100%;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
}

/* Detail Button */
.detail-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.detail-btn:hover {
    background-color: #1e557a;
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

/* Price Card (Backward Compatibility) */
.price-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-lg);
}

.price-note {
    font-size: var(--font-size-xs);
    color: var(--text-lighter);
    margin-bottom: var(--spacing-lg);
}

/* =========================================
   MODAL STYLES
   ========================================= */
.modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    background: rgba(0,0,0,0.7) !important;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    align-items: center;
    justify-content: center;
}

.modal.show, .modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background-color: var(--bg-white);
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--modal-shadow);
    overflow: hidden;
    transform: scale(0.7);
    transition: transform var(--transition-normal);
}

.modal.show .modal-content, .modal.active .modal-content {
    transform: scale(1);
}

/* Modal Header */
.modal-header {
    position: relative;
    height: 250px;
    background-color: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.modal-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.modal-header-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.modal-header .modal-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: var(--font-size-huge);
    margin: 0;
    padding: var(--spacing-xl);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    width: 100%;
    font-weight: var(--font-weight-bold);
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1000;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-circle);
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.modal-close:hover {
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

.modal-close::before {
    content: '×';
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
    line-height: 1;
}

.modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 6px 16px rgba(0,0,0,0.3);
}

/* Modal Body */
.modal-body {
    padding: var(--spacing-xl);
    overflow-y: auto;
    max-height: calc(90vh - 350px);
    color: var(--text-light);
    line-height: 1.8;
    font-size: var(--font-size-md);
}

.modal-body p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.modal-body h4 {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
}

.modal-body h5 {
    color: var(--text-color);
    font-size: var(--font-size-md);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-semibold);
}

.modal-body ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    list-style: disc;
}

.modal-body ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    list-style: decimal;
}

.modal-body li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.modal-body strong {
    color: var(--text-color);
    font-weight: var(--font-weight-semibold);
}

.modal-title {
    font-size: var(--font-size-xxl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-bold);
}

.modal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
}

.modal-info-item {
    text-align: center;
}

.modal-info-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-info-value {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.modal-description {
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    color: var(--text-light);
}

.modal-itinerary {
    margin-bottom: var(--spacing-xl);
}

.modal-itinerary h4 {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.modal-itinerary ul {
    list-style: none;
    padding: 0;
}

.modal-itinerary li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.modal-itinerary li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-itinerary li:last-child {
    border-bottom: none;
}

/* Modal Footer */
.modal-footer {
    padding: 25px var(--spacing-xl);
    border-top: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
}

.modal-price {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
}

.modal .btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-md);
}

.modal .btn:hover {
    background-color: #e08f04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Modal Loading */
.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: var(--border-radius-circle);
    animation: spin 1s linear infinite;
    margin-bottom: var(--spacing-lg);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-loading p {
    color: var(--text-light);
    font-size: var(--font-size-md);
    margin: 0;
}

/* City Modal Styles */
.modal-city-header {
    display: flex;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    align-items: flex-start;
    flex-wrap: wrap;
}

.modal-city-image {
    flex: 1;
    max-width: 450px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.modal-city-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.modal-city-image:hover img {
    transform: scale(1.05);
}

.modal-city-info {
    flex: 1;
    min-width: 300px;
}

.modal-city-info h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-huge);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.city-description {
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    color: #555;
    font-size: var(--font-size-md);
}

.city-description p {
    margin-bottom: 15px;
}

.city-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style: disc;
}

.city-description li {
    margin-bottom: 8px;
    color: #555;
}

.modal-city-details {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
    border-top: 2px solid var(--bg-light);
}

.modal-city-details h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-semibold);
}

.city-highlights {
    line-height: 1.8;
    color: #555;
    font-size: var(--font-size-md);
    background-color: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

/* Reviews Modal */
#reviewModal.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

#reviewModal .modal-content {
    background-color: white;
    width: 90%;
    max-width: 700px;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-huge);
    position: relative;
    box-shadow: var(--modal-shadow);
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    transform: none;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--text-lighter);
    cursor: pointer;
    transition: color var(--transition-normal);
    line-height: 1;
    z-index: 10;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-reviewer {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.modal-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-right: var(--spacing-lg);
}

.modal-details h3 {
    margin: 0;
    font-size: var(--font-size-xxl);
    color: var(--text-color);
}

.modal-date {
    font-size: var(--font-size-sm);
    color: var(--text-lighter);
    margin-top: 4px;
}

.modal-rating {
    color: var(--secondary-color);
    margin-top: 8px;
    font-size: var(--font-size-md);
}

.modal-tour {
    background-color: #f0f7ff;
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xl);
    display: inline-block;
}

.modal-full-review {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--text-light);
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* 禁止水平滚动 */
    width: 100vw; /* 确保宽度不超过视口 */
}

a {
    text-decoration: none;
    color: inherit;
}

/* 多语言支持样式 */
.lang-hidden {
    display: none !important;
}

ul {
    list-style: none;
}

.container {
    width: 100%; /* 改为100%宽度，避免固定宽度导致水平滚动 */
    max-width: 1200px; /* 保留最大宽度限制 */
    margin: 0 auto;
    padding: 0 15px; /* 减小内边距避免边缘溢出 */
}

/* 导航栏 - 核心修改：拆分两行布局 */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    width: 100%;
}

.navbar .container {
    display: flex;
    flex-direction: column; /* 改为列布局，实现两行展示 */
    gap: 10px; /* 两行之间的间距 */
}

/* 第一行：logo + 货币选择 + 语言切换 - 调整布局顺序 */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    width: auto; /* 恢复自动宽度 */
    max-width: none;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.logo a {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-slogan {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 右侧操作区：语言 + 货币 组合布局 */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 语言切换按钮 - 优化样式保持统一 */
.lang-switch {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 14px;
    display: inline-block !important; /* 确保按钮始终显示 */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.lang-btn:hover:not(.active) {
    background: var(--hover-gradient);
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* 语言切换下拉菜单样式 */
.lang-switch {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background-color: var(--dropdown-bg);
    min-width: 140px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px) scale(0.98);
    transition: all 0.25s ease-in-out;
    z-index: 9999;
    border: 1px solid var(--border-light);
}

.lang-switch:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-item {
    padding: 8px 18px;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-item-icon {
    font-size: 11px;
    color: #888;
}

.lang-item:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 22px;
}

.lang-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.lang-item.active .lang-item-icon {
    color: var(--primary-color);
}

/* 当前语言按钮样式 */
#currentLang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
}

.lang-icon {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.lang-switch:hover .lang-icon {
    transform: rotate(180deg);
}

/* 货币选择按钮样式 - 优化美观度 + 替换箭头图标 */
.currency-switch {
    display: flex;
    position: relative;
    flex-shrink: 0;
}

.currency-btn {
    padding: 6px 12px; /* 微调内边距更舒适 */
    border: 1px solid var(--border-light); /* 浅边框更精致 */
    border-radius: 6px; /* 更大圆角更现代 */
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 14px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px; /* 图标与文字间距 */
    background-color: white;
    color: var(--text-color);
    min-width: 80px; /* 加宽按钮更协调 */
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 轻微阴影提升质感 */
}

/* 货币下拉箭头图标样式 - 替换为向下三角 */
.currency-icon {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.currency-switch:hover .currency-icon {
    transform: rotate(180deg); /* hover时箭头旋转 */
}

.currency-btn:hover {
    background: var(--hover-gradient); /* 渐变背景更有层次 */
    border-color: var(--primary-color); /* hover时边框变主色 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.08); /* 增强阴影 */
    transform: translateY(-1px); /* 轻微上浮增加交互感 */
}

/* 货币下拉菜单样式 - 优化 */
.currency-dropdown {
    position: absolute;
    top: calc(100% + 4px); /* 增加间距避免粘连 */
    right: 0;
    background-color: var(--dropdown-bg);
    min-width: 140px; /* 加宽下拉菜单 */
    box-shadow: 0 6px 16px rgba(0,0,0,0.12); /* 更柔和的阴影 */
    border-radius: 8px; /* 更大圆角 */
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px) scale(0.98); /* 缩放+位移动画更丝滑 */
    transition: all 0.25s ease-in-out;
    z-index: 9999;
    border: 1px solid var(--border-light); /* 下拉菜单加边框 */
}

.currency-switch:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.currency-item {
    padding: 8px 18px; /* 加大内边距更易点击 */
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 下拉菜单项图标 - 保留货币符号 */
.currency-item-icon {
    font-size: 11px;
    color: #888;
}

.currency-item:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 22px; /* 更大偏移更明显 */
}

/* 选中的货币高亮 */
.currency-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.currency-item.active .currency-item-icon {
    color: var(--primary-color);
}

/* 第二行：导航链接 + 菜单按钮 */
.nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 导航链接样式 - 修复下拉菜单滚动问题 */
.nav-links {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center; /* 导航居中显示 */
    position: relative;
    /* 移除滚动相关样式 */
    flex-shrink: 0;
    flex-wrap: nowrap;
    overflow-x: visible;
    padding-bottom: 0;
}

/* 移除导航栏滚动条样式 */
.nav-links::-webkit-scrollbar {
    display: none;
}

/* 导航菜单项样式 */
.nav-item {
    position: relative;
    padding: 5px 0;
    /* 关键：添加hover保持触发状态 */
    display: inline-block;
}

.nav-item > a {
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
}

.nav-item > a:hover {
    color: var(--secondary-color);
}

/* 下拉菜单样式 - 核心修复 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dropdown-bg);
    min-width: 200px;
    box-shadow: var(--dropdown-shadow);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease-in-out;
    z-index: 999;
    /* 确保下拉菜单不被截断 */
    overflow: visible;
    max-height: none;
}

/* 鼠标悬浮时显示下拉菜单 */
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下拉菜单项样式 */
.dropdown-item {
    padding: 8px 15px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item a {
    font-size: 13px;
    display: block;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    padding-left: 20px;
}

.dropdown-item:hover a {
    color: var(--secondary-color);
}

/* 下拉菜单分割线 */
.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
}

/* 响应式导航（移动端） */
.menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
}



.cta-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e08f04;
}

/* 价格展示区域 - 预留货币切换渲染位置 */
.price-display-section {
    padding: 40px 0;
    background-color: var(--light-bg);
    width: 100%;
    position: relative;
}

/* 价格部分样式 */
.it_lowprice {
    background: white !important;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--card-shadow-sm);
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

/* 移除价格部分的蓝色渐变背景 */
.it_lowprice::before {
    display: none;
}

/* 无购物保证消息 - 已移除 */
/* .it_lowprice::after {
    content: '全程无购物 · 纯玩体验';
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    z-index: 1;
}

/* 移除Go Compare按钮 */
.go-compare {
    display: none !important;
}

/* 联系专家部分样式 */
.contact-expert-section {
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--card-shadow-sm);
    display: flex;
    margin-bottom: var(--spacing-lg);
}

.contact-expert-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.contact-expert-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-expert-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-expert-title {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-semibold);
    max-width: 300px;
    text-align: center;
}

.contact-expert-title div {
    font-size: var(--font-size-lg);
    line-height: 1.2;
}

.contact-expert-subtitle {
    font-size: var(--font-size-sm);
    color: white;
    margin: 0;
    max-width: 300px;
    text-align: center;
    white-space: nowrap;
}

.contact-expert-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-left: var(--spacing-lg);
}

.contact-expert-qr {
    margin-bottom: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-expert-qr img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.qr-label {
    color: white;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
    text-align: center;
    font-weight: var(--font-weight-medium);
    z-index: 1;
    position: relative;
    padding: 2px 8px;
    background-color: rgba(0,0,0,0.3);
    border-radius: var(--border-radius-sm);
}

.contact-expert-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: background-color var(--transition-normal);
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.contact-expert-btn:hover {
    background-color: #e08f04;
}

/* QR Code Modal Styles */
.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.qr-modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.qr-modal-content {
    background-color: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--modal-shadow);
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.qr-modal.show .qr-modal-content {
    transform: scale(1);
}

.qr-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    z-index: 10;
}

.qr-modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.qr-modal-body img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* 确保价格部分和联系部分对齐 */
.it_lowprice,
.contact-expert-section {
    width: 100%;
    max-width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .it_lowprice,
    .contact-expert-section {
        padding: var(--spacing-md);
    }
    
    .contact-expert-section {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-expert-avatar {
        margin-right: 0;
        margin-bottom: var(--spacing-md);
    }
    
    .contact-expert-actions {
        margin-left: 0;
        margin-top: var(--spacing-md);
        width: 100%;
    }
    
    .contact-expert-qr img {
        width: 100px;
        height: 100px;
    }
}

/* Tour Cards 布局 - 与china tours页面保持一致 */
.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

/* City Card 样式 - 为city-packages页面添加 */
.city-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.city-image {
    height: 200px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px;
    text-align: center;
}

.city-overlay h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.city-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.city-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

/* Tour Card 基本样式 - 与china tours页面保持一致 */
.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Tour Badges 样式 - 为small groups页面添加 */
.tour-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.badge-group {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(2px);
}

/* Tour Card Hover效果 - 与china tours页面保持一致 */
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Tour Image容器样式 - 与china tours页面保持一致 */
.tour-image {
    height: 200px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative; /* 确保子元素绝对定位相对于此容器 */
}

/* Tour Duration 样式 */
.tour-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

/* Tour Image背景样式 - 与china tours页面保持一致 */
.tour-image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tour Image样式 - 兼容现有图片 */
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tour Content内容区域 - 与china tours页面保持一致 */
.tour-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Tour Title样式 - 与china tours页面保持一致 */
.tour-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Tour Description样式 - 与china tours页面保持一致 */
.tour-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
    min-height: 60px;
    max-height: 120px;
    overflow: hidden;
}

/* Tour Meta元数据样式 - 与china tours页面保持一致 */
.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
    color: #888;
}

.tour-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}





/* 向后兼容 - 保留price-card样式但与tour-card保持一致 */
.price-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.price-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
}

/* 页脚 */
.footer {
    background-color: #222;
    color: white;
    padding: 30px 0 10px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 适应小屏幕 */
    gap: 25px;
    margin-bottom: 25px;
}

.footer-col {
    padding: 0 10px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    color: white;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    padding: 15px;
}

/* 搜索框样式 */
.search-section {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #235b7e;
}

@media (max-width: 768px) {
    .search-container {
        margin: 0 15px;
    }

    .search-input {
        font-size: 14px;
    }

    .search-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* 搜索结果页面样式 */
.search-results-page {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.search-results-title {
    font-size: var(--font-size-xxl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xxl);
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.search-results-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xxl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.search-result-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--card-shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 111, 151, 0.15);
    border-color: var(--primary-color);
}

.search-result-item h3 {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
}

.search-result-item p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    flex: 1;
    font-size: var(--font-size-md);
}

.view-tour-link {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-align: center;
    transition: background-color var(--transition-normal);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-tour-link:hover {
    background-color: #1e557a;
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

/* 加载状态样式 */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--card-shadow-md);
    margin: 0 auto;
    max-width: 600px;
}

.loading-state .loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--primary-color);
    border-radius: var(--border-radius-circle);
    animation: spin 1s linear infinite;
    margin-bottom: var(--spacing-xl);
}

.loading-state p {
    color: var(--text-color);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
}

/* 无结果状态样式 */
.no-results-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--card-shadow-md);
    margin: 0 auto;
    max-width: 600px;
}

.no-results-state i {
    font-size: 64px;
    color: var(--text-lighter);
    margin-bottom: var(--spacing-xl);
    opacity: 0.7;
}

.no-results-state h3 {
    font-size: var(--font-size-xxl);
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-bold);
}

.no-results-state p {
    color: var(--text-light);
    max-width: 450px;
    font-size: var(--font-size-md);
    line-height: 1.6;
}

/* 错误状态样式 */
.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--card-shadow-md);
    margin: 0 auto;
    max-width: 600px;
}

.error-state i {
    font-size: 64px;
    color: var(--error-color);
    margin-bottom: var(--spacing-xl);
    opacity: 0.8;
}

.error-state h3 {
    font-size: var(--font-size-xxl);
    color: var(--error-color);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-bold);
}

.error-state p {
    color: var(--text-light);
    max-width: 450px;
    font-size: var(--font-size-md);
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-results-page {
        padding: 30px 0;
    }
    
    .search-results-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-xl);
    }
    
    .search-results-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .search-result-item {
        padding: var(--spacing-md);
    }
    
    .search-result-item h3 {
        font-size: var(--font-size-md);
    }
    
    .view-tour-link {
        align-self: stretch;
    }
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .nav-links {
        gap: 10px;
    }
}

/* 表单样式 */
.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control.error {
    border-color: #dc3545;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0069d9;
}

.full-width {
    grid-column: 1 / -1;
}

/* 表单消息样式 */
.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* 自定义报价表单容器 */
.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* 联系表单容器 */
.contact-form {
    max-width: 600px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-bottom {
        justify-content: flex-end;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px); /* 调整下拉位置 */
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
        display: none;
        gap: 8px;
        justify-content: flex-start;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    /* 移动端下拉菜单适配 */
    .nav-item {
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
        background-color: transparent;
    }

    .nav-item:hover .dropdown {
        display: block;
    }

    .dropdown-item {
        padding: 5px 0;
    }

    .dropdown-item:hover {
        padding-left: 5px;
        background-color: transparent;
    }

    /* 移动端导航栏顶部布局调整 */
    .nav-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-right-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .logo {
        width: 100%;
        min-width: 0;
    }

    .logo a {
        font-size: clamp(0.7rem, 3vw, 16px);
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero h1 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .hero p {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .section-title h2 {
        font-size: 24px;
    }

    /* 移动端货币/语言按钮适配 */
    .currency-btn, .lang-btn {
        font-size: 12px;
        padding: 4px 8px;
        min-width: 70px;
        min-height: 36px;
    }
    
    .currency-dropdown {
        min-width: 120px;
    }
    
    .currency-item {
        font-size: 12px;
        padding: 6px 15px;
    }

    /* 移动端隐藏图标简化布局 */
    .currency-item-icon {
        display: none;
    }

    /* 移动端导航栏整体调整 */
    .navbar {
        padding: 8px 0;
    }

    .navbar .container {
        gap: 5px;
    }
    
    /* 移动端滚动时的导航栏样式 */
    .navbar.scrolled {
        /* 保持与正常状态相同的padding，避免高度变化 */
    }

    /* 移动端搜索框调整 */
    .search-container {
        margin: 0 15px;
    }

    .search-input {
        font-size: 14px;
    }

    .search-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (min-width: 769px) {
    .nav-top, .nav-bottom {
        width: 100%;
        margin-top: 0;
    }
    
    .navbar .container {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1200px) {
    .logo a {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 20px;
    }
}

/* Modal弹窗样式 - 解决modal内容出现在页脚下方的问题 */
.modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    background: rgba(0,0,0,0.7) !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

/* 兼容使用 'active' 类的弹窗显示 */
.modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.modal.active .modal-content {
    transform: scale(1);
}



.modal-header {
    position: relative;
    height: 250px;
    background-color: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* 底部对齐 */
    justify-content: flex-start; /* 左对齐 */
}

.modal-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.modal-header-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.modal-header #modalTitle {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    margin: 0;
    padding: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    width: 100%;
    font-weight: 700;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1000;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.modal-close:hover {
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

.modal-close::before {
    content: '×';
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1;
}

.modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 6px 16px rgba(0,0,0,0.3);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 350px);
}

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

.modal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.modal-info-item {
    text-align: center;
}

.modal-info-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.modal-description {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.modal-itinerary {
    margin-bottom: 25px;
}

.modal-itinerary h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.modal-itinerary ul {
    list-style: none;
    padding: 0;
}

.modal-itinerary li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.modal-itinerary li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-itinerary li:last-child {
    border-bottom: none;
}

.modal-footer {
    padding: 25px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
}

.modal-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.modal .btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.modal .btn:hover {
    background-color: #e08f04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Modal加载动画 */
.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-loading p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Modal响应式设计 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(95vh - 300px);
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-info {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .modal-footer {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .modal-info {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        height: 200px;
    }
}

/* Details页面专用样式 */
.details-page .main {
    max-width: 1300px;
    padding: 20px 40px;
    margin: 0 auto;
}

.details-page .mainContent {
    display: flex;
    flex-wrap: nowrap;
}

.details-page .left {
    width: 250px;
    flex: none;
}

.details-page .right {
    position: relative;
    flex: auto;
    padding-left: 40px;
}

.details-page .page_path {
    position: relative;
    padding: 12px 0;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
}

.details-page .page_path a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.details-page .page_path a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.details-page .tourTitle {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.details-page .tourIntroBox {
    margin-bottom: 30px;
}

.details-page .tourIntro {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.details-page .tourName {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.details-page .ti_item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.details-page .ti_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.details-page .stitle {
    font-weight: 600;
    color: var(--text-color);
    display: inline-block;
    min-width: 100px;
}

.details-page .adNoshopping {
    display: none;
}

/* 酒店星级显示 */
.details-page .hotelStar {
    display: inline-block;
    color: var(--secondary-color);
    margin-left: 5px;
}

.details-page .hotelStar img {
    display: none;
}

/* 默认显示4颗星 */
.details-page .hotelStar::after {
    content: "\f005\f005\f005\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 12px;
}

/* 5星级酒店显示5颗星 */
.details-page .hotelStar:has(img:nth-child(5))::after {
    content: "\f005\f005\f005\f005\f005";
}

/* 清空浮动 */
.details-page .clear {
    clear: both;
    padding: 0 !important;
    margin: 0 !important;
}

/* 间距类 */
.details-page .blank10 {
    height: 10px;
    overflow: hidden;
}

.details-page .blank20 {
    height: 20px;
    overflow: hidden;
}

/* 面包屑路径样式 */
.details-page .c_path {
    position: relative;
    padding: 12px 0;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
}

/* 响应式设计 - Details页面 */
@media screen and (max-width: 1200px) {
    .details-page .main {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .details-page .main {
        padding: 10px;
    }
    
    .details-page .right {
        padding-left: 10px;
    }
}

@media screen and (max-width: 768px) {
    .details-page .left {
        display: none;
    }
    
    .details-page .right {
        padding-left: 0;
    }
    
    .details-page .main {
        padding: 15px;
    }
    
    .details-page .tourTitle {
        font-size: 24px;
    }
    
    .details-page .tourName {
        font-size: 18px;
    }
    
    .details-page .tourIntro {
        padding: 15px;
    }
    
    /* 移动端垂直排列调整 */
    .details-page .tourIntroBox {
        display: flex;
        flex-direction: column;
    }
    
    /* 调整元素顺序，确保按照：标题部分 + map + Highlights + highlights images + 价格部分 */
    .details-page .tourIntro {
        order: 1;
    }
    
    .details-page .tourMap {
        order: 2;
        margin: 20px 0;
    }
    
    .details-page .round-box-2 {
        order: 3;
        margin: 20px 0;
    }
    
    .details-page .grayPlane {
        order: 4;
        margin: 20px 0;
    }
    
    .details-page .it_lowprice {
        order: 5;
        margin: 20px 0;
    }
    
    /* 调整元素宽度，确保在移动端正确显示 */
    .details-page .tourMap {
        max-width: 100%;
    }
    
    .details-page .tourMapBox {
        padding: 56.25% 0 0; /* 16:9 比例 */
    }
    
    .details-page .round-box-2 ul {
        padding: 15px;
    }
    
    .details-page .round-box-2 li {
        padding: 10px 0;
        padding-left: 20px;
    }
    
    .details-page .it_lowprice {
        padding: 15px;
    }
    
    .details-page .it_lowprice .price {
        font-size: 16px;
    }
    
    .details-page .it_lowprice a {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 576px) {
    .details-page .main {
        padding: 10px;
    }
    
    .details-page .tourTitle {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .details-page .tourName {
        font-size: 16px;
    }
    
    .details-page .tourIntro {
        padding: 12px;
    }
    
    .details-page .ti_item {
        padding: 8px 0;
    }
    
    .details-page .stitle {
        display: block;
        margin-bottom: 5px;
        min-width: auto;
    }
}

/* 价格显示区域 */
/* 隐藏原始广告但保留位置用于添加新保证文字 */
.details-page .adNoshopping {
    position: relative !important;
    margin-bottom: 15px !important;
}

.details-page .adNoshopping img {
    display: none !important;
}

.details-page .go-compare {
    display: none !important;
}

/* 使用 ::after 伪元素添加保证文字 */
.details-page .adNoshopping::after {
    content: '✓ WE GUARANTEE 100% NO SHOPPING STOPS!' !important;
    display: block !important;
    color: #d93025 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    padding: 10px 0 !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

/* 直接添加的保证文字元素样式（备用） */
.details-page .no-shopping-guarantee {
    display: block !important;
    color: #d93025 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    padding: 10px 0 !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

/* 价格部分 - 白色卡片样式，与联系板块区分 */
.details-page .it_lowprice {
    margin: 0 !important;
    padding: 20px 25px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 2px solid #e0e0e0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.details-page .it_lowprice .price {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    color: #333 !important;
}

.details-page .normalPrice {
    text-decoration: line-through !important;
    opacity: 0.6 !important;
    font-size: 15px !important;
    color: #999 !important;
}

.details-page .newPrice {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #F29F05 !important;
}

.details-page .it_lowprice a {
    display: inline-block !important;
    background: linear-gradient(135deg, #F29F05 0%, #e08e00 100%) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(242, 159, 5, 0.3) !important;
    white-space: nowrap !important;
    font-size: 15px !important;
}

.details-page .it_lowprice a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(242, 159, 5, 0.4) !important;
}

/* 联系板块 */
.details-page .contact-expert-section {
    margin: 30px 0;
    background: linear-gradient(135deg, #2A6F97 0%, #3a8fb8 100%);
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(42, 111, 151, 0.3);
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.details-page .contact-expert-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.details-page .contact-expert-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.details-page .contact-expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-page .contact-expert-content {
    flex: 1;
    color: white;
}

.details-page .contact-expert-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.details-page .contact-expert-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 400;
}

.details-page .contact-expert-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.details-page .contact-expert-btn {
    display: inline-block;
    background-color: #F29F05;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 159, 5, 0.3);
    white-space: nowrap;
}

.details-page .contact-expert-btn:hover {
    background-color: #e08e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 159, 5, 0.4);
}

.details-page .contact-expert-qr {
    flex-shrink: 0;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.details-page .contact-expert-qr img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

/* 响应式设计 */
@media screen and (max-width: 992px) {
    .details-page .it_lowprice {
        padding: 20px;
    }
    
    .details-page .newPrice {
        font-size: 24px;
    }
    
    .details-page .contact-expert-section {
        padding: 20px;
        gap: 20px;
    }
    
    .details-page .contact-expert-avatar {
        width: 80px;
        height: 80px;
    }
    
    .details-page .contact-expert-title {
        font-size: 20px;
    }
    
    .details-page .contact-expert-qr img {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 768px) {
    .details-page .contact-expert-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .details-page .contact-expert-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        order: 3; /* 确保在移动端也在内容后面 */
    }
    
    .details-page .contact-expert-btn {
        width: 100%;
        text-align: center;
        order: 2; /* 按钮在二维码下方 */
    }
    
    .details-page .contact-expert-qr {
        margin: 0 auto;
        order: 1; /* 二维码在上方 */
    }
}

/* 行程地图 */
.details-page .tourMap {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
}

.details-page .tourMapBox {
    position: relative;
    padding: 66.6667% 0 0;
    overflow: hidden;
}

.details-page .tourMapBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 标签页导航 */
.details-page .it_cata_Box {
    margin: 30px 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.details-page .it_cata_Box ul {
    display: flex;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    list-style: none;
}

.details-page .it_cata_Box li {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
}

.details-page .it_cata_Box li:hover {
    background-color: rgba(209, 73, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.details-page .it_cata_Box li:first-child {
    background-color: var(--primary-color);
    color: white;
}

/* 行程亮点 */
.details-page .round-box-2 {
    margin: 30px 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.details-page .round-box-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.details-page .round-box-2 ul {
    padding: 25px;
    margin: 0;
    list-style: none;
}

.details-page .round-box-2 li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
    color: var(--text-color);
}

.details-page .round-box-2 li:last-child {
    border-bottom: none;
}

.details-page .round-box-2 li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--success-color);
    font-weight: bold;
    font-size: 16px;
}

/* 照片轮播 */
.details-page .grayPlane {
    margin: 30px 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.details-page .tour-photo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.details-page .tour-photo-slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* 主内容区域 */
.details-page .tourMain {
    margin-top: 30px;
}

.details-page .tourLeft {
    width: 100%;
}

/* 行程信息盒子 */
.details-page .it_info_box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.details-page .v2018Merge {
    padding: 0;
}

/* 广告标识 - 不隐藏整个容器，只隐藏内部图片和链接 */
.details-page .adNoshopping {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.details-page .go-compare {
    display: none;
}

.details-page .go-compare:hover {
    text-decoration: underline;
}

/* 响应式设计 - 补充 */
@media screen and (max-width: 768px) {
    .details-page .adNoshopping::before {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .details-page .it_lowprice {
        flex-direction: column !important;
        padding: 15px 20px !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    .details-page .it_lowprice .price {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .details-page .it_lowprice a {
        width: 100% !important;
        text-align: center !important;
    }
    
    .details-page .it_cata_Box ul {
        flex-direction: column;
    }
    
    .details-page .it_cata_Box li {
        border-bottom: 1px solid #eee;
        border-right: none;
    }
    
    .details-page .it_cata_Box li:last-child {
        border-bottom: none;
    }
    
    .details-page .round-box-title {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .details-page .round-box-2 ul {
        padding: 20px;
    }
    
    .details-page .round-box-2 li {
        padding: 10px 0;
        padding-left: 20px;
    }
    
    .details-page .tourMap {
        margin: 20px 0;
    }
}

@media screen and (max-width: 576px) {
    .details-page .it_lowprice {
        padding: 12px;
        text-align: center;
    }
    
    .details-page .it_lowprice .price {
        display: block;
        margin-bottom: 10px;
    }
    
    .details-page .normalPrice,
    .details-page .newPrice {
        display: block;
        margin: 5px 0;
    }
    
    .details-page .it_cata_Box li {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .details-page .round-box-title {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .details-page .round-box-2 ul {
        padding: 15px;
    }
    
    .details-page .adNoshopping {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}



.section-content {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--secondary-color);
}

.info-card p {
    color: #555;
    line-height: 1.7;
}

/* =========================================
   Contact Us Page Styles
   ========================================= */
.contact-section {
    padding: 60px 0 80px;
    width: 100%;
}

.contact-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--light-bg);
}

.contact-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--light-bg);
    border: none;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   Custom Trip Section (China Tours / Small Groups)
   ========================================= */
.custom-trip-section {
    padding: 60px 0;
    background-color: #f0f5f9;
    text-align: center;
}

.custom-trip-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-trip-title {
    color: var(--primary-color);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 15px;
}

.custom-trip-desc {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   Useful Info Page Styles
   ========================================= */
.useful-info-section {
    padding: 60px 0 80px;
    background-color: var(--light-bg);
}

/* =========================================
   City Packages Page Styles
   ========================================= */
.price-display-section {
    padding: 40px 0 80px;
    background-color: var(--light-bg);
    width: 100%;
    position: relative;
}

/* =========================================
   Small Groups Page Styles
   ========================================= */
.custom-trip-section {
    padding: 60px 0 80px;
    background-color: #f0f5f9;
    text-align: center;
}

/* =========================================
   General Content Spacing
   ========================================= */
/* 确保所有section与footer之间有足够间距 */
section:last-of-type {
    margin-bottom: 20px;
}

/* 为页脚添加顶部间距 */
.footer {
    margin-top: 40px;
}

/* =========================================
   Mobile Responsive Adjustments
   ========================================= */
@media (max-width: 768px) {
    /* 调整section的padding，减少移动端的空白 */
    .price-display-section {
        padding: 30px 0 40px;
    }
    
    .custom-trip-section {
        padding: 40px 0 50px;
    }
    
    /* 调整footer的margin-top，减少底部空白 */
    .footer {
        margin-top: 20px;
    }
    
    /* 确保body宽度正确，避免水平滚动 */
    body {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* 调整容器padding，确保内容在移动端正确显示 */
    .container {
        padding: 0 15px;
    }
    
    /* 调整hero section的高度，减少空白 */
    .hero {
        height: 30vh;
        min-height: 200px;
    }
    
    /* 调整search section的padding，减少空白 */
    .search-section {
        padding: 15px 0;
    }
}

/* =========================================
   Reviews Page Styles
   ========================================= */
.reviews-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.review-category {
    margin-bottom: 50px;
}

.category-header {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.category-header h3 {
    color: var(--primary-color);
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.category-header h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--border-light);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

.review-date {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.review-rating {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 14px;
}

.review-tour {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.review-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    flex: 1;
}

/* Review Modal Styles - Specific for Reviews Page */
#reviewModal.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

#reviewModal .modal-content {
    background-color: white;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    transform: none; /* Override main modal style if needed */
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.modal-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}

.modal-details h3 {
    margin: 0;
    font-size: 20px;
    color: var(--text-color);
}

.modal-date {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

.modal-rating {
    color: var(--secondary-color);
    margin-top: 8px;
    font-size: 16px;
}

.modal-tour {
    background-color: #f0f7ff;
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
}

.modal-full-review {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    white-space: pre-line;
}

.review-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.review-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-photo:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .category-header h3 {
        font-size: 20px;
    }
    
    #reviewModal .modal-content {
        padding: 25px;
        width: 95%;
    }
    
    .modal-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* Additional styles for Info Cards footer */
.card-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #e08f04;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* See More Button Styles */
.hidden-card {
    display: none !important;
}

.see-more-container {
    text-align: center;
    margin: 30px 0;
}

.see-more-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.see-more-btn:hover {
    background-color: #235b7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* =========================================
   Custom Quote Form Styles
   ========================================= */
.custom-quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eff9 100%);
}

.quote-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Grid Layout for Form */
.grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    margin-bottom: 0; /* Reset since gap handles it */
}

.form-group.full-width,
.form-submit.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 111, 151, 0.1);
    background-color: white;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #e08f04;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 159, 5, 0.3);
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
    .quote-form-container {
        padding: 25px;
    }

    .grid-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width,
    .form-submit.full-width {
        grid-column: span 1;
    }
}


/* Custom Tours Modal Image Styles */
.modal-tour-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.modal-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Price Includes & Excludes Styles */
.price-includes-excludes {
    margin: 30px 0;
}

.price-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--dropdown-shadow);
    overflow: hidden;
}

.price-column {
    padding: 30px;
    background: #fff;
}

.price-column:first-child {
    border-right: 1px solid var(--border-light);
}

.price-column-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.price-icon {
    font-size: 24px;
    font-weight: bold;
}

.price-include-icon {
    color: #28a745;
}

.price-exclude-icon {
    color: #dc3545;
}

.price-column-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 15px;
}

.price-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Styles for Price Table */
@media (max-width: 768px) {
    .price-table {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .price-column:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .price-column {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .price-column {
        padding: 15px;
    }
    
    .price-column-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .price-column-header h3 {
        font-size: 18px;
    }
    
    .price-icon {
        font-size: 20px;
    }
    
    .price-list li {
        font-size: 14px;
        padding-left: 20px;
    }
}

/* Price Packages Section Optimization */
.details-page .it_price2018 {
    margin: 20px 0 30px;
    padding: 0;
    background: transparent;
}

.details-page .priceBox2018 {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--dropdown-shadow);
    overflow: hidden;
    padding: 20px;
}

.details-page .priceTitle2018 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    margin: -20px -20px 20px;
    text-align: center;
    border-radius: 7px 7px 0 0;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.details-page .priceTitle2018 div {
    font-size: 14px;
    font-weight: normal;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 5px;
}

.details-page .priceBody2018 {
    padding: 0;
}

.details-page .priceShow2018 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.details-page .priceCol2018 {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.details-page .priceCol2018 table {
    border: none !important;
}

.details-page .priceCol2018 th {
    background: #fff5eb !important;
    color: var(--secondary-color) !important;
    font-size: 16px !important;
    padding: 15px !important;
    border-bottom: 2px solid var(--secondary-color) !important;
}

.details-page .priceCol2018 td {
    text-align: center !important;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: bold;
}

.details-page .normalPrice {
    text-decoration: line-through;
    color: #999 !important;
    margin-right: 10px;
    font-size: 16px !important;
    font-weight: normal !important;
}

.details-page .newPrice {
    color: var(--secondary-color) !important;
    font-size: 24px !important;
    font-weight: bold !important;
}

.details-page .priceRemark2018 {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid var(--border-light);
}

.details-page .priceRemark2018 ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0 0;
    color: #555;
}

.details-page .priceRemark2018 li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive Styles for Price Packages */
@media (max-width: 768px) {
    .details-page .priceShow2018 {
        grid-template-columns: 1fr;
    }
    
    .details-page .priceCol2018 td {
        padding: 15px !important;
        font-size: 16px !important;
    }
    
    .details-page .newPrice {
        font-size: 20px !important;
    }
}

@media (max-width: 576px) {
    .details-page .priceBox2018 {
        padding: 15px;
    }
    
    .details-page .priceTitle2018 {
        padding: 15px;
        margin: -15px -15px 15px;
        font-size: 20px;
    }
    
    .details-page .priceTitle2018 div {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .details-page .priceCol2018 th {
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    .details-page .priceCol2018 td {
        padding: 12px !important;
        font-size: 15px !important;
    }
    
    .details-page .newPrice {
        font-size: 18px !important;
    }
    
    .details-page .priceRemark2018 {
        padding: 15px;
    }
}

/* Customer Reviews Styles */
.customer-reviews-container,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.review-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-text {
    flex: 1;
    margin-bottom: 20px;
}

.review-read-more {
    margin-top: auto;
    text-align: right;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    border: 3px solid white;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.05);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reviewer-avatar:hover img {
    transform: scale(1.1);
}

.reviewer-details {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.review-card:hover .reviewer-name {
    color: var(--primary-color);
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 8px 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.review-rating {
    color: #FFD700;
    font-size: 16px;
    margin: 8px 0 0;
    display: flex;
    gap: 3px;
    align-items: center;
}

.review-rating i {
    transition: transform 0.2s ease;
}

.review-card:hover .review-rating i {
    transform: scale(1.1);
}

.review-tour-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
    background: rgba(var(--primary-color-rgb), 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

.review-card:hover .review-tour-name {
    background: rgba(var(--primary-color-rgb), 0.12);
    transform: translateX(5px);
}

.review-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    position: relative;
    padding: 0 20px;
    letter-spacing: -0.01em;
}

.review-content::before,
.review-content::after {
    content: '"';
    font-size: 40px;
    color: rgba(var(--primary-color-rgb), 0.2);
    font-family: Georgia, serif;
    position: absolute;
    line-height: 1;
}

.review-content::before {
    left: 0;
    top: 5px;
}

.review-content::after {
    right: 0;
    bottom: -10px;
}

/* Empty Reviews State */
.no-reviews {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px dashed rgba(var(--primary-color-rgb), 0.2);
    border-radius: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.no-reviews:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.no-reviews i {
    font-size: 56px;
    margin-bottom: 20px;
    color: rgba(var(--primary-color-rgb), 0.3);
    transition: transform 0.3s ease;
}

.no-reviews:hover i {
    transform: scale(1.1);
}

.no-reviews h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 20px;
}

/* Responsive Styles for Customer Reviews */
@media (max-width: 992px) {
    .customer-reviews-container,
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
    }
    
    .review-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .customer-reviews-container,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .review-card {
        padding: 22px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reviewer-info {
        width: 100%;
        gap: 12px;
    }
    
    .review-content {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .review-tour-name {
        font-size: 13px;
        padding: 7px 12px;
        margin-bottom: 14px;
    }
    
    .reviewer-avatar {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .review-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .review-header {
        padding-bottom: 15px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .reviewer-name {
        font-size: 16px;
    }
    
    .review-content {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 12px;
    }
    
    .review-content::before,
    .review-content::after {
        font-size: 30px;
    }
    
    .review-date {
        font-size: 12px;
    }
    
    .review-tour-name {
        padding: 6px 10px;
        font-size: 12px;
        margin-bottom: 12px;
    }
}

/* Inquire Form Styles */
.inquire-form-section {
    padding: 60px 0;
    background-color: var(--light-bg);
    margin-top: 40px;
}

.inquire-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 111, 151, 0.1);
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    min-width: 200px;
}

.submit-btn:hover {
    background-color: #e08f04;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 159, 5, 0.3);
}

/* Responsive Styles for Inquire Form */
@media (max-width: 768px) {
    .inquire-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .submit-btn {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .inquire-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

/* Footer Text Color Fix */
.footer {
    background-color: #222;
    color: white !important;
}
.footer-col h3,
.footer-col ul li a,
.footer-col ul li,
.footer-col .social-links a,
.footer .copyright p {
    color: white !important;
}

/* Tour Highlights */
.tour_highlights {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour_highlights_header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.tour_highlights_header i {
    color: #28a745;
    margin-right: 10px;
    font-size: 20px;
}

.tour_highlights_header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.tour_highlights_list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.tour_highlights_list li {
    position: relative;
    padding: 8px 0 8px 25px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.tour_highlights_list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #28a745;
    font-size: 14px;
}

.best_travel_time {
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    color: #666;
    font-size: 14px;
}

.best_travel_time strong {
    color: #333;
}

/* Tour Highlights Images */
.tour_highlights_images {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tour_highlights_images h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.tour_highlights_images_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.tour_highlights_image_item {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour_highlights_image_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tour_highlights_image_item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour_highlights_image_item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tour_highlights_images_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour_highlights_image_item img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .tour_highlights_images_grid {
        grid-template-columns: 1fr;
    }
    
    .tour_highlights_image_item img {
        height: 180px;
    }
}

/* Tour Highlights Map Section */
.tour_highlights_images_map_section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tour_highlights_image_map_item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour_highlights_image_map_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tour_highlights_image_map_item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour_highlights_image_map_item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for map section */
@media (max-width: 768px) {
    .tour_highlights_image_map_item img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .tour_highlights_image_map_item img {
        height: 200px;
    }
}

/* Image Modal for zooming */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.image-modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Make images clickable */
.tour_highlights_image_item img, .tourMapBox img {
    cursor: pointer;
}

.tour_highlights_image_item img:hover, .tourMapBox img:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col h3 {
    color: white !important;
}

.footer-col h3::after {
    background-color: var(--secondary-color) !important;
}

.footer-col ul li a:hover {
    color: var(--secondary-color) !important;
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.8) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

