/* ==========================================
   景点页面 - 革命性重构版
   现代化排版布局与视觉设计
   ========================================== */

:root {
    --primary-green: #10b981;
    --primary-dark: #059669;
    --accent-blue: #3b82f6;
    --bg-light: #f9fafb;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Footer所需的颜色变量 */
    --color-primary: #059669;
    --color-white: #ffffff;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
}

/* ========== 筛选区域重构 ========== */
.filter-section {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.filter-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.filter-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.1);
    width: 100%;
    margin: 0;
}



.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-title-group {
    flex: 1;
    min-width: 300px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.filter-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #0f172a 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.filter-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.1);
}

.filter-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.filter-stats .stat-number,
.filter-stats .filter-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.filter-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.filter-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.filter-tabs-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.filter-tab-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.filter-tab-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-tab-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.filter-tab-modern:hover::before {
    opacity: 0.05;
}

/* 禁用状态的分类 tab */
.filter-tab-modern.filter-tab-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(60%);
}

.filter-tab-modern.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.filter-tab-modern.active::before {
    opacity: 0;
}

.filter-tab-modern .tab-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.filter-tab-modern.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.filter-tab-modern .tab-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.filter-tab-modern.active .tab-icon i {
    color: white;
}

.filter-tab-modern .tab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
}

.filter-tab-modern .tab-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.filter-tab-modern.active .tab-title {
    color: white;
}

.filter-tab-modern .tab-count {
    font-size: 0.875rem;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.filter-tab-modern.active .tab-count {
    color: rgba(255, 255, 255, 0.8);
}

/* ========== 四季旅游指南重构 ========== */
.season-guide-section {
    padding: 2.25rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}


.season-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}


.season-card {
    background: white;
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    height: 100%;
}


.season-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}


.season-card-featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.season-card-featured .season-badge {
    background: rgba(255, 255, 255, 0.2);
}

.season-card-featured .season-icon-large {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.season-card-featured .season-name,
.season-card-featured .season-period,
.season-card-featured .season-description {
    color: white;
}

.season-card-featured .season-highlights {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.season-card-featured .highlight-item i {
    color: white;
}

.season-card-featured .highlight-content strong,
.season-card-featured .highlight-content span {
    color: white;
}

.season-card-featured .highlight-content span {
    color: rgba(255, 255, 255, 0.85);
}

.season-card-featured .season-tips {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

.season-card-featured .season-tips strong {
    color: white;
}

/* 春季卡片配色 - 浅绿粉色（春暖花开） */
.season-card-featured:nth-child(1) {
    background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
}

/* 夏季卡片配色 - 深绿色（绿意盎然） */
.season-card-featured:nth-child(2) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* 秋季卡片配色 - 橙黄色（金秋收获） */
.season-card-featured:nth-child(3) {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

/* 冬季卡片配色 - 冷蓝色（冰雪世界） */
.season-card-featured:nth-child(4) {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.season-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.35);
}


.season-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.season-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}


.season-icon-large {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}


.season-info {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.season-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: white;
    white-space: nowrap;
    overflow: visible;
    line-height: 1.15;
}


.season-period {
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}


.season-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}


.season-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}


.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}


.highlight-item i {
    font-size: 1.2rem;
    color: white;
    width: 24px;
    flex-shrink: 0;
}


.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-content strong {
    font-size: 0.8rem;
    color: white;
}


.highlight-content span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}


.season-tips {
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}


.season-tips strong {
    color: white;
}

/* 小季节卡片 */
.season-header-small {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.season-icon-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.season-name-small {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.season-period-small {
    font-size: 0.875rem;
    margin: 0;
    color: var(--text-gray);
}

.season-desc-small {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    flex: 1;
}

.season-temp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
    white-space: nowrap;
}

.season-temp i {
    font-size: 1rem;
    flex-shrink: 0;
}

.season-temp span {
    font-size: 0.875rem;
    letter-spacing: -0.02em;
}

/* ========== 导航栏 ========== */
.navbar-revolution {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar-revolution.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}


.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    min-width: 280px;
    margin-left: 70px;
}


