/* 基础变量和重置 */
:root {
    --color-black: #111111;
    --color-dark-gray: #333333;
    --color-gray: #666666;
    --color-light-gray: #f5f5f7;
    --color-white: #ffffff;
    --color-accent: #b89f81;
    /* 浅棕色/大地色系 */
    --font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 12px;

    /* 留言模块全局设计变量 */
    --glass-bg: rgba(255, 255, 255, 0.5);
    /* 玻璃态背景 */
    --glass-bg-strong: rgba(255, 255, 255, 0.7);
    /* 弹窗等强背景 */
    --glass-border: rgba(255, 255, 255, 0.55);
    /* 玻璃态边框 */
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.16);
    /* 玻璃态阴影 */
    --glass-blur: blur(16px) saturate(160%);
    /* 模糊与饱和度效果 */
    --ios-blue: #0a84ff;
    /* 苹果蓝 */
    --ios-green: #34c759;
    /* 苹果绿 */
}

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

body {
    font-family: var(--font-family);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 按钮通用样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
}

.btn-rounded {
    border-radius: 50px;
}

.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* 顶部信息栏 */
.top-bar {
    background-color: var(--color-black);
    color: var(--color-light-gray);
    font-size: 12px;
    padding: 10px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--color-accent);
    /* 小喇叭使用强调色（浅棕色）点缀 */
    font-size: 14px;
}

.top-bar-left span {
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color var(--transition-speed);
    position: relative;
}

.contact-item:hover {
    color: var(--color-accent);
}

.contact-item i {
    font-size: 14px;
}

/* Tooltip (悬浮气泡) */
.tooltip-wrapper .tooltip-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    pointer-events: none;
    margin-top: 10px;
    /* 给小三角形留空间 */
}

/* 气泡小三角形 */
.tooltip-wrapper .tooltip-content::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent var(--color-white) transparent;
}

.tooltip-wrapper:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.qr-tooltip {
    padding: 10px !important;
}

.qr-tooltip img {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 4px;
}

/* 导航栏 */
.navbar {
    padding: 24px 0;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    z-index: 1000;
    /* 确保固定在最上层 */
    position: relative;
    /* 确保未固定时，绝对定位的菜单也能参照它 */
}

/* 固定导航栏的类 */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    /* 滚动后稍微缩小高度 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 移动端导航栏固定状态特殊处理，防止菜单被遮挡 */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        /* 默认相对定位，确保子元素的 absolute 能正常定位 */
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    flex-shrink: 0;
    /* 防止 logo 被挤压 */
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
    /* 缩小间距，避免溢出 */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray);
    white-space: nowrap;
    /* 避免文字折行 */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-black);
}

/* 移动端菜单按钮默认隐藏 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-black);
    cursor: pointer;
}

/* 主体内容 */
.main-content {
    padding-top: 40px;
    /* 增加初始的 padding，确保与导航栏有合适间距 */
    padding-bottom: 40px;
}

/* 主标题区与探索入口 */
.hero-section {
    margin-bottom: 0;
    /* hero-section 和 features-section 之间无额外间距 */
}

.hero-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* 改为底部对齐 */
    margin-bottom: 40px;
}

.hero-title-col {
    flex: 1;
}

.main-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.hero-desc-col {
    flex: 1;
    max-width: 400px;
    padding-bottom: 8px;
    /* 增加一点底部内边距，使其在视觉上与左侧大标题基线对齐更协调 */
}

.subtitle {
    font-size: 20px;
    color: var(--color-gray);
    font-weight: 400;
    line-height: 1.6;
}

.accent-text {
    color: var(--color-accent);
    font-style: italic;
}

/* Banner 图片 */
.hero-banner {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.hero-banner:hover img {
    transform: scale(1.03);
}

/* 品牌优势展示 */
.features-section {
    padding: 0 0 80px;
    /* 统一所有模块的底部间距为 80px */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 10px;
    background-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    font-size: 24px;
    color: var(--color-accent);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-black);
}

.feature-desc {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* 旅行卡片区域 */
.trips-section {
    padding: 80px 0 80px;
    /* 统一所有模块的上下间距为 80px */
}

/* 专业服務團隊模塊 */
.team-section {
    padding: 80px 0 80px;
    /* 统一所有模块的上下间距为 80px */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 正方形比例 */
    overflow: hidden;
}

.team-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 图片上的角色标签 */
.team-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: 500;
    margin-bottom: 12px;
}

