/* ==========================================
   革命性首页设计 - 重构版
   现代、优雅、震撼的视觉体验
   ========================================== */

/* ========== 全局样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主色调 - 优雅绿 */
    --color-primary: #059669;
    --color-primary-dark: #047857;
    --color-primary-light: #10b981;
    
    /* 辅助色 */
    --color-accent: #0ea5e9;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    
    /* 中性色 */
    --color-dark: #0f172a;
    --color-gray-900: #1e293b;
    --color-gray-800: #334155;
    --color-gray-700: #475569;
    --color-gray-600: #64748b;
    --color-gray-500: #94a3b8;
    --color-gray-400: #cbd5e1;
    --color-gray-300: #e2e8f0;
    --color-gray-200: #f1f5f9;
    --color-gray-100: #f8fafc;
    --color-white: #ffffff;
    
    /* 渐变 */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    
    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
    
    /* 动画曲线 */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-gray-800);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== 开屏加载（性能优化版） ========== */
#splash-screen {
    position: fixed;
    inset: 0;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    /* 性能优化：使用GPU加速 */
    will-change: opacity, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* 快速淡出效果 */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    /* 性能优化 */
    will-change: transform;
    transform: translateZ(0);
}

.splash-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.splash-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
    background-image: url('/images/logo.png');

    background-repeat: no-repeat;
    background-position: center;
    background-size: 64px 64px;
}

.splash-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    opacity: 1;
}



@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.splash-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 0.2em;
}

.splash-loader {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    /* 性能优化 */
    will-change: transform;
    transform: translateZ(0);
}

.loader-line {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    /* 快速动画 - 800ms内完成 */
    animation: loaderMove 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    /* 性能优化 */
    will-change: transform;
    transform: translateZ(0);
}

@keyframes loaderMove {
    0% { 
        width: 0; 
        transform: translateX(0) translateZ(0);
    }
    90% { 
        width: 100%; 
        transform: translateX(0) translateZ(0);
    }
    100% { 
        width: 100%; 
        transform: translateX(0) translateZ(0);
        opacity: 1;
    }
}

.splash-text {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* ========== 导航栏 ========== */
.navbar-revolution {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.4s var(--ease-smooth);
}

.navbar-revolution::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    z-index: 0;
}


.navbar-revolution .container-fluid {
    position: relative;
    z-index: 1;
}


.navbar-revolution.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
}

.navbar-revolution.scrolled::before {
    opacity: 0;
}


.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}


/* Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s var(--ease-smooth);
    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 var(--color-white);
    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);
    }
}

.navbar-revolution.scrolled .brand-name {
    color: #059669;
}

.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: var(--color-gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.navbar-revolution.scrolled .nav-item {
    color: var(--color-gray-700);
}


.nav-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    /* 隐藏白色圆点 */
    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: var(--gradient-primary);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    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: var(--color-white);
}

.nav-item:active {
    transform: scale(0.98);
}

/* CTA按钮 */
.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: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

/* 菜单切换按钮 */
.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: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

.navbar-revolution.scrolled .menu-toggle span {
    background: var(--color-dark);
}


/* ========== 全屏视频Hero ========== */
/* ========================================
   Hero轮播图区域
======================================== */
.hero-slider-section {
    position: relative;
    min-height: 85vh;
    max-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

/* 轮播图包装器 */
.hero-slider-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* 轮播图容器 */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 轮播图项 */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* 图片亮度提升 */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* 只提升亮度 */
    filter: brightness(1.4);
    transition: filter 0.6s ease;
}

/* 懒加载图片优化 */
.hero-slide img.lazy-load {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide img.lazy-load[src] {
    opacity: 1;
}

/* 轮播图遮罩层 */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: none;
    /* 遮罩层已隐藏 */
    display: none;
    z-index: 2;
}

/* 轮播指示器 */
.hero-slider-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 1rem;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.slider-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

.slider-indicator.active {
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.4);
}

/* 轮播控制按钮 */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    opacity: 0.8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.slider-control:hover {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.4) 0%, 
        rgba(14, 165, 233, 0.4) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.slider-control:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 2.5rem;
}

.slider-next {
    right: 2.5rem;
}

.slider-control i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.slider-control:hover i {
    transform: scale(1.1);
}

/* ========== 首页轮播图美化分割线 ========== */
.hero-slider-section::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;
}








/* Hero内容和标题已删除 */

/* 行动按钮 */
/* ========== 播放按钮已删除 ========== */

/* ========================================
   关于我们区域
======================================== */
.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

