/* ================================
   湖北蕲艾供应链有限公司 - 企业官网样式
   专业级设计 | 响应式布局 | 现代交互
   ================================ */

/* 基础重置与变量 */
:root {
    /* 主色调 - 艾绿色系 */
    --primary-dark: #1a3a2a;
    --primary: #2d5a3d;
    --primary-light: #3d7a4d;
    --primary-lighter: #5f8d4e;
    
    /* 辅助色 */
    --accent-gold: #d4af37;
    --accent-warm: #f5f5dc;
    --accent-cream: #faf9f6;
    
    /* 温态系列色 */
    --wentai-primary: #ff6b6b;
    --wentai-secondary: #feca57;
    
    /* 燃态系列色 */
    --rantai-primary: #5f27cd;
    --rantai-secondary: #341f97;
    
    /* 空态系列色 */
    --kongtai-primary: #00d2d3;
    --kongtai-secondary: #54a0ff;
    
    /* 中性色 */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --text-lighter: #a0a0a0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e8e8e8;
    
    /* 阴影 */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* 过渡 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* 字体 */
    --font-primary: 'Microsoft YaHei', 'SimHei', 'Heiti SC', 'STHeiti', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); color: var(--text-dark); line-height: 1.6; background: var(--bg-white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* 顶部信息栏 */
.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.8); font-size: 0.875rem; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--accent-gold); }
.top-bar-right { display: flex; gap: 20px; }
.top-bar-right a { color: rgba(255,255,255,0.8); }
.top-bar-right a:hover { color: #5F8D4E; }

/* 主导航 */
.main-header { background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; border-bottom: 1px solid rgba(0,0,0,0.05); }
.main-header.header-scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.main-header.header-scrolled .container { height: 64px; }
.main-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo a { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; }
.logo-text h1 { font-size: 1.125rem; font-weight: 700; color: var(--primary-dark); line-height: 1.2; }
.logo-text span { font-size: 10px; color: var(--text-light); letter-spacing: 1px; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 8px; }
.main-nav a { display: flex; align-items: center; gap: 4px; padding: 12px 16px; color: #1a1a1a; font-weight: 500; font-size: 0.875rem; border-radius: var(--radius-sm); transition: var(--transition-fast); }
.main-nav a:hover, .main-nav li.active > a { color: #5F8D4E; background: rgba(95,141,78,0.1); }
.main-nav li.active > a { font-weight: 600; border: 2px solid #5F8D4E; }
.main-nav i.fa-chevron-down { font-size: 10px; transition: var(--transition-fast); }
.has-dropdown:hover i.fa-chevron-down { transform: rotate(180deg); }

/* 下拉菜单 */
.has-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--bg-white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 240px; padding: 16px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition-normal); margin-top: 8px; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-content { display: flex; flex-direction: column; gap: 4px; }
.dropdown-section { margin-bottom: 12px; }
.dropdown-section:last-child { margin-bottom: 0; }
.dropdown-section h4 { font-size: 11px; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; padding-left: 12px; }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--text-medium); font-size: 0.875rem; border-radius: var(--radius-sm); transition: var(--transition-fast); }
.dropdown-menu a:hover { background: var(--bg-light); color: #5F8D4E; }
.dropdown-menu a i { color: var(--primary-light); width: 16px; }

/* 头部操作按钮 */
.header-actions { display: flex; align-items: center; gap: 16px; }
.btn-search { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--text-medium); border-radius: 50%; transition: var(--transition-fast); }
.btn-search:hover { background: var(--bg-light); color: #5F8D4E; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; background: #5F8D4E; color: white; font-weight: 600; font-size: 0.875rem; border-radius: var(--radius-md); transition: var(--transition-fast); box-shadow: var(--shadow-md); border: none; }
.btn-primary:hover { background: #4a7a3d; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.mobile-menu-toggle { display: none; width: 40px; height: 40px; font-size: 20px; color: var(--text-medium); }

/* Hero Section */
.hero { position: relative; height: calc(100vh - 120px); min-height: 600px; overflow: hidden; }
.hero-slider { position: relative; height: 100%; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-content { position: relative; height: 100%; display: flex; align-items: center; }
.hero-content .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { color: white; z-index: 2; }
.hero-company { font-size: 3.2rem; font-weight: 800; letter-spacing: 4px; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.4); line-height: 1.2; white-space: nowrap; }
.hero-subtitle { display: inline-block; padding: 8px 16px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; font-size: 0.875rem; font-weight: 500; margin-bottom: 24px; backdrop-filter: blur(10px); }
.hero-title { font-size: 2.8rem; font-weight: 700; line-height: 1.3; margin-bottom: 24px; text-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-weight: 600; font-size: 1rem; border-radius: var(--radius-md); transition: var(--transition-fast); }
.btn-large { padding: 16px 40px; font-size: 1.125rem; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; }
.btn-outline:hover { background: white; color: #5F8D4E; }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-factory-image { width: 450px; height: 350px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-factory-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-product-showcase { position: relative; width: 400px; height: 400px; }
.center-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); border-radius: 50%; animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; } 50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; } }
.product-orbit { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; animation: rotate 20s linear infinite; }
@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit-item { position: absolute; animation: counter-rotate 20s linear infinite; }
@keyframes counter-rotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.orbit-item.item-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-item.item-2 { top: 25%; right: 5%; }
.orbit-item.item-3 { bottom: 10%; right: 15%; }
.orbit-item.item-4 { bottom: 10%; left: 15%; }
.orbit-item.item-5 { top: 25%; left: 5%; }
.product-card-mini { width: 100px; height: 120px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: white; box-shadow: var(--shadow-lg); }
.product-card-mini i { font-size: 32px; }
.product-card-mini span { font-size: 0.875rem; font-weight: 600; }