/* 技能徽章 */
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-badge {
    font-size: 12px;
    padding: 4px 12px;
    background-color: var(--color-light-gray);
    color: var(--color-dark-gray);
    border-radius: 12px;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.skill-badge:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.team-view-all {
    text-align: center;
}

.team-view-all .btn {
    padding: 14px 36px;
    font-size: 16px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-gray);
}

/* 旅行卡片网格 */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* 卡片样式 */
.trip-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 比例 */
    overflow: hidden;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trip-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.location-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-black);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    margin-bottom: 24px;
}

.card-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.country {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray);
}

.price-tag {
    display: inline-block;
    background-color: var(--color-light-gray);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-light-gray);
    padding-top: 20px;
}

.duration {
    font-size: 13px;
    color: var(--color-gray);
    font-weight: 500;
}

.link-learn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.link-learn-more:hover {
    color: var(--color-accent);
}

/* 游客评价 */
.reviews-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.review-card {
    background: var(--color-light-gray);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-speed);
}

.review-header {
    margin-bottom: 20px;
}

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

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

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

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-black);
}

.review-stars {
    color: #FFC107;
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    font-size: 12px;
    color: var(--color-accent);
    background-color: rgba(184, 159, 129, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }

    .features-grid {
        gap: 20px;
    }

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

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

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content,
    .about-stats-container {
        width: 100%;
    }

    .main-title {
        font-size: 56px;
    }

    .hero-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-desc-col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* 移动端导航栏折叠菜单 */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 1001;
    }

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

    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .team-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-title {
        font-size: 40px;
    }

    .hero-banner {
        height: 250px;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }
}

/* 关于我们模块 */
.about-section {
    padding: 80px 0 0;
    /* 只保留顶部间距，底部由统一规范控制 */
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-company {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.about-desc {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature-item i {
    font-size: 24px;
    color: var(--color-accent);
    margin-top: 4px;
}

.about-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 5px;
}

.about-feature-item p {
    font-size: 14px;
    color: var(--color-gray);
}

.about-stats-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-wrapper {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: var(--color-light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: 500;
}

/* 在线留言表单 */
.form-section {
    padding: 80px 0;
    background-color: var(--color-light-gray);
    margin-top: 80px;
    /* 增加与上方游客评价模块的间距 */
    border-radius: var(--border-radius);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-container .section-title {
    margin-bottom: 12px;
}

.form-container .section-subtitle {
    margin-bottom: 40px;
    /* 增加大标题和留言板(表单)之间的间距 */
}

.contact-form {
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
}

.form-group label .required {
    color: #ff3b30;
    /* 必填星号苹果红 */
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.58);
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(184, 159, 129, 0.8);
    box-shadow: 0 0 0 3px rgba(184, 159, 129, 0.2);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400 !important;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(148, 163, 184, 0.58);
    border-radius: 12px;
    transition: all 0.3s ease;
    line-height: 1;
    /* 修正文字和圆圈的垂直居中 */
}

.radio-label:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* 当单选框被选中时 */
.radio-label:has(input[type="radio"]:checked) {
    border-color: rgba(184, 159, 129, 0.8);
    box-shadow: 0 0 0 3px rgba(184, 159, 129, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
}

.radio-label input[type="radio"] {
    accent-color: var(--color-accent);
    width: 16px;
    height: 16px;
    margin: 0;
    /* 移除默认 margin 以保证居中 */
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px) saturate(170%);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(184, 159, 129, 0.95), rgba(200, 179, 154, 0.85));
    color: #fff;
}

.btn-block:hover {
    background: linear-gradient(145deg, rgba(166, 138, 104, 0.95), rgba(184, 159, 129, 0.85));
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 覆盖 intl-tel-input 的宽度 */
.iti {
    width: 100%;
}

/* 成功弹窗 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: modalOverlayFadeIn 0.3s ease;
}

@keyframes modalOverlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.18);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* 针对带有表单的弹窗，可以做一些特殊处理 */
.form-modal-content {
    max-width: 500px;
    text-align: left;
}

.form-modal-content .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.form-modal-content .section-subtitle {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.modal-form {
    padding: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-gray);
    cursor: pointer;
    transition: color 0.3s;
}

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

@keyframes modalFadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--color-gray);
    margin-bottom: 24px;
}

/* 页脚 */
.footer {
    background-color: var(--color-black);
    /* 改为黑色背景 */
    color: var(--color-light-gray);
    /* 默认文字颜色改为浅灰 */
    padding: 80px 0 40px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: var(--color-white);
    /* Logo 改为白色 */
}

.brand-desc {
    color: #999999;
    /* 稍微深一点的灰色 */
    font-size: 15px;
    line-height: 1.6;
}

.footer-links-group {
    display: flex;
    gap: 80px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-white);
    /* 标题改为白色 */
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* 快速导舄和联络方式列的链接样式 */
.footer-col:nth-child(1) ul li a,
.footer-col:nth-child(2) ul li a,
.footer-col:nth-child(2) ul li {
    color: #999999;
    /* 统一为浅灰色 */
    font-size: 14px;
    transition: color var(--transition-speed);
}

.footer-col:nth-child(1) ul li a:hover,
.footer-col:nth-child(2) ul li a:hover {
    color: var(--color-accent);
    /* hover 保持强调色 */
}

.footer-col:nth-child(2) ul li strong {
    color: #999999;
    /* 标签文字也使用浅灰色 */
    font-weight: 600;
}

.footer-col:nth-child(2) ul li i {
    color: var(--color-accent);
    /* 图标使用强调色 */
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* 边框改为半透明白色 */
    color: #999999;
    font-size: 14px;
    text-align: center;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #999999;
    transition: color var(--transition-speed);
}

.legal-links a:hover {
    color: var(--color-white);
    /* hover 时变白 */
}

/* 侧边悬浮操作栏 */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
}

