/* 引入思源黑体字体 - CDN */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700;900&display=swap');

:root {
    --primary-color: #d93a30;
    --secondary-color: #b82e26;
    --accent-color: #ff6b5e;
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --bg-light: #fafbfc;
    --bg-gray: #f5f7f9;
    --white: #ffffff;
    --border-light: #e8ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
}

.top-bar i {
    margin-right: 5px;
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 20px 0;
}

.navbar-brand {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 36px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    gap: 5px;
    margin-left: auto;
    padding-left: 60px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    margin: 0 2px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(201, 50, 45, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 40px;
}

.btn-consult {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 11px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(217, 58, 48, 0.2);
    margin-left: 15px;
    letter-spacing: 0.3px;
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 58, 48, 0.3);
    background: var(--secondary-color);
}

.btn-consult i {
    margin-right: 6px;
    font-size: 14px;
}

/* Navbar scrolled state */
.main-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    padding: 0;
}

.main-header.scrolled .navbar {
    padding: 12px 0;
}

.main-header.scrolled .navbar-brand {
    font-size: 28px;
}

.main-header.scrolled .navbar-brand i {
    font-size: 32px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(217, 58, 48, 0.65), rgba(184, 46, 38, 0.65)), 
                url('/skin/img/banner.jpg') center center / cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

/* 移动端背景优化 */
@media (max-width: 991px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 500px;
        background-position: center center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 450px;
        background-position: 60% center;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.hero-feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffeb3b;
}

.hero-buttons {
    margin-top: 40px;
}

.btn-hero {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px;
    margin-right: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary-hero {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(255,255,255,0.25);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.35);
}

.btn-outline-hero {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--white);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-section .row {
    margin-left: -15px;
    margin-right: -15px;
    row-gap: 30px;
}