.nav-brand:hover {
    transform: translateY(-2px);
}

.nav-brand:hover .brand-mark {
    box-shadow: none;
    transform: none;
}

.nav-brand:hover .brand-name {
    text-shadow: none;
}

.nav-brand:hover .brand-tagline {
    text-shadow: none;
}


.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    box-shadow: none;
}

.brand-mark img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}




@keyframes logoGlow {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(16, 185, 129, 0.4),
            0 0 20px rgba(16, 185, 129, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(16, 185, 129, 0.6),
            0 0 30px rgba(16, 185, 129, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

.mark-inner {
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: none;
}


.brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.brand-name {
    font-size: 1.75rem; /* 从1.25rem增大到1.75rem */
    font-weight: 900;
    color: #059669;
    letter-spacing: 0.3em;
    line-height: 1;
    text-shadow: none;
    animation: none;
    min-width: 350px;
}




@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(16, 185, 129, 0.4),
            0 0 20px rgba(16, 185, 129, 0.2),
            0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(16, 185, 129, 0.6),
            0 0 30px rgba(16, 185, 129, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

.brand-tagline {
    display: none;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}


.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    border-radius: 10px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    /* 隐藏白色圆点 */
    display: none;
}

.nav-item:hover .nav-dot,
.nav-item.active .nav-dot {
    opacity: 0;
    display: none;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-item:hover::before,
.nav-item.active::before {
    opacity: 1;
}

.nav-item:active::before {
    opacity: 0.6;
}

.nav-item:hover,
.nav-item.active {
    color: #ffffff;
}

.nav-item:active {
    transform: scale(0.98);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
}


.btn-contact {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
    transition: var(--transition-smooth);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
    color: #ffffff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ========== 页面头部Hero区 - 横屏全屏轮播版 ========== */
.attractions-hero {
    position: relative;
    width: 100%;
    height: 480px;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: #0f172a;
}

/* 轮播图片容器 */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* 全屏图片显示 - 铺满屏幕 */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(1.05) saturate(1.15);
    transform: scale(1);
    transition: transform 12s ease-out, filter 1.5s ease;
    z-index: 0;
}

/* 渐变遮罩层 - 增强文字可读性 */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.15) 0%,
        rgba(15, 23, 42, 0.05) 40%,
        rgba(15, 23, 42, 0.05) 60%,
        rgba(15, 23, 42, 0.25) 100%
    );
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.active::before {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.3);
}

/* 轮播控制按钮 - 隐藏 */
.carousel-control {
    display: none;
}

/* 轮播指示器 - 隐藏 */
.carousel-indicators {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15);
    animation: titleFadeIn 1.2s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    animation: subtitleFadeIn 1.2s ease-out 0.2s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: breadcrumbFadeIn 1.2s ease-out 0.4s both;
}

@keyframes breadcrumbFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 30px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-breadcrumb a {
    color: #10b981;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-breadcrumb a:hover {
    color: #34d399;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.6);
}

