/* ==================== 动画关键帧 ==================== */

/* 淡入上浮 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 淡入左滑 */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 淡入右滑 */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 缩放淡入 */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 交错淡入 */
@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 图片视差 */
@keyframes parallaxZoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* 浮动效果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 脉冲光晕 */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(133, 45, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(133, 45, 136, 0.2);
    }
}

/* 旋转 */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 闪烁 */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ==================== 滚动动画类 ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* 交错动画 */
.animate-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-stagger.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 延迟类 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==================== 苏州介绍区域 - 大图+双语介绍 ==================== */
.suzhou-about-section {
    margin-bottom: 4rem;
}

/* 大图横幅 */
.suzhou-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.suzhou-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: parallaxZoom 1.5s ease-out forwards;
}

.suzhou-banner:hover img {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.suzhou-banner-overlay {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.suzhou-banner-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.suzhou-banner-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.suzhou-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 4rem;
    background: linear-gradient(to top, rgba(133, 45, 136, 0.95) 0%, rgba(133, 45, 136, 0.7) 50%, transparent 100%);
    color: white;
}

.suzhou-banner-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.suzhou-banner-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* 双语介绍区域 - 浅灰背景 */
.suzhou-intro-bilingual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #f8f9fa;
    padding: 3rem 4rem;
    border-radius: 0 0 16px 16px;
    color: white;
}

.suzhou-intro-cn p,
.suzhou-intro-en p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.suzhou-intro-cn p {
    color: #333;
}

.suzhou-intro-en p {
    color: #666;
}

/* 指标区域 */
.suzhou-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0 1.5rem 0;
}

.suzhou-stat-item {
    background: white;
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.suzhou-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(133, 45, 136, 0.15);
}

.suzhou-stat-item:hover .suzhou-stat-number {
    animation: pulse 1s ease infinite;
}

.suzhou-stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #852D88;
}

.suzhou-stat-unit {
    font-size: 0.85rem;
    color: #852D88;
    font-weight: 500;
}

.suzhou-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
}

/* 深入了解按钮 */
.suzhou-intro-btn {
    display: inline-block;
    background: #852D88;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.suzhou-intro-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.suzhou-intro-btn:hover {
    background: #6a2370;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(133, 45, 136, 0.4);
}

.suzhou-intro-btn:hover::before {
    left: 100%;
}



/* 响应式 */
@media screen and (max-width: 1024px) {
    .suzhou-banner {
        height: 300px;
    }
    
    .suzhou-banner-overlay {
        padding: 2rem;
    }
    
    .suzhou-banner-title {
        font-size: 2rem;
    }
    
    .suzhou-intro-bilingual {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 768px) {
    .suzhou-banner {
        height: 220px;
    }
    
    .suzhou-banner-title {
        font-size: 1.5rem;
    }
}

.intro-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    padding: 2rem;
}

.intro-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-title {
    font-size: 2.25rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.intro-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.25rem;
}

.intro-images {
    position: relative;
}

.intro-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(133, 45, 136, 0.15);
}

.intro-image-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.intro-image-secondary {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.intro-image-secondary img {
    width: 48%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(133, 45, 136, 0.1);
}

/* 场馆介绍 */
.venues-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    color: #283B89;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

/* 主场地 - 大卡片 hero 风格 */
.venue-main {
    margin-bottom: 2rem;
}

.venue-card-featured {
    display: grid !important;
    grid-template-columns: 1fr;
    max-width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
}

.venue-card-featured .venue-image {
    height: 100%;
    min-height: 380px;
    position: absolute;
    inset: 0;
}

.venue-card-featured .venue-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.8s ease;
}

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

.venue-card-featured .venue-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 59, 137, 0.45) 0%, rgba(133, 45, 136, 0.25) 50%, rgba(45, 153, 211, 0.2) 100%);
}

.venue-card-featured .venue-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 3rem;
    color: white;
}

.venue-card-featured .venue-name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.venue-card-featured .venue-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.venue-card-featured .venue-specs {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); */
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

.venue-card-featured .venue-spec-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0;
}

.venue-card-featured .spec-label {
    color: rgba(255, 255, 255, 0.7);
}

.venue-card-featured .spec-value {
    color: white;
    font-weight: 600;
}

.venue-card-featured .venue-note {
    border-top-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
}

.venue-card-featured .venue-capacity {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 0.9rem;
}

/* 其他场地 - 横向卡片，图片占比较大 */
.venues-grid-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.venues-grid-secondary .venue-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
}

.venues-grid-secondary .venue-image {
    height: 100%;
    min-height: 240px;
}

.venues-grid-secondary .venue-info {
    padding: 1.5rem;
}

.venue-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #852D88, #2D99D3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.venue-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(133, 45, 136, 0.2);
}

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

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

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-capacity {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.venue-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #283B89;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.venue-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* 场馆规格列表 */
.venue-specs {
    margin-bottom: 1rem;
    flex: 1;
}

.venue-spec-item {
    display: flex;
    align-items: flex-start;
    padding: 0.4rem 0;
    /* border-bottom: 1px dashed #eee; */
    font-size: 0.8rem;
    line-height: 1.5;
}

.venue-spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #888;
    min-width: 70px;
    flex-shrink: 0;
}

.spec-value {
    color: #333;
    font-weight: 500;
}