.services-section .row > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    opacity: 0.08;
    border-radius: 50%;
    z-index: -1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.section-title p {
    font-size: 17px;
    color: var(--text-light);
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.service-card {
    background: var(--white);
    padding: 42px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    margin-bottom: 0;
    height: calc(100% - 30px);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(217, 58, 48, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(217, 58, 48, 0.08);
    border-color: rgba(217, 58, 48, 0.15);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(217, 58, 48, 0.15);
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(217, 58, 48, 0.25);
    border-radius: 18px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.75;
    font-size: 14px;
    min-height: 70px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px 18px 10px 18px;
    border-radius: 8px;
    background: var(--bg-light);
    font-size: 14px;
    border: 1px solid transparent;
}

.service-link:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-right: 24px;
    border-color: var(--primary-color);
}

.service-link i {
    margin-left: 6px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: var(--white);
}

.advantages-section .row {
    row-gap: 30px;
}

.advantages-section .row > [class*='col-'] {
    margin-bottom: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 25px;
    margin-bottom: 0;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: calc(100% - 30px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 50, 45, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.advantage-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(201, 50, 45, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-card:hover .advantage-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 30px rgba(201, 50, 45, 0.4);
}

.advantage-card h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px;
    color: var(--text-dark);
    position: relative;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 15px;
    position: relative;
}

/* Expert Team Section */
.expert-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.expert-section .row {
    row-gap: 30px;
}

.expert-section .row > [class*='col-'] {
    margin-bottom: 30px;
}

.expert-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    border: 1px solid rgba(0,0,0,0.03);
    height: calc(100% - 30px);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(201, 50, 45, 0.1);
}

.expert-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expert-card:hover .expert-image {
    background: linear-gradient(135deg, #fef5f5, #fee8e8);
}

.expert-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(201, 50, 45, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expert-card:hover .expert-image::before {
    opacity: 1;
}

.expert-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.expert-image i {
    transition: all 0.3s ease;
}

.expert-card:hover .expert-image i {
    transform: scale(1.1);
}

.expert-info {
    padding: 30px;
}

.expert-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.expert-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.expert-credentials {
    color: var(--text-light);
    font-size: 14px;
    line-height: 2;
    list-style: none;
    padding: 0;
}

.expert-credentials li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    transition: all 0.2s ease;
}

.expert-credentials li:hover {
    color: var(--text-dark);
    padding-left: 30px;
}

.expert-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    background: rgba(201, 50, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Stats Section */
.stats-section {
    padding: 90px 0;
    background: var(--text-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(217, 58, 48, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(255, 107, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 25px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    color: var(--white);
    letter-spacing: -1px;
    position: relative;
}

/* 数字计数器样式 */
.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease;
    position: relative;
}

/* 数字滚动时的发光效果 */
@keyframes numberGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        opacity: 0.8;
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
        opacity: 0.9;
    }
    100% {
        text-shadow: none;
        opacity: 1;
    }
}

.stat-item.visible .counter {
    animation: numberGlow 2.5s ease-in-out forwards;
    color: var(--white);
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: transform 0.6s ease 0.3s;
}

.stat-item.visible .stat-number::after {
    transform: translateX(-50%) scaleX(1);
}

.stat-label {
    font-size: 16px;
    opacity: 0.85;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--white);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.process-step {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(201, 50, 45, 0.3);
    z-index: 2;
}

.process-content {
    flex: 1;
    background: var(--bg-light);
    padding: 25px 30px;
    margin-left: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.process-content h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-content p {
    color: var(--text-light);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-section .row {
    row-gap: 30px;
}

.testimonials-section .row > [class*='col-'] {
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin: 0;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: calc(100% - 30px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(201, 50, 45, 0.1);
}

.testimonial-quote {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    top: 15px;
    left: 30px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    padding-top: 10px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    margin-right: 18px;
    box-shadow: 0 5px 15px rgba(201, 50, 45, 0.25);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(201, 50, 45, 0.35);
}

.author-info h5 {
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 50, 45, 0.95), rgba(139, 26, 26, 0.95)), 
                url('/style/img/video-bg.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.cta-feature i {
    font-size: 28px;
    margin-right: 10px;
    color: #ffeb3b;
}

.contact-info {
    margin-top: 50px;
}

.contact-info > p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.phone-number {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0 35px;
    letter-spacing: 2px;
}

/* CTA 按钮容器 */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-buttons .btn-hero {
    min-width: 180px;
}

/* 移动端 CTA 按钮优化 */
@media (max-width: 768px) {
    .contact-info {
        margin-top: 40px;
    }
    
    .phone-number {
        font-size: 36px;
        margin: 15px 0 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
    
    .cta-buttons .btn-hero {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-feature {
        font-size: 15px;
    }
    
    .cta-feature i {
        font-size: 22px;
    }
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-widget h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #999;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(201, 50, 45, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 50, 45, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Mobile Navigation */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    background: transparent;
}

.navbar-toggler:hover {
    background: rgba(201, 50, 45, 0.1);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(201, 50, 45, 0.25);
}

.navbar-toggler.active {
    background: rgba(201, 50, 45, 0.15);
    transform: rotate(90deg);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9322d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    display: inline-block;
    transition: all 0.3s ease;
}

.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-collapse.collapsing {
    transition: height 0.3s ease;
}

.navbar-collapse.show {
    display: block !important;
}

/* 移动端导航按钮美化 */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: var(--primary-color);
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(217, 58, 48, 0.25);
}

.navbar-toggler:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(217, 58, 48, 0.35);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 58, 48, 0.2);
}

/* 汉堡图标样式 */
.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    position: relative;
    display: inline-block;
    background: var(--white) !important;
    background-image: none !important;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 上面和下面的线 */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 上面的线 */
.navbar-toggler-icon::before {
    top: -8px;
}

/* 下面的线 */
.navbar-toggler-icon::after {
    top: 8px;
}

/* 激活状态 - 变成X */
.navbar-toggler.active .navbar-toggler-icon {
    background: transparent !important;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* 点击时的动画效果 */
.navbar-toggler:active {
    transform: scale(0.95);
}

/* 确保在桌面端导航栏始终显示 */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
    
    .navbar-toggler {
        display: none;
    }
}

/* 移动端默认隐藏 */
@media (max-width: 991px) {
    /* 默认状态：隐藏 */
    .navbar-collapse {
        display: none !important;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    
    /* 只有当同时有 .show 类时才显示 */
    .navbar-collapse.show {
        display: block !important;
        max-height: 1000px !important;
        opacity: 1 !important;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 26px;
    }
    
    .navbar-brand i {
        font-size: 28px;
    }
    
    .navbar-nav {
        margin-left: 0;
        padding-left: 0;
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        background: var(--bg-light);
        border-radius: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px;
        margin: 5px 10px;
        border-radius: 8px;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: var(--white);
    }
    
    .btn-consult {
        margin: 15px 10px 0;
        width: calc(100% - 20px);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
        display: none;
    }
    
    .top-bar span {
        display: block;
        margin: 3px 0;
    }
    
    .top-bar .text-end {
        text-align: left !important;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .navbar-brand i {
        font-size: 26px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-feature-item {
        font-size: 16px;
        justify-content: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 16px;
        margin-right: 0;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    /* 移动端卡片优化 */
    .services-section,
    .advantages-section,
    .expert-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .services-section .row,
    .advantages-section .row,
    .expert-section .row,
    .testimonials-section .row {
        row-gap: 20px;
    }
    
    .services-section .row > [class*='col-'],
    .advantages-section .row > [class*='col-'],
    .expert-section .row > [class*='col-'],
    .testimonials-section .row > [class*='col-'] {
        margin-bottom: 20px;
    }
    
    .service-card,
    .advantage-card,
    .expert-card,
    .testimonial-card {
        height: auto;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .service-card p {
        min-height: auto;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .expert-info {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .phone-number {
        font-size: 32px;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 添加滚动进度指示器 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    width: var(--scroll-progress, 0%);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 选择文本颜色 */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ==================== 新增页面样式 ==================== */

/* Page Header - 通用页面头部 */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23fff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    justify-content: center;
}

.page-header .breadcrumb-item {
    font-size: 14px;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

/* Section Padding */
.section-padding {
    padding: 90px 0;
}

.section-padding-top {
    padding-top: 60px;
}

/* About Page Styles */
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(217, 58, 48, 0.3);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 14px;
    opacity: 0.95;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateX(8px);
}

.about-feature-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 40px;
}

.about-feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.about-feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Mission Section */
.mission-section {
    background: var(--bg-gray);
    padding: 90px 0;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(217, 58, 48, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 36px;
    color: var(--white);
}

.mission-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.mission-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 150px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.timeline-content {
    flex: 1;
    padding: 25px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 0 30px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.timeline-content:hover {
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Service Intro */
.service-intro {
    background: var(--white);
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-feature-box {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-feature-box:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.service-feature-box i {
    font-size: 32px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-feature-box:hover i {
    color: var(--white);
}

.service-feature-box span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.service-image {
    border-radius: 16px;
    overflow: hidden;
}

/* Service Types */
.service-types {
    background: var(--bg-gray);
    padding: 90px 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

.faq-item {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.faq-item h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item h5 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Team Page Styles */
.team-intro {
    background: var(--white);
}

.team-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.team-stat-card:hover {
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.team-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-stat-icon i {
    font-size: 32px;
    color: var(--white);
}

.team-stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-stat-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* Expert Simple Card */
.more-experts {
    background: var(--bg-gray);
}

.expert-simple-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: calc(100% - 30px);
}

.expert-simple-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(217, 58, 48, 0.1);
}

.expert-simple-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-simple-image i {
    font-size: 50px;
    color: var(--primary-color);
}

.expert-simple-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.expert-simple-title {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.expert-simple-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Team Advantages */
.team-advantages {
    background: var(--white);
    padding: 90px 0;
}

.advantage-box {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: calc(100% - 30px);
}

.advantage-box:hover {
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.advantage-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-box-icon i {
    font-size: 32px;
    color: var(--white);
}

.advantage-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.advantage-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* News Page Styles */
.news-categories {
    background: var(--bg-light);
    padding: 30px 0;
}

.news-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.news-tab {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab:hover,
.news-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* News Sidebar */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

/* Hot News List */
.hot-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-news-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.hot-news-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hot-news-list a {
    display: flex;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hot-news-list a:hover h6 {
    color: var(--primary-color);
}

.hot-badge {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
}

.hot-badge.hot {
    background: var(--accent-color);
}

.hot-news-content h6 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.hot-news-meta {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.hot-news-meta i {
    margin-right: 5px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 20px;
}

.category-list i {
    margin-right: 10px;
}

.category-list span {
    color: var(--text-light);
    font-size: 13px;
}

.category-list a:hover span {
    color: var(--white);
}

/* Sidebar Contact */
.sidebar-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.sidebar-contact .widget-title {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.btn-consult-sidebar {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-consult-sidebar:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* News Items */
.news-items {
    margin-bottom: 40px;
}

.news-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
}

.news-category-badge.knowledge {
    background: #3498db;
}

.news-category-badge.tips {
    background: #f39c12;
}

.news-category-badge.news {
    background: #9b59b6;
}

.news-content {
    padding: 30px;
}

.news-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.news-meta span {
    font-size: 13px;
    color: var(--text-light);
}

.news-meta i {
    margin-right: 6px;
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-readmore:hover {
    color: var(--secondary-color);
    gap: 8px;
}

.news-readmore i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination {
    justify-content: center;
}

.pagination .page-link {
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    background: var(--bg-light);
    color: var(--text-light);
    border-color: var(--border-light);
}

/* Contact Page Styles */
.contact-info-cards {
    background: var(--white);
}

.contact-info-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: calc(100% - 30px);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(217, 58, 48, 0.1);
    transform: translateY(-8px);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-info-icon i {
    font-size: 36px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-contact-action {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contact-action:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 58, 48, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-gray);
    padding: 90px 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 58, 48, 0.1);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

.contact-features {
    margin-top: 30px;
}

.contact-feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-feature-item:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-feature-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 40px;
}

.contact-feature-item h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Working Hours */
.working-hours-section {
    background: var(--white);
    padding: 90px 0;
}

.working-hours-table {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
}

.working-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
}

.working-hours-row:last-child {
    border-bottom: none;
}

.working-hours-row.highlight {
    background: var(--primary-color);
    color: var(--white);
}

.working-hours-row .day {
    font-size: 16px;
    font-weight: 500;
}

.working-hours-row .time {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.working-hours-row.highlight .time {
    color: var(--white);
}

/* QR Code Section */
.qr-code-section {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
}

.qr-code-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.qr-code-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid var(--white);
    border-radius: 12px;
}

.qr-code-section p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Map Section */
.map-section {
    background: var(--bg-gray);
    padding: 90px 0;
}

.map-container {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-placeholder {
    height: 400px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 16px;
    margin: 5px 0;
}

.map-note {
    font-size: 13px;
    color: var(--text-light);
}

.map-directions {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
}

.map-directions h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 20px;
}

.map-directions h5:first-child {
    margin-top: 0;
}

.map-directions h5 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.map-directions p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==================== 文章详情页样式 ==================== */

/* Article Section */
.article-section {
    background: var(--bg-light);
}

/* Article Detail */
.article-detail {
    background: var(--white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
}

/* Article Header */
.article-header {
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.meta-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

.meta-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.meta-item a:hover {
    color: var(--primary-color);
}

/* Featured Image */
.article-featured-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 35px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.article-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-body blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-light);
}

.article-body code {
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--primary-color);
}

.article-body pre {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.article-tags i {
    color: var(--primary-color);
    margin-right: 5px;
}

.tag-link {
    display: inline-block;
    padding: 6px 15px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Article Footer */
.article-footer {
    margin-bottom: 30px;
}

.article-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    flex: 1;
    padding: 12px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.action-btn i {
    font-size: 16px;
}

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.article-navigation .article-nav-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.article-navigation .article-nav-item:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.article-navigation .article-nav-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.article-navigation .article-nav-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.article-navigation .article-nav-title:hover {
    color: var(--primary-color);
}

.article-navigation .prev-article {
    text-align: left;
}

.article-navigation .next-article {
    text-align: right;
}

/* Related Articles */
.related-articles {
    padding-top: 40px;
    border-top: 2px solid var(--border-light);
}

.related-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.related-item {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.related-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 20px;
}

.related-content h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.related-content h5 a {
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-content h5 a:hover {
    color: var(--primary-color);
}

.related-date {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.related-date i {
    margin-right: 5px;
}

/* Responsive Styles for Article Page */
@media (max-width: 991px) {
    .article-detail {
        padding: 35px 25px;
    }
    
    .article-title {
        font-size: 26px;
    }
    
    .article-meta {
        gap: 15px;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
    }
    
    .article-navigation .next-article {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .article-detail {
        padding: 25px 20px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-body {
        font-size: 15px;
    }
    
    .article-body h2 {
        font-size: 22px;
    }
    
    .article-body h3 {
        font-size: 19px;
    }
    
    .article-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

/* Responsive Styles for New Pages */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        flex: 0 0 80px;
        font-size: 18px;
    }
    
    .timeline-content {
        margin-left: 20px;
        margin-right: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-right: none;
        border-left: 4px solid var(--primary-color);
    }
    
    .news-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .service-features {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .about-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .news-category-tabs {
        justify-content: flex-start;
    }
    
    .news-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