/* ========== 关于锡林郭勒区 - 精美升级版 ========== */
.about-section {
    padding: 60px 0;
    background: linear-gradient(180deg, 
        var(--color-white) 0%, 
        #f0fdf4 30%,
        var(--color-gray-50) 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
}

/* 确保行对齐 */
.about-section .row {
    min-height: 600px;
}

/* 动态背景装饰 */
.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle, 
        rgba(16, 185, 129, 0.08) 0%, 
        rgba(14, 165, 233, 0.05) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle, 
        rgba(5, 150, 105, 0.06) 0%, 
        transparent 60%
    );
    border-radius: 50%;
    animation: floatBg 25s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

/* 左侧内容区 */
.about-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

/* 内容分组 - 确保垂直分布均匀 */
.about-content > *:not(:last-child) {
    margin-bottom: 0;
}

/* 标签样式 - 更精致 */
.content-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(14, 165, 233, 0.12) 100%);
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(5, 150, 105, 0.25);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.content-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.content-tag:hover::before {
    opacity: 1;
}

/* 主标题 - 增加视觉层次 */
.content-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    /* 所有文字都使用渐变色 */
    background: linear-gradient(135deg, 
        #10b981 0%, 
        #0ea5e9 50%,
        #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.title-gradient {
    /* 使用正常的文字颜色，不透明 */
    color: var(--color-dark);
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* 引导文字 - 更突出 */
.content-lead {
    font-size: 1.375rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1.75rem;
    padding: 1.125rem 1.75rem;
    padding-left: 1.5rem;
    border-left: 5px solid var(--color-primary);
    background: linear-gradient(90deg, 
        rgba(5, 150, 105, 0.1) 0%, 
        transparent 100%);
    border-radius: 0 10px 10px 0;
    position: relative;
    letter-spacing: 0.02em;
}

.content-lead::before {
    content: none;
}

/* 正文内容 */
.content-text {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    line-height: 2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    text-indent: 2em;
}

.content-text:last-of-type {
    margin-bottom: 2.5rem;
}

.content-text strong {
    color: var(--color-primary);
    font-weight: 800;
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.08), 
        transparent);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

/* 数据统计卡片 - 全新设计 */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: auto;
    margin-bottom: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(240, 253, 244, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(5, 150, 105, 0.1);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
    align-items: stretch;
    height: 170px;
    flex-shrink: 0;
}

.about-stat-item {
    position: relative;
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: none;
    box-shadow: none;
    transition: all 0.3s var(--ease-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* 卡片背景动画 */
.about-stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    z-index: 1;
}

.about-stat-item:hover::before {
    opacity: 0.08;
}

.about-stat-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

/* 数值 */
.stat-value {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #10b981 0%, 
        #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-family: 'Noto Sans SC', -apple-system, system-ui, sans-serif;
    letter-spacing: -0.02em;
    display: inline-block;
    white-space: nowrap;
}

/* 数值单位 */
.stat-unit {
    font-size: 0.5em;
    margin-left: 0.1em;
    vertical-align: baseline;
}

/* 标签 */
.stat-name {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    color: var(--color-gray-600);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

/* 特色亮点 - 升级设计 */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    border: 2px solid rgba(5, 150, 105, 0.15);
    border-radius: 16px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-gray-800);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* 高亮背景效果 */
.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, 
        rgba(16, 185, 129, 0.12), 
        rgba(14, 165, 233, 0.08));
    transition: width 0.4s var(--ease-smooth);
}

.highlight-item:hover::before {
    width: 100%;
}

.highlight-item:hover {
    border-color: var(--color-primary);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
}

/* 图标样式 */
.highlight-item i {
    position: relative;
    z-index: 2;
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
}

.highlight-item:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(5, 150, 105, 0.3));
}

/* 文字 */
.highlight-item span {
    position: relative;
    z-index: 2;
}

/* 右侧图片组 - 精美升级 */
.about-media {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    width: 100%;
}

/* 主图片容器 - 增强视觉效果 */
.main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(5, 150, 105, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
    border: 4px solid var(--color-white);
    aspect-ratio: 16 / 9;
}

.main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        transparent 50%,
        rgba(14, 165, 233, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth);
    z-index: 2;
    pointer-events: none;
}

.main-image:hover::before {
    opacity: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-smooth);
}

.main-image:hover img {
    transform: scale(1.08);
}

/* 徽章 - 更精致的设计 */
.image-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(5, 150, 105, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-dark);
    border: 2px solid rgba(5, 150, 105, 0.15);
    animation: badgeFloat 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-12px) rotate(2deg);
    }
}