.hero-breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== 轮播图美化分割线 ========== */
.attractions-hero::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(5, 150, 105, 0.1) 5%,
        rgba(5, 150, 105, 0.3) 20%,
        rgba(5, 150, 105, 0.5) 40%,
        rgba(5, 150, 105, 0.65) 50%,
        rgba(5, 150, 105, 0.5) 60%,
        rgba(5, 150, 105, 0.3) 80%,
        rgba(5, 150, 105, 0.1) 95%,
        transparent 100%
    );
    box-shadow: 
        0 3px 12px rgba(5, 150, 105, 0.2),
        0 1px 4px rgba(5, 150, 105, 0.15),
        0 6px 20px rgba(5, 150, 105, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* ========== 筛选区域 - 现代化重构 ========== */
.attraction-filter {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(249,250,251,0.95) 100%);
    backdrop-filter: blur(24px);
    padding: 3.5rem 4rem;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    margin: -80px 2rem 4rem;
    position: relative;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.attraction-filter::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.attraction-filter:hover::before {
    opacity: 0.3;
}

.neon-text {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.filter-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.filter-tab > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.filter-tab:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.filter-tab.active {
    border-color: var(--primary-green);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

.filter-tab.active::before {
    opacity: 1;
}

.filter-tab.active > *,
.filter-tab.active span,
.filter-tab.active {
    color: #ffffff !important;
}

.filter-tab i {
    font-size: 1.25rem;
}

/* ========== 季节提醒卡片 - 精美重构 ========== */
.season-card-enhanced {
    position: relative;
    padding: 3.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    border-radius: 28px;
    border: 3px solid rgba(251, 191, 36, 0.4);
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(251, 191, 36, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.season-card-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.floating-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

.floating-decoration:nth-child(1) {
    top: -80px;
    right: -80px;
    animation: float 8s ease-in-out infinite;
}

.floating-decoration:nth-child(2) {
    bottom: -80px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

.season-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    font-size: 2rem;
    font-weight: 900;
    color: #92400e;
    margin-bottom: 1.75rem;
    z-index: 1;
    text-align: center;
}

.season-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== 景点列表区域 ========== */
.attractions-list-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    box-sizing: border-box;
}

/* 分页样式 */
.attractions-pagination {
    margin-top: 2.5rem;
}

.attractions-pagination .pagination {
    gap: 0.4rem;
}

.attractions-pagination .page-link {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    color: var(--primary-green);
    font-weight: 700;
    padding: 0.5rem 0.9rem;
    transition: var(--transition-smooth);
    background: #fff;
}

.attractions-pagination .page-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.attractions-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.attractions-pagination .page-item.disabled .page-link {
    color: #d1d5db;
    border-color: #e5e7eb;
    background: #f9fafb;
}

/* ========== 景点卡片 - 革命性重构 ========== */
.attraction-item {
    margin-bottom: 1.25rem;
}




.attraction-advanced-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(229, 231, 235, 0.6);
}

.attraction-advanced-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue), var(--primary-green));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientShift 3s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.attraction-advanced-card:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: var(--shadow-hover);
}



.attraction-advanced-card:hover::before {
    opacity: 0.8;
}

.attraction-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}




.attraction-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.attraction-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95) saturate(1.1);
}

.attraction-advanced-card:hover .attraction-image-container img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1) saturate(1.2);
}

.attraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(15, 23, 42, 0.3) 60%,
        rgba(15, 23, 42, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.attraction-advanced-card:hover .attraction-overlay {
    opacity: 1;
}

/* 价格与评分徽章 - 现代化设计 */
.attraction-badges {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}



.price-badge-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    color: var(--primary-green);
    font-weight: 800;
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;
    max-width: 160px;
    text-overflow: ellipsis;
    overflow: hidden;
    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}



.attraction-advanced-card:hover .price-badge-modern {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    gap: 0.3rem;
    padding: 0 0.7rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 252, 232, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 100px;
    color: #f59e0b;
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow:
        0 3px 12px rgba(245, 158, 11, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}



.attraction-advanced-card:hover .rating-badge {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}


.rating-badge i {
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}



/* 卡片内容区 - 精致排版 */
.attraction-content-advanced {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}




.attraction-title-enhanced {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}




.attraction-meta-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.65rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}




.meta-item-enhanced {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-gray);
    font-size: 0.7rem;
    font-weight: 700;
}




.meta-item-enhanced i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 5px;
}




.attraction-description-enhanced {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.8rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}




/* 特色标签列表 - 国风文旅（纹理 + 金色 + 印章感） */
.attraction-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.35rem;
    margin-top: 0.15rem;
}



