:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #1A1A2E;
    --accent: #F7C948;
    --bg: #FAFAFA;
    --text: #333333;
    --white: #FFFFFF;
    --gray-light: #F0F0F0;
    --gray: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled, .navbar.inner-page {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    font-weight: bold;
}

.logo-text {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .logo-text, .navbar.inner-page .logo-text {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.navbar.scrolled .nav-links a, .navbar.inner-page .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.navbar.scrolled .phone, .navbar.inner-page .phone {
    color: var(--text);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

.navbar.scrolled .mobile-menu-btn span, .navbar.inner-page .mobile-menu-btn span {
    background: var(--text);
}

/* Page Header (from about.html) */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213E 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* About Intro (from about.html) */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, #16213E 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpath fill='%23FAFAFA' d='0,200 L0,100 L100,80 L200,120 L300,60 L400,100 L500,40 L600,80 L700,50 L800,90 L900,70 L1000,110 L1100,60 L1200,100 L1200,200 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 0 0 55%;
    max-width: 55%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
    font-size: 14px;
}

.hero h1 {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-subtitle span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 16px 38px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.hero-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        flex: 100%;
        max-width: 100%;
    }

    .hero-image {
        flex: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 12px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.about-content {
    flex: 1;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.about-content .section-desc {
    margin: 0;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: white; /* Added based on about.html */
}

.about-feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.about-stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

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

.about-stat-number {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-stat-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        flex: 100%;
        max-width: 100%;
        order: -1;
    }

    .about-content .section-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}

/* Why Choose Us */
.why-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Services */
.services {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2D3A4F 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.3);
    background: linear-gradient(135deg, var(--secondary) 0%, #2D3A4F 100%);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}

.service-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
            }
        }

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Process */
.process {
    background: var(--white);
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.step-number {
    width: 96px;
    height: 96px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.4s;
}

.process-step:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.step-desc {
    color: var(--gray);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    background: var(--bg);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 14px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
}

/* Articles Section */
.articles {
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.article-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.article-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray);
}

.articles-more {
    text-align: center;
    margin-top: 40px;
}

.articles-more .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.articles-more .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.booking .section-title,
.booking .section-desc {
    color: var(--white);
}

.booking .section-desc {
    opacity: 0.9;
}

.booking-actions {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.booking-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 36px;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    min-width: 280px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}

.booking-btn-call::before {
    background: var(--primary);
}

.booking-btn-wechat::before {
    background: #07C160;
}

.booking-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.booking-btn-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.booking-btn-call .booking-btn-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.booking-btn-wechat .booking-btn-icon {
    background: linear-gradient(135deg, #07C160 0%, #06AD56 100%);
}

.booking-btn-content {
    text-align: left;
}

.booking-btn-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.booking-btn-desc {
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 768px) {
    .booking-actions {
        flex-direction: column;
        align-items: center;
    }

    .booking-btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile Bottom Bar - WeChat Style TabBar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F7F7F7;
    border-top: 1px solid #E0E0E0;
    z-index: 1000;
}

.mobile-bottom-bar-inner {
    display: flex;
    justify-content: space-around;
    padding: 8px 0 6px;
}

.mobile-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #999;
    font-size: 10px;
    transition: color 0.3s;
    min-width: 50px;
    padding: 4px 0;
}

.mobile-tab-item.active {
    color: var(--primary);
}

.mobile-tab-icon {
    font-size: 22px;
    line-height: 1;
}

.mobile-tab-item.active .mobile-tab-icon {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-text {
    color: var(--white);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-stats {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .phone,
    .navbar .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 12px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .process-steps::before {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .booking-form {
        padding: 32px 24px;
    }
}

/* Filter Tabs (from articles.html) */
.filter-section {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-light);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    background: transparent;
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* Articles Section Specifics */
.articles-section {
    padding: 60px 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--gray-light);
}

.pagination a:hover,
.pagination span.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 24px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Article Detail Styles */
.article-meta-top {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    justify-content: center;
}

.article-tag {
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.article-date {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-section {
    padding: 60px 0;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.article-main {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.article-cover {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body h2 {
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    margin: 32px 0 16px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin: 28px 0 14px;
}

.article-body p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-body li {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-body strong {
    color: var(--secondary);
    font-weight: 600;
}

.article-tips {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-left: 4px solid var(--primary);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

.article-tips h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.article-tips p {
    margin-bottom: 0;
}

/* Article Footer */
.article-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.article-tags a {
    padding: 6px 14px;
    background: var(--bg);
    color: var(--gray);
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.article-tags a:hover {
    background: var(--primary);
    color: var(--white);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-share span {
    font-weight: 600;
    color: var(--secondary);
}

.share-icons {
    display: flex;
    gap: 12px;
}

.share-icon {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.share-icon:hover {
    background: var(--primary);
    color: var(--white);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.related-list {
    list-style: none;
}

.related-list li {
    margin-bottom: 16px;
}

.related-list a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s;
}

.related-list a:hover {
    color: var(--primary);
}

.related-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-info span {
    font-size: 12px;
    color: var(--gray);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

.category-list a:hover {
    background: var(--primary);
    color: var(--white);
}

.category-list span:last-child {
    font-weight: 600;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    color: var(--white);
}

.cta-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary);
    width: 100%;
    justify-content: center;
}

@media (max-width: 1024px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

/* Services Page */
.services-section {
    padding: 80px 0;
    background: var(--bg);
}

/* Service Detail */
.service-detail {
    padding: 60px 0;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.detail-content h2 {
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin: 32px 0 16px;
}

.detail-content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-section {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.price-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
}

.price-list {
    list-style: none;
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: var(--text);
}

.price-val {
    color: var(--primary);
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: white;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--gray);
    font-size: 15px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
    gap: 20px;
}

.nav-prev,
.nav-next {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    max-width: 50%;
}

.nav-prev:hover:not(.disabled),
.nav-next:hover:not(.disabled) {
    background: var(--primary);
}

.nav-prev:hover:not(.disabled) .nav-label,
.nav-prev:hover:not(.disabled) .nav-title,
.nav-next:hover:not(.disabled) .nav-label,
.nav-next:hover:not(.disabled) .nav-title {
    color: var(--white);
}

.nav-prev.disabled,
.nav-next.disabled {
    opacity: 0.5;
    cursor: default;
}

.nav-next {
    text-align: right;
    align-items: flex-end;
}

.nav-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