.image-badge i {
    color: var(--color-warning);
    font-size: 1.375rem;
    animation: badgeIconSpin 3s ease-in-out infinite;
}

@keyframes badgeIconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

/* 主图片网格（原副图片上移） */
.main-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.main-image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(5, 150, 105, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    border: 3px solid var(--color-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16 / 9;
}

.main-image-item:hover {
    border-color: var(--color-primary);
    box-shadow: 
        0 16px 48px rgba(5, 150, 105, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.main-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}

.main-image-item:hover img {
    transform: scale(1.12) rotate(2deg);
}

/* 主图遮罩层 */
.main-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top, 
        rgba(5, 150, 105, 0.85) 0%, 
        rgba(5, 150, 105, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-image-item:hover .main-image-overlay {
    opacity: 1;
}

.main-image-overlay span {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.main-image-item:hover .main-image-overlay span {
    transform: translateY(0);
}

/* 特色亮点次要区域（新位置） */
.about-highlights-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(240, 253, 244, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(5, 150, 105, 0.1);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
    height: auto;
    min-height: 0;
    flex-shrink: 0;
}

.highlight-item-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-item-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.highlight-item-secondary i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-item-secondary span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
}


/* 保留旧的 .main-image 和 .side-images 样式以兼容其他页面 */
.main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(5, 150, 105, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
    border: 4px solid var(--color-white);
    aspect-ratio: 16 / 9;
}

.main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        transparent 50%,
        rgba(14, 165, 233, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth);
    z-index: 2;
    pointer-events: none;
}

.main-image:hover::before {
    opacity: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-smooth);
}

.main-image:hover img {
    transform: scale(1.08);
}

.side-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.side-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(5, 150, 105, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    border: 3px solid var(--color-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16 / 9;
}

.side-image:hover {
    border-color: var(--color-primary);
    box-shadow: 
        0 16px 48px rgba(5, 150, 105, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}

.side-image:hover img {
    transform: scale(1.12) rotate(2deg);
}

/* 遮罩层 - 优化过渡 */
.side-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top, 
        rgba(5, 150, 105, 0.85) 0%, 
        rgba(5, 150, 105, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.side-image:hover .side-image-overlay {
    opacity: 1;
}

.side-image-overlay span {
    color: var(--color-white);
    font-weight: 800;
    font-size: 1.125rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

/* 装饰元素 - 更精美的设计 */
.media-decoration {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: -1;
}

.deco-circle {
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle, 
        rgba(16, 185, 129, 0.12) 0%, 
        rgba(14, 165, 233, 0.08) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: decoRotate 25s linear infinite;
    filter: blur(40px);
}

@keyframes decoRotate {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    to { transform: rotate(360deg) scale(1); }
}

.deco-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background-image: radial-gradient(
        circle, 
        var(--color-primary) 3px, 
        transparent 3px
    );
    background-size: 24px 24px;
    opacity: 0.25;
    animation: decoDotsFloat 20s ease-in-out infinite;
}

@keyframes decoDotsFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg); 
        opacity: 0.25;
    }
    50% { 
        transform: translate(-40%, -60%) rotate(45deg); 
        opacity: 0.4;
    }
}

/* 文本链接按钮 - 品牌区通用 */
.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: var(--color-white);
    background: var(--gradient-primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.0625rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-text-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.btn-text-link:hover::before {
    transform: translateX(100%);
}

.btn-text-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(5, 150, 105, 0.35);
    color: var(--color-white);
}

.btn-text-link i {
    transition: transform 0.4s var(--ease-smooth);
}

.btn-text-link:hover i {
    transform: translateX(5px);
}

/* ========== 精选体验区 ========== */
.experiences-section {
    padding: 0 0 40px;
    background: var(--color-gray-50);
    margin: 0;
    margin-top: -40px;
}

.experiences-section .container-fluid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* 标题 */
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 20px;
}

.heading-tag {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.heading-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* 让精选文字使用与草原体验一致的样式 */
.heading-title span:not(.title-gradient) {
    /* 移除任何特殊样式,使其与其他文字一致 */
    color: inherit;
    background: none;
    -webkit-text-fill-color: inherit;
}

.heading-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* 体验卡片轮播 - 每次显示4个 */
.exp-carousel-wrapper {
    position: relative;
    margin-bottom: 2rem;
    padding: 0 60px;
}

.exp-carousel-container {
    overflow: hidden;
    position: relative;
}

.exp-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease-in-out;
}