.feature-item-enhanced {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.6rem 0.32rem 0.5rem;
    background: #fffaf0;
    border-radius: 999px;
    border: 1.5px solid rgba(191, 149, 63, 0.45);
    color: #6b3f1b;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: var(--transition-smooth);
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 5px 12px rgba(99, 65, 28, 0.1);
}



.feature-item-enhanced::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 30%, rgba(191, 149, 63, 0.16), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(130, 86, 36, 0.12), transparent 60%),
        repeating-linear-gradient(45deg, rgba(191, 149, 63, 0.08) 0 2px, transparent 2px 5px);
    opacity: 1;
    z-index: 0;
}

.feature-item-enhanced::after {
    content: '';
    position: absolute;
    right: 0.35rem;
    bottom: 0.28rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(160, 82, 45, 0.6);
    background: radial-gradient(circle at 30% 30%, rgba(160, 82, 45, 0.25), rgba(160, 82, 45, 0.05) 70%);
    box-shadow: inset 0 0 0 2px rgba(160, 82, 45, 0.18);
    opacity: 0.6;
}

.feature-item-enhanced > * {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-item-enhanced:hover {
    border-color: rgba(191, 149, 63, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(130, 86, 36, 0.18);
}

.feature-item-enhanced:hover::before {
    filter: saturate(1.2);
}

.feature-item-enhanced i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7e7b2 0%, #d4a24a 45%, #b97b2a 100%);
    color: #6b3f1b;
    font-size: 0.65rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 3px 8px rgba(130, 86, 36, 0.16);
}






/* 操作按钮 - 现代化交互 */
.attraction-actions-enhanced {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}



.btn-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 0.9rem;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}



.btn-action::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-action:hover::before {
    opacity: 1;
}

.btn-primary-enhanced {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-primary-enhanced:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
}


.btn-primary-enhanced i {
    transition: transform 0.3s ease;
}

.btn-primary-enhanced:hover i {
    transform: scale(1.2) rotate(5deg);
}

.btn-outline-enhanced {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline-enhanced:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.3);
}