.venue-note {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
    font-style: italic;
    margin-top: auto;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
    .venue-card-featured {
        min-height: 320px;
    }
    
    .venue-card-featured .venue-image {
        min-height: 320px;
    }

    .venue-card-featured .venue-info {
        padding: 2rem;
    }

    .venues-grid-secondary .venue-card {
        grid-template-columns: 1fr;
    }

    .venues-grid-secondary .venue-image {
        min-height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .venue-card-featured {
        min-height: 280px;
    }
    
    .venue-card-featured .venue-image {
        min-height: 280px;
    }

    .venue-card-featured .venue-info {
        padding: 1.5rem;
    }

    .venue-card-featured .venue-name {
        font-size: 1.2rem;
    }
    
    .venues-grid-secondary {
        grid-template-columns: 1fr;
    }

    .venues-grid-secondary .venue-card {
        grid-template-columns: 1fr;
    }
}

/* 文旅信息 */
.destinations-section {
    margin-bottom: 4rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 2.25rem;
    border: 2px solid var(--primary-purple);
    border-radius: 30px;
    background: white;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.category-tab.active, .category-tab:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(133, 45, 136, 0.3);
}

.category-tab.active::before, .category-tab:hover::before {
    width: 300%;
    height: 300%;
}

.category-tab.active {
    animation: pulse 2s ease infinite;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 特别推荐样式 - 单条数据展示 */
.destination-featured-link {
    text-decoration: none;
    color: inherit;
    display: block;
    grid-column: 1 / -1;
}

.destination-featured {
    display: grid;
    grid-template-columns: 45% 55%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-featured-link:hover .destination-featured {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(133, 45, 136, 0.15);
}

.destination-featured-image {
    position: relative;
    overflow: hidden;
}

.destination-featured-image img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-featured-link:hover .destination-featured-image img {
    transform: scale(1.05);
}

.destination-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #852D88 0%, #DD137E 100%);
    color: white;
}

.featured-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-desc {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.featured-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-purple);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-featured-link:hover .featured-btn {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    .destination-featured {
        grid-template-columns: 1fr;
    }
    
    .destination-featured-image {
        height: 200px;
    }
    
    .destination-featured-content {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.4rem;
    }
}

.destination-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    min-width: 0;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.destination-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #852D88, #2D99D3, #852D88);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.destination-card-link:hover .destination-card {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(133, 45, 136, 0.2);
}

.destination-card-link:hover .destination-card::after {
    transform: scaleX(1);
    animation: shimmer 2s linear infinite;
}

.destination-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card-link:hover .destination-image {
    transform: scale(1.12);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(133, 45, 136, 0.8), rgba(45, 153, 211, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-card-link:hover .destination-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-purple);
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destination-card-link:hover .overlay-icon {
    transform: scale(1) rotate(0deg);
/* } */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.destination-content {
    padding: 1.5rem;
}

.destination-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tag {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.3rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.destination-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #283B89;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-location {
    font-size: 0.85rem;
    color: #999;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-views {
    font-size: 0.85rem;
    color: #999;
}













/* 出行小贴士 */
.tips-section {
    margin-bottom: 4rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #852D88, #2D99D3);
    transition: height 0.4s ease;
}

.tip-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(133, 45, 136, 0.15);
}

.tip-card:hover::before {
    height: 4px;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.tip-card:hover .tip-icon {
    transform: scale(1.2) rotate(10deg);
    animation: float 2s ease infinite;
}

.tip-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #283B89;
    margin-bottom: 0.5rem;
}

.tip-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* CTA */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 35px rgba(133, 45, 136, 0.3);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 1rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venues-grid, .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 280px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .intro-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .venues-grid, .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        flex-direction: column;
    }
    
    .experience-image {
        width: 100%;
        height: 200px;
    }
    
    .experience-content {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-image-secondary {
        flex-direction: column;
    }
    
    .intro-image-secondary img {
        width: 100%;
    }
    
    .category-tab {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .intro-text {
        padding: 0;
    }
}

/* ==================== 住宿安排 ==================== */
.accommodation-section {
    margin-bottom: 4rem;
}

.accommodation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #852D88, #2D99D3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.accommodation-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(133, 45, 136, 0.2);
}

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

.accommodation-image {
    position: relative;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.1);
}

.accommodation-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accommodation-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #283B89;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.accommodation-address {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.accommodation-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.accommodation-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: justify;
}

/* 住宿安排 - 其他酒店紧凑列表 */
.accommodation-sub-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.accommodation-sub-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: background 0.3s ease, transform 0.3s ease;
}

.accommodation-sub-item:hover {
    background: #f0f0f5;
    transform: translateX(4px);
}

.accommodation-sub-item img {
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.accommodation-sub-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #283B89;
    margin-bottom: 0.25rem;
}

.accommodation-sub-text p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 住宿安排响应式 */
@media screen and (max-width: 1024px) {
    .accommodation-card {
        grid-template-columns: 1fr;
    }

    .accommodation-image {
        min-height: 240px;
    }
}

@media screen and (max-width: 768px) {
    .accommodation-info {
        padding: 1.5rem;
    }

    .accommodation-name {
        font-size: 1.2rem;
    }

    .accommodation-image {
        min-height: 200px;
    }

    .accommodation-sub-item img {
        width: 64px;
        height: 44px;
    }
}