.exp-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
    flex: 0 0 calc((100% - 3rem) / 4);
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.exp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 轮播控制按钮 */
.exp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.exp-carousel-btn:hover {
    background: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.exp-carousel-prev {
    left: 0;
}

.exp-carousel-next {
    right: 0;
}

.exp-carousel-btn i {
    font-size: 1rem;
    color: var(--color-gray-700);
}

.exp-carousel-btn:hover i {
    color: var(--primary-color);
}

.exp-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.exp-carousel-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 轮播指示器 */
.exp-carousel-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 1rem;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.exp-indicator-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.exp-indicator-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.exp-indicator-dot.active {
    background: #10b981;
    width: 6px;
    height: 6px;
}

.card-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease-smooth);
}

.exp-card:hover .card-image img {
    transform: scale(1.02);
}

.card-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.375rem 0.75rem;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.tag-hot { background: rgba(239, 68, 68, 0.9); }
.tag-heritage { background: rgba(245, 158, 11, 0.9); }
.tag-culture { background: rgba(139, 92, 246, 0.9); }
.tag-food { background: rgba(5, 150, 105, 0.9); }

.card-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
    letter-spacing: 0.01em;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    flex: 1;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 0.01em;
}

/* 特色标签 */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-emerald-50);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.feature-badge i {
    font-size: 0.7rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-gray-200);
    margin-top: auto;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--color-gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.card-meta i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.5rem;
    color: var(--primary-dark);
}

.card-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

/* 空链接样式 - 不可点击状态 */
.card-link[href="#"],
.gallery-link[href="#"],
a[href="#"].article-readmore {
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}

.card-link:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

/* 空链接不显示hover效果 */
.card-link[href="#"]:hover,
.gallery-link[href="#"]:hover,
a[href="#"].article-readmore:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
    transform: none;
}

/* 更多体验 - 文章卡片展示 */
.articles-showcase {
    margin-top: 3rem;
    padding: 3rem 0;
    background: var(--color-white);
    border-radius: 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.articles-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.articles-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* 文章网格 - 五列小卡片布局，不满行自动居中 */
.articles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.articles-grid > .article-card {
    flex: 0 0 calc(20% - 0.8rem);
    min-width: 180px;
    max-width: calc(20% - 0.8rem);
}

/* 文章卡片 - 小卡片样式 */
.article-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

/* 文章图片 */
.article-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.625rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
}

/* 文章内容 - 紧凑样式 */
.article-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-gray-500);
    font-size: 0.6875rem;
    font-weight: 500;
}

.meta-item i {
    color: var(--color-primary);
    font-size: 0.75rem;
}

.article-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.3s var(--ease-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0.01em;
}

.article-card:hover .article-title {
    color: var(--color-primary);
}

.article-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    letter-spacing: 0.01em;
}

/* 文章标签 - 紧凑样式 */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.article-tags .tag {
    padding: 0.25rem 0.5rem;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s var(--ease-smooth);
}

.article-tags .tag {
    padding: 0.375rem 0.875rem;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s var(--ease-smooth);
}

.article-tags .tag:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* 阅读更多按钮 */
.article-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-smooth);
}

.article-readmore:hover {
    gap: 0.875rem;
    color: var(--color-primary-dark);
}

.article-readmore i {
    font-size: 1rem;
}

/* 底部按钮 */
.articles-footer {
    text-align: center;
    padding-top: 2rem;
}

.btn-view-all-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
}

.btn-view-all-articles:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

/* 响应式 - 文章卡片 */
@media (max-width: 1400px) {
    .articles-grid > .article-card {
        flex: 0 0 calc(33.333% - 0.667rem);
        max-width: calc(33.333% - 0.667rem);
    }
}

@media (max-width: 992px) {
    .articles-grid > .article-card {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .articles-showcase {
        padding: 3rem 0;
        border-radius: 24px;
    }
    
    .articles-title {
        font-size: 2rem;
    }
    
    .articles-subtitle {
        font-size: 1rem;
    }
    
    .articles-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem !important;
    }

    .articles-grid > .article-card {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        margin-bottom: 0;
    }
    
    .article-title {
        font-size: 0.875rem;
    }
    
    .article-excerpt {
        font-size: 0.6875rem;
        -webkit-line-clamp: 2;
    }
}