/* ========== 统计区域 - 视觉增强 ========== */
.stats-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 3px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-number {
    position: relative;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.stat-label {
    position: relative;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ========== 响应式设计 - 完美适配 ========== */

/* 大屏幕优化 (1400px+) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .filter-container {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
}





/* 平板横屏 (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .filter-tabs-modern {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .season-guide-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .season-card-featured {
        grid-column: span 2;
    }
}

/* 平板竖屏 (768px - 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .filter-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-stats {
        justify-content: center;
    }
    
    .filter-tabs-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .season-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    
    .season-card-featured {
        grid-column: span 1;
    }
        padding: 3rem;
    }
}

/* 平板竖屏 (768px - 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .attraction-filter {
        margin: -50px 1rem 2.5rem;
        padding: 2.5rem 2rem;
    }

    .filter-tabs {
        gap: 0.75rem;
    }

    .attraction-features-grid {
        gap: 0.625rem;
    }

    
    .attraction-actions-enhanced {
        grid-template-columns: 1fr;
    }

    /* 导航栏响应式 */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.75rem;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 9998;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .btn-contact {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* 筛选区域响应式 */
    .filter-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-stats {
        justify-content: center;
    }
    
    .filter-tabs-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 季节卡片响应式 */
    .season-guide-grid {
        grid-template-columns: 1fr;
    }
    
    .season-card-featured {
        grid-column: span 1;
    }
}

/* 手机端 (576px - 767px) */
@media (max-width: 767px) {
    .attractions-hero {
        height: 400px;
        max-height: 50vh;
        padding: 0;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .hero-slide::before {
        background-size: cover;
    }
    
    .hero-slide::after {
        background: linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.2) 0%,
            rgba(15, 23, 42, 0.08) 50%,
            rgba(15, 23, 42, 0.3) 100%
        );
    }
    

    
    /* 筛选区域手机端 */
    .filter-section {
        padding: 1.5rem 0 2rem;
    }
    
    .filter-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .filter-main-title {
        font-size: 1.5rem;
    }
    
    .filter-subtitle {
        font-size: 0.9375rem;
    }
    
    .filter-stats {
        padding: 0.875rem 1.25rem;
    }
    
    .filter-stats .stat-number,
    .filter-stats .filter-stat-number {
        font-size: 1.5rem;
    }
    
    .filter-tabs-modern {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .filter-tab-modern {
        padding: 1rem 1.25rem;
    }
    
    /* 季节卡片手机端 */
    .season-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .season-card {
        padding: 1rem;
        min-height: auto;
    }
    
    .season-card-featured {
        padding: 1rem;
        min-height: auto;
        grid-column: span 1;
    }
    
    .season-name {
        font-size: 1.1rem;
    }
    
    .season-highlights {
        padding: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
        text-shadow: 
            0 3px 15px rgba(16, 185, 129, 0.35),
            0 6px 30px rgba(0, 0, 0, 0.45);
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-breadcrumb {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }

    .attraction-filter {
        margin: -40px 1rem 2rem;
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .neon-text {
        font-size: 1.75rem;
    }

    .filter-tabs {
        gap: 0.625rem;
    }
    
    .filter-tab {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .season-card-enhanced {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .season-title {
        font-size: 1.5rem;
        gap: 1rem;
    }
    
    .season-icon {
        font-size: 2.5rem;
    }

    .attraction-image-container {
        height: 220px;
    }

    .attraction-content-advanced {
        padding: 1.25rem 1rem;
    }
    
    .attraction-title-enhanced {
        font-size: 1.2rem;
    }

    .attraction-meta-enhanced {
        flex-direction: column;
        gap: 0.875rem;
        padding: 0.75rem;
    }
    
    .attraction-description-enhanced {
        -webkit-line-clamp: 3;
    }

    .stats-section-enhanced {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.9375rem;
    }
}

/* 小手机 (< 576px) */
@media (max-width: 575px) {
    .attractions-hero {
        height: 350px;
        max-height: 45vh;
        padding: 0;
    }
    
    .hero-slide::before {
        background-size: cover;
    }
    
    .hero-slide::after {
        background: linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.25) 0%,
            rgba(15, 23, 42, 0.1) 50%,
            rgba(15, 23, 42, 0.35) 100%
        );
    }
    

    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
        text-shadow: 
            0 2px 12px rgba(16, 185, 129, 0.3),
            0 4px 24px rgba(0, 0, 0, 0.4);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }
    
    .hero-breadcrumb {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    /* 筛选区域小屏幕 */
    .filter-container {
        padding: 1.25rem;
    }
    
    .filter-main-title {
        font-size: 1.375rem;
    }
    
    .filter-stats {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .filter-stats .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .filter-tabs-modern {
        gap: 0.625rem;
    }
    
    .filter-tab-modern {
        padding: 0.875rem 1rem;
    }
    
    .filter-tab-modern .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .filter-tab-modern .tab-icon i {
        font-size: 1.25rem;
    }
    
    .filter-tab-modern .tab-title {
        font-size: 0.9375rem;
    }

    /* 季节卡片小屏幕 */
    .season-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .season-card,
    .season-card-featured {
        padding: 0.85rem;
        min-height: auto;
    }

    .season-icon-large {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .season-name {
        font-size: 1.05rem;
    }
    
    .season-description {
        font-size: 0.8rem;
    }
    
    .season-highlights {
        gap: 0.6rem;
        padding: 0.75rem;
    }
    
    .highlight-item {
        gap: 0.6rem;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .highlight-content strong {
        font-size: 0.75rem;
    }
    
    .highlight-content span {
        font-size: 0.7rem;
    }

    .filter-tabs {
        flex-direction: column;
    }
    
    .filter-tab {
        width: 100%;
        justify-content: center;
    }
    
    .attraction-badges {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