.action-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
}

.action-btn-wrapper {
    position: relative;
}

/* 侧边栏气泡提示 */
.action-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

/* 气泡右侧小三角形 */
.action-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-white);
}

.action-btn-wrapper:hover .action-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* 回到顶部按钮（默认隐藏，滚动后通过JS显示） */
.back-to-top {
    opacity: 0;
    visibility: hidden;
    background-color: var(--color-accent);
    /* 回到顶部使用强调色 */
    color: var(--color-white);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-black);
}

/* 游客评价模塊 */
.reviews-section {
    padding: 80px 0 80px;
    /* 统一所有模块的上下间距为 80px */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.reviewer-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    /* 金黄色星星 */
    font-size: 12px;
}

.review-date {
    font-size: 13px;
    color: var(--color-gray);
    font-weight: 500;
}

.review-content {
    flex-grow: 1;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-dark-gray);
    margin-bottom: 16px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    font-size: 12px;
    padding: 4px 10px;
    background-color: #fef3e0;
    /* 浅橙色背景 */
    color: #b89f81;
    /* 棕色文字 */
    border-radius: 8px;
    font-weight: 500;
}

.reviews-view-all {
    text-align: center;
}

.reviews-view-all .btn {
    padding: 14px 36px;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 48px;
    }

    .footer-links-group {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .footer-links-group {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Extracted Inline Styles */
.extracted-style-1 {
    margin-top: 20px;
    margin-bottom: 40px;
}

.extracted-style-2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.extracted-style-3 {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.extracted-style-4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.extracted-style-5 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.extracted-style-6 {
    font-size: 1.1rem;
    opacity: 0.9;
}

.extracted-style-7 {
    padding-bottom: 0;
}

.extracted-style-8 {
    gap: 24px;
}

.extracted-style-9 {
    padding-top: 75%;
}

.extracted-style-10 {
    text-align: left;
    padding: 20px;
}

.extracted-style-11 {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 66px;
}

.extracted-style-12 {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.extracted-style-13 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.extracted-style-14 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extracted-style-15 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.extracted-style-16 {
    color: #fbbf24;
    font-size: 10px;
}

.extracted-style-17 {
    padding-top: 75%;
    background-color: #000;
}

.extracted-style-18 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extracted-style-19 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.extracted-style-20 {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extracted-style-21 {
    background: var(--glass-bg, #fff);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.extracted-style-22 {
    width: 50px;
    height: 50px;
    background: #f8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #b89f81);
    font-size: 24px;
}

.extracted-style-23 {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.extracted-style-24 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.extracted-style-25 {
    background: var(--glass-bg, #fff);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.extracted-style-26 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.extracted-style-27 {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.extracted-style-28 {
    width: 50px;
    height: 50px;
    background: #f8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #b89f81);
    font-size: 24px;
    flex-shrink: 0;
}

.extracted-style-29 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.extracted-style-30 {
    flex: 1.5;
    min-width: 320px;
}

.extracted-style-31 {
    margin: 0;
    padding: 0;
}

.extracted-style-32 {
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 16px;
    background: var(--glass-bg, #fff);
}

.extracted-style-33 {
    text-align: left;
}

.extracted-style-34 {
    text-align: left;
    margin-bottom: 30px;
}

.extracted-style-35 {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--glass-bg, #fff);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.extracted-style-36 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.extracted-style-37 {
    flex: 1;
    min-width: 300px;
}

.extracted-style-38 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 4px solid #f8f5f0;
}

.extracted-style-39 {
    width: 100%;
    height: auto;
    display: block;
}

.extracted-style-40 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.extracted-style-41 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.extracted-style-42 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.extracted-style-43 {
    margin-bottom: 60px;
}

.extracted-style-44 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.extracted-style-45 {
    background: var(--glass-bg, #fff);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--color-primary, #b89f81);
}

.extracted-style-46 {
    width: 64px;
    height: 64px;
    background: #f8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #b89f81);
    font-size: 28px;
    margin: 0 auto 20px;
}

.extracted-style-47 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.extracted-style-48 {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.extracted-style-49 {
    background: var(--glass-bg, #fff);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid #333;
}

.extracted-style-50 {
    width: 64px;
    height: 64px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 28px;
    margin: 0 auto 20px;
}

.extracted-style-51 {
    text-align: center;
    margin-bottom: 40px;
}

.extracted-style-52 {
    color: var(--color-primary, #b89f81);
    font-size: 32px;
    margin-bottom: 10px;
}

.extracted-style-53 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.extracted-style-54 {
    font-size: 16px;
    color: #666;
}

.extracted-style-55 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.extracted-style-56 {
    background: var(--glass-bg, #fff);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.extracted-style-57 {
    color: var(--color-primary, #b89f81);
    font-size: 28px;
    margin-bottom: 16px;
}

.extracted-style-58 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.extracted-style-59 {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.extracted-style-60 {
    color: #444;
    line-height: 1.8;
}

.extracted-style-61 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.extracted-style-62 {
    margin-bottom: 20px;
}

.extracted-style-63 {
    margin-bottom: 30px;
}

.extracted-style-64 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.extracted-style-65 {
    margin-bottom: 10px;
}

.extracted-style-66 {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.extracted-style-67 {
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
}

.extracted-style-68 {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style-type: disc;
}

.extracted-style-69 {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style-type: none;
    background: #f8f5f0;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary, #b89f81);
}

.extracted-style-70 {
    margin-bottom: 8px;
}

.guide-img {
    width: 100%;
    height: auto;
    display: block;

}

.guide-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
}

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

.img-original-ratio {
    padding-top: 0 !important;
}

.img-original-ratio img {
    position: static !important;
    height: auto !important;
}

/* Language Switcher */
.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    padding: 0;
    transition: color 0.3s;
}

.lang-btn:hover {
    color: var(--color-black);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 120px;
    display: none;
    flex-direction: column;
    z-index: 100;
    margin-top: 15px;
}

.lang-switch:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    padding: 10px 16px;
    color: #333 !important;
    text-align: center;
    transition: background 0.3s;
    font-size: 14px;
}

.lang-dropdown a:hover {
    background: #f8f5f0;
    color: var(--color-primary) !important;
}

/* Language Capsule */
.nav-container {
    position: relative;
}

@media (min-width: 769px) {
    .lang-capsule {
        position: absolute;
        right: 15px;
    }
}

.lang-capsule {
    display: inline-flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 20px;
    padding: 4px;
    margin-left: 15px;
}

.lang-capsule a {
    padding: 6px 14px;
    font-size: 13px;
    color: #666 !important;
    border-radius: 16px;
    transition: all 0.3s;
    text-decoration: none;
    line-height: 1;
}

.lang-capsule a.active {
    background: #fff;
    color: var(--color-primary, #b89f81) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.lang-capsule a:hover:not(.active) {
    color: var(--color-primary, #b89f81) !important;
}

/* 联系我们页面移动端在线留言模块内边距缩小 */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px !important;
        border-radius: 16px !important;
    }
    .extracted-style-32 {
        padding: 20px !important;
    }

    .contact-form {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .extracted-style-31 {
        padding-top: 20px !important;
    }
}