/* 小屏幕优化 (576px及以下) */
@media (max-width: 576px) {
    .articles-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem !important;
    }

    .articles-grid > .article-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .article-card {
        min-height: auto !important;
    }
    
    .article-title {
        font-size: 0.75rem !important;
    }
    
    .article-excerpt {
        font-size: 0.625rem !important;
        -webkit-line-clamp: 2;
    }
}

/* ========== 图片画廊区 - 精美版 ========== */
.gallery-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    margin: 0;
    margin-top: -50px;
}

.gallery-section .container-fluid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* 画廊标题区 */
.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.gallery-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.01em;
}

.gallery-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* 画廊网格布局 - 四列小卡片 */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
}

/* 画廊卡片 - 小卡片样式 */
.gallery-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    /* 小卡片高度 */
    min-height: 240px;
    opacity: 1;
    visibility: visible;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* 图片容器 - 压缩高度 */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.gallery-card.gallery-wide .gallery-image-wrapper {
    height: 150px;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
    display: block;
    opacity: 1;
}

/* 优化：图片加载状态 */
.gallery-image-wrapper img:not(.loaded) {
    opacity: 0;
    animation: imageReveal 0.6s ease-in-out forwards;
}

.gallery-image-wrapper img.loaded {
    opacity: 1;
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}

/* 徽章样式 - 小卡片适配 */
.gallery-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.gallery-badge i {
    font-size: 0.75rem;
}

/* 不同类型的徽章颜色 */
.badge-hot {
    background: rgba(239, 68, 68, 0.95);
    color: var(--color-white);
}

.badge-food {
    background: rgba(5, 150, 105, 0.95);
    color: var(--color-white);
}

.badge-culture {
    background: rgba(139, 92, 246, 0.95);
    color: var(--color-white);
}

.badge-activity {
    background: rgba(245, 158, 11, 0.95);
    color: var(--color-white);
}

.badge-heritage {
    background: rgba(236, 72, 153, 0.95);
    color: var(--color-white);
}

.badge-landscape {
    background: rgba(14, 165, 233, 0.95);
    color: var(--color-white);
}

/* 卡片内容区 - 紧凑样式 */
.gallery-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-category {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: var(--color-gray-100);
    color: var(--color-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.gallery-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
    letter-spacing: 0.01em;
}

.gallery-card-desc {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 0.01em;
}

/* 元数据 - 紧凑样式 */
.gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.625rem;
    border-top: 1px solid var(--color-gray-200);
}

.meta-location,
.meta-likes {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.meta-location i,
.meta-likes i {
    color: var(--color-primary);
    font-size: 0.75rem;
}

/* 链接按钮 - 小尺寸 */
.gallery-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.125rem;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--ease-smooth);
}

.gallery-card:hover .gallery-link {
    opacity: 1;
    transform: scale(1);
}

.gallery-link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* 宽卡片样式 */
.gallery-card.gallery-wide {
    grid-column: span 3;
}

.gallery-card.gallery-wide .gallery-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.gallery-card.gallery-wide .gallery-category {
    margin-bottom: 0.5rem;
}

.gallery-card.gallery-wide .gallery-card-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.gallery-card.gallery-wide .gallery-card-desc {
    margin-bottom: 1rem;
    max-width: 60%;
}

/* 底部按钮 */
.gallery-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-gallery {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
}

.btn-view-gallery:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

/* ========== 画廊查看更多按钮 ========== */
.gallery-more-wrap {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
}

.gallery-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2.25rem;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: 0.02em;
}

.gallery-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
    color: #fff;
}

.gallery-more-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s var(--ease-smooth);
}

.gallery-more-btn:hover i {
    transform: translateX(4px);
}