/* Hero Dots */
.hero-dots { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition-fast); }
.dot.active { background: white; transform: scale(1.2); }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.75rem; animation: bounce 2s infinite; z-index: 10; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* Stats Section */
.stats-section { background: var(--bg-white); padding: 60px 0; border-bottom: 1px solid var(--border-color); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.stat-item { text-align: center; padding: 30px 20px; border-radius: var(--radius-lg); transition: var(--transition-fast); }
.stat-item:hover { background: var(--bg-light); transform: translateY(-5px); }
.stat-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: white; font-size: 24px; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary-dark); line-height: 1; }
.stat-unit { font-size: 1.125rem; color: var(--primary); font-weight: 600; margin-left: 4px; }
.stat-label { font-size: 0.875rem; color: var(--text-light); margin-top: 8px; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light { color: white; }
.section-subtitle { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; color: var(--primary-light); margin-bottom: 12px; }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.7); }
.section-title { font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.section-header.light .section-title { color: white; }
.section-desc { font-size: 1.125rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-header.light .section-desc { color: rgba(255,255,255,0.8); }

/* Products Section */
.products-section { padding: 100px 0; background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.product-card { background: var(--bg-white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition-normal); }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.product-card.featured { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.product-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.product-image { position: relative; height: 200px; overflow: hidden; }
.product-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.product-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: var(--shadow-lg); }
.product-card:nth-child(1) .product-icon { color: var(--wentai-primary); }
.product-card:nth-child(2) .product-icon { color: var(--rantai-primary); }
.product-card:nth-child(3) .product-icon { color: var(--kongtai-primary); }
.product-content { padding: 30px; }
.product-tag { display: inline-block; padding: 4px 12px; background: var(--bg-light); border-radius: 20px; font-size: 0.75rem; font-weight: 600; color: var(--text-light); margin-bottom: 12px; }
.product-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.product-content p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.product-features { margin-bottom: 24px; }
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-medium); margin-bottom: 8px; }
.product-features i { color: var(--primary-light); font-size: 12px; }
.btn-secondary { background: var(--bg-light); color: var(--text-dark); border: 1px solid var(--border-color); padding: 12px 24px; font-size: 0.875rem; }
.btn-secondary:hover { background: #5F8D4E; color: white; border-color: #5F8D4E; }
.products-cta { text-align: center; }
.btn-outline-dark { background: transparent; border: 2px solid #5F8D4E; color: #5F8D4E; padding: 14px 32px; }
.btn-outline-dark:hover { background: #5F8D4E; color: white; }

/* Bases Section */
.bases-section { padding: 100px 0; background: #f5f5f5; }
.bases-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.bases-timeline::before { content: ''; position: absolute; top: 40px; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.2); }
.base-item { position: relative; text-align: center; }
.base-marker { width: 80px; height: 80px; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; position: relative; z-index: 1; }
.base-marker span { font-size: 1.5rem; font-weight: 700; color: white; }
.base-content { color: white; }
.base-image { width: 120px; height: 120px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 48px; color: white; }
.base-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.base-content p { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* R&D Section */
.rd-section { padding: 100px 0; background: var(--bg-white); }
.rd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rd-content .section-subtitle, .rd-content .section-title { text-align: left; }
.rd-desc { font-size: 1rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.8; }
.rd-features { margin-bottom: 40px; }
.rd-feature { display: flex; gap: 20px; margin-bottom: 24px; }
.rd-icon { width: 56px; height: 56px; background: var(--bg-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); flex-shrink: 0; }
.rd-text h4 { font-size: 1.125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.rd-text p { font-size: 0.875rem; color: var(--text-light); }
.rd-visual { display: flex; justify-content: center; }
.rd-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rd-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); text-align: center; transition: var(--transition-fast); }
.rd-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rd-card:nth-child(3) { grid-column: span 2; }
.rd-card-icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; color: white; }
.rd-card-number { font-size: 2rem; font-weight: 700; color: var(--text-dark); }
.rd-card-unit { font-size: 1rem; color: var(--primary); font-weight: 600; margin-left: 4px; }
.rd-card-label { display: block; font-size: 0.875rem; color: var(--text-light); margin-top: 4px; }

/* News Section */
.news-section { padding: 100px 0; background: var(--bg-light); }
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.news-card { background: var(--bg-white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition-fast); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-image { position: relative; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 64px; color: rgba(255,255,255,0.3); }
.news-featured .news-image { height: 240px; }
.news-category { position: absolute; top: 16px; left: 16px; padding: 6px 12px; background: rgba(255,255,255,0.95); border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--primary); }
.news-content { padding: 24px; }
.news-date { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.news-date .day { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.news-date .month { font-size: 0.75rem; color: var(--text-lighter); }
.news-content h3 { font-size: 1.125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.news-featured .news-content h3 { font-size: 1.25rem; }
.news-content p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.news-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.news-link:hover { gap: 10px; }
.news-cta { text-align: center; margin-top: 40px; }

/* Partners Section */
.partners-section { padding: 80px 0; background: var(--bg-white); }
.partners-slider { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.partner-item { padding: 20px 40px; }
.partner-logo { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--text-lighter); transition: var(--transition-fast); }
.partner-logo:hover { color: #5F8D4E; }
.partner-logo i { font-size: 48px; }
.partner-logo span { font-size: 0.875rem; font-weight: 500; }

/* CTA Section */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.cta-content { position: relative; text-align: center; color: white; }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.cta-content p { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; }
.btn-white { background: white; color: #5F8D4E; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; }
.btn-outline-white:hover { background: white; color: #5F8D4E; }

/* Footer */
.main-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo i { width: 48px; height: 48px; background: var(--primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; }
.footer-logo h3 { font-size: 1.125rem; font-weight: 700; color: white; }
.footer-logo span { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.7; }
.footer-contact-info p { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; margin-bottom: 12px; color: rgba(255,255,255,0.7); }
.footer-contact-info i { color: var(--accent-gold); width: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,255,255,0.8); transition: var(--transition-fast); }
.footer-social a:hover { background: #5F8D4E; color: white; transform: translateY(-3px); }
.footer-links h4 { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #5F8D4E; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 30px 0; }
.footer-legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-legal p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal-links a, .footer-legal-links span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-legal-links a:hover { color: #5F8D4E; }

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .rd-grid { gap: 40px; }
}

@media (max-width: 992px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-actions .btn-primary { display: none; }
    .hero-content .container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card.featured { transform: none; }
    .bases-timeline { grid-template-columns: repeat(2, 1fr); }
    .bases-timeline::before { display: none; }
    .rd-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-featured { grid-column: span 1; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero { height: auto; min-height: 500px; padding: 80px 0; }
    .hero-title { font-size: 2.25rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 20px 10px; }
    .products-grid { grid-template-columns: 1fr; }
    .bases-timeline { grid-template-columns: 1fr; }
    .rd-cards { grid-template-columns: 1fr; }
    .rd-card:nth-child(3) { grid-column: span 1; }
    .cta-content h2 { font-size: 1.75rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-legal { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-buttons { flex-direction: column; }
    .btn-large { padding: 14px 28px; font-size: 1rem; }
    .cta-buttons { flex-direction: column; }
}

/* ================================
   增强动效与视差效果
   ================================ */

/* 浮动动画 */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* 脉冲发光 */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(95, 141, 78, 0.3); }
    50% { box-shadow: 0 0 40px rgba(95, 141, 78, 0.6); }
}
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* 渐变流动 */
@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-flow 8s ease infinite;
}

/* 视差滚动效果 */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 卡片悬停3D效果 */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}
.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg) translateY(-10px);
}

/* 文字渐变效果 */
.text-gradient {
    background: linear-gradient(135deg, #5F8D4E 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 玻璃拟态效果 */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 滚动显示动画 */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 延迟动画类 */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* 鼠标跟随效果 */
.cursor-follow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(95, 141, 78, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* 粒子背景 */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(95, 141, 78, 0.3);
    border-radius: 50%;
    animation: particle-float 20s infinite linear;
}
@keyframes particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
city: 0; }
}