/* ========== 视频弹窗 ========== */
/* ========== 视频弹窗已删除 ========== */

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 5rem;
    }
    
    .content-title,
    .heading-title,
    .gallery-title {
        font-size: 3rem;
    }
    
    .about-stats {
        gap: 1.5rem;
        padding: 2rem;
    }

    .main-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .main-image-item {
        aspect-ratio: 16 / 10;
    }
    
    .about-highlights-secondary {
        height: auto;
        min-height: 0;
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        margin-left: auto;
        margin-right: auto;
    }

    
    .exp-card {
        flex: 0 0 calc((100% - 2rem) / 3);
    }
    
    .gallery-card.gallery-wide {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-main-title {
        font-size: 4rem;
    }
    
    .about-section .row {
        min-height: auto;
    }
    
    .about-content {
        margin-bottom: 3rem;
    }
    
    .about-media {
        min-height: auto;
    }

    .main-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .main-image-item {
        aspect-ratio: 16 / 10;
    }
    
    .about-highlights-secondary {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        min-height: 0;
        margin-top: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        margin-left: auto;
        margin-right: auto;
    }
    
    .exp-carousel-track {
        gap: 1rem;
    }
    
    .exp-card {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
    
    .gallery-card.gallery-wide {
        grid-column: span 1;
    }
    
    .gallery-card.gallery-wide .gallery-content {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .gallery-card.gallery-wide .gallery-card-desc {
        max-width: 100%;
    }
    
    .gallery-card.gallery-wide .gallery-card-title {
        font-size: 1.375rem;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .footer-stats {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 3rem;
    }

    .main-images-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .main-image-item {
        aspect-ratio: 16 / 11;
    }

    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .content-title,
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .content-lead {
        font-size: 1.125rem;
    }
    
    .about-stats {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-name {
        font-size: 0.75rem;
    }
    
    .side-images {
        grid-template-columns: 1fr;
    }
    
    .exp-carousel-wrapper {
        padding: 0 35px;
    }
    
    .exp-card {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .exp-carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .exp-carousel-btn i {
        font-size: 1.125rem;
    }
    
    .card-desc {
        font-size: 0.9375rem;
    }
    
    .card-features {
        gap: 0.375rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
    
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-title {
        font-size: 2.25rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-card-title {
        font-size: 1.25rem;
    }
    
    .gallery-card-desc {
        font-size: 0.875rem;
    }
    
    .articles-showcase {
        padding: 3rem 0;
        border-radius: 24px;
    }
    
    .articles-title {
        font-size: 2rem;
    }
    
    .articles-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .newsletter-wrapper {
        padding: 2rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2.25rem;
    }
    
    .content-title,
    .heading-title,
    .gallery-title {
        font-size: 2rem;
    }
    
    .content-lead {
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    
    .about-highlights {
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .side-image img {
        height: 180px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 2.5rem;
    }
    
    .gallery-title {
        font-size: 1.875rem;
    }
    
    .gallery-subtitle {
        font-size: 0.9375rem;
        padding: 0 1rem;
    }
    
    .gallery-grid-modern {
        gap: 0.75rem;
        grid-template-columns: repeat(2, 1fr);
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-card-title {
        font-size: 1.125rem;
    }
    
    .gallery-card-desc {
        font-size: 0.8125rem;
    }
    
    .gallery-content {
        padding: 1.25rem;
    }
    
    .gallery-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .gallery-badge i {
        font-size: 0.875rem;
    }
    
    .gallery-meta {
        font-size: 0.8125rem;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-stats {
        gap: 1rem;
    }
    
    .stat-box {
        padding: 0.75rem;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    /* 移动端快速导航样式 */
    .mobile-quick-nav {
        padding: 2rem 0 0 0;
        background: #f8f9fa;
    }

    .quick-nav-card {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        background: white;
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .quick-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.875rem;
        color: var(--color-dark);
        cursor: pointer;
        transition: all 0.3s var(--ease-smooth);
    }

    .quick-nav-item i {
        font-size: 1.75rem;
        color: var(--color-primary);
    }

    .quick-nav-item:hover {
        transform: translateY(-4px);
    }

    .promotion-banner {
        margin-bottom: 2rem;
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
    }

    .banner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        color: white;
    }

    .banner-left {
        flex: 1;
    }

    .banner-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .banner-left h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0.5rem 0 0.25rem 0;
        letter-spacing: 0.02em;
    }

    .banner-left p {
        font-size: 0.875rem;
        margin: 0;
        opacity: 0.95;
    }

    .banner-right {
        font-size: 2.5rem;
        opacity: 0.8;
    }
}

/* 平板和更大屏幕隐藏移动端快速导航 */
@media (min-width: 768px) {
    .mobile-quick-nav {
        display: none !important;
    }
}

/* 移动端快速导航区域样式 */
.mobile-quick-nav {
    padding: 2rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.quick-nav-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.quick-nav-item:hover {
    transform: translateY(-4px);
    background: rgba(5, 150, 105, 0.08);
}

.quick-nav-item i {
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: all 0.3s var(--ease-smooth);
}

.quick-nav-item:hover i {
    transform: scale(1.15);
}

.promotion-banner {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.promotion-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(239, 68, 68, 0.4);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    color: white;
}

.banner-left {
    flex: 1;
}

.banner-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
}

.banner-left h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0 0.375rem 0;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-left p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.95;
}

.banner-right {
    font-size: 2.5rem;
    opacity: 0.7;
    margin-left: 1rem;
}











