:root {
    --primary-color: #0D8B5E;
    --primary-light: #2EAD7A;
    --primary-dark: #0A6E4A;
    --secondary-color: #10b981;
    --secondary-light: #34D399;
    --accent-color: #F59E0B;
    --accent-light: #FCD34D;
    --gradient-primary: linear-gradient(135deg, #0D8B5E 0%, #10B981 100%);
    --gradient-warm: linear-gradient(135deg, #0D8B5E 0%, #34D399 100%);
    --gradient-cool: linear-gradient(135deg, #0A6E4A 0%, #0D8B5E 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

h1,
h2,
h3,
h4,
.logo {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
    position: relative;
    min-height: 100vh;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(13, 139, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bg-light {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 按钮样式 */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(13, 139, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 139, 94, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-3px);
}

/* 导航栏 */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(13, 139, 94, 0.1);
    transition: var(--transition);
}

.navbar:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

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

.btn-nav {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 10px 20px;
    border-radius: 6px;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-light);
    padding: 5px;
    border-radius: 8px;
    margin-right: 20px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn.active:hover {
    color: var(--bg-white);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 30%, rgba(13, 139, 94, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #f0fafb 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::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 100 100"><circle cx="50" cy="50" r="1" fill="rgba(13, 139, 94, 0.05)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(13, 139, 94, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 139, 94, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0.9;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s backwards;
}

.hero-slogan {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    margin-bottom: 30px;
    color: var(--text-light);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards;
}

.hero-mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s backwards;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(10px);
}

.mission-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.mission-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s backwards;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    flex: 1 1 auto;
    white-space: nowrap;
}

.hero-features li:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(13, 139, 94, 0.1);
    border-color: var(--primary-light);
}

.hero-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s backwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    animation: fadeIn 1.5s ease-in 1s backwards;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(20px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

/* 客户评价 */
.testimonial-hero {
    padding: 60px 0;
}

.testimonial-main {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 30px;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.link-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-more:hover {
    gap: 12px;
}

/* 核心优势 */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
}

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

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(13, 139, 94, 0.3);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(13, 139, 94, 0.4);
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 700;
}

/* 通用标题 */
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-warm);
    border-radius: 10px;
}

.service-area .section-title::after,
.packages .section-title::after,
.testimonials .section-title::after {
    display: none;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* 关于我们 - 优雅改进版 */
.about {
    background: #ffffff;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-info {
    position: sticky;
    top: 180px;
    padding-top: 160px;
}

.about-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 139, 94, 0.05);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-lead strong,
.business-profile strong,
.hero-mission strong,
.hero-features strong,
.contact-quote strong {
    color: var(--primary-color);
    font-weight: 700;
}

.business-profile {
    margin-top: 36px;
    padding: 28px 0 4px 24px;
    border-top: 1px solid rgba(13, 139, 94, 0.12);
    border-left: 3px solid var(--primary-color);
}

.business-profile-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.business-profile-heading i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.business-profile-heading h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.business-profile p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(13, 139, 94, 0.1);
}

.card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(13, 139, 94, 0.1) 0%, rgba(13, 139, 94, 0.05) 100%);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.about-card:hover .card-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: rotate(-5deg);
}

.card-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 1200px) {

    .about-wrapper,
    .why-us-wrapper,
    .services-wrapper,
    .process-wrapper {
        gap: 40px;
    }

    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {

    .about-wrapper,
    .why-us-wrapper,
    .services-wrapper,
    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .about-info,
    .why-us-info,
    .services-info,
    .process-info {
        position: static;
        margin-bottom: 60px;
        text-align: center;
        order: 1;
    }

    .about-info {
        padding-top: 0;
    }

    .business-profile {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        border-left: 0;
    }

    .business-profile-heading {
        justify-content: center;
    }

    .why-us-grid,
    .process-timeline {
        order: 2;
    }

    .about-card,
    .why-us-card,
    .service-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .about-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
}

/* 为什么选择我们 - 优雅改进版 */
.why-us {
    background: #fcfcfd;
    position: relative;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: start;
}

.why-us-info {
    position: sticky;
    top: 180px;
    order: 2;
    padding-top: 160px;
}

.why-us-grid {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-us-card {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-us-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(16, 185, 129, 0.1);
}

.why-us-card .card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #10b981;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.why-us-card:hover .card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    transform: rotate(5deg);
}

/* 名医合作展示卡片 */
.doctor-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(13, 139, 94, 0.08);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.doctor-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(13, 139, 94, 0.15);
    border-color: rgba(13, 139, 94, 0.2);
}

.doctor-feature-image {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.doctor-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.doctor-feature-text {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-feature-text .about-badge {
    background: rgba(13, 139, 94, 0.08);
}

.doctor-feature-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.doctor-feature-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

    .doctor-feature-image {
        min-height: 240px;
    }

    .doctor-feature-text {
        padding: 32px 28px;
    }

    .doctor-feature-text h3 {
        font-size: 1.4rem;
    }
}


@media (max-width: 576px) {
    .why-us-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
}

/* 服务内容 - 优雅改进版 */
.services {
    background: #ffffff;
    position: relative;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services-info {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.service-card {
    display: flex;
    gap: 20px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #f5fafe 0%, #f8fffe 100%);
    border-radius: 20px;
    border: 1px solid rgba(13, 139, 94, 0.06);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13, 139, 94, 0.1);
    border-color: rgba(13, 139, 94, 0.12);
}

/* 交错入场动画 */
.service-card:nth-child(1) {
    transition-delay: 0.0s;
}

.service-card:nth-child(2) {
    transition-delay: 0.05s;
}

.service-card:nth-child(3) {
    transition-delay: 0.1s;
}

.service-card:nth-child(4) {
    transition-delay: 0.15s;
}

.service-card:nth-child(5) {
    transition-delay: 0.2s;
}

.service-card:nth-child(6) {
    transition-delay: 0.25s;
}

.service-card:nth-child(7) {
    transition-delay: 0.3s;
}

.service-card:nth-child(8) {
    transition-delay: 0.35s;
}

.service-card:nth-child(9) {
    transition-delay: 0.4s;
}

.service-card:nth-child(10) {
    transition-delay: 0.45s;
}

.service-number-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(13, 139, 94, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.service-card:hover .service-number-badge {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(13, 139, 94, 0.25);
}

.service-card .card-content p {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
}

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

@media (max-width: 576px) {
    .service-card {
        padding: 20px 22px;
        gap: 16px;
    }

    .service-number-badge {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* 服务流程 - 优雅改进版 */
.process {
    background: #fdfdfd;
    position: relative;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: start;
}

.process-info {
    position: sticky;
    top: 180px;
    order: 2;
    padding-top: 160px;
}

.process-timeline {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 32px;
}

.step-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 60px;
    flex-shrink: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid rgba(13, 139, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.process-step:hover .step-number {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(13, 139, 94, 0.3);
}

.step-line {
    position: absolute;
    top: 48px;
    bottom: -32px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, rgba(13, 139, 94, 0.1) 100%);
    z-index: 1;
}

.step-card {
    padding: 32px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-grow: 1;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(13, 139, 94, 0.1);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}


@media (max-width: 576px) {
    .process-step {
        gap: 16px;
    }

    .step-number-container {
        width: 40px;
    }

    .step-card {
        padding: 24px;
    }
}

/* 服务套餐 - 水平对比版 */
.packages {
    background: #fdfdfd;
    text-align: center;
}

.packages .section-title {
    margin-bottom: 20px;
}

.packages .section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background: #ffffff;
    padding: 0;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(13, 139, 94, 0.12);
    border-color: rgba(13, 139, 94, 0.2);
}

.package-header {
    padding: 40px 40px 30px;
    background: #f8faff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.package-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.package-price .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.package-price .period {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.package-desc {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 700;
    opacity: 0.8;
}

.package-features {
    list-style: none;
    padding: 32px 40px;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.package-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: left;
}

.package-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 2px;
}

.package-card .btn {
    margin: 0 40px 40px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid rgba(13, 139, 94, 0.1);
    color: var(--primary-color);
}

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

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

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

.btn-package span {
    position: relative;
    z-index: 1;
}

/* 24h在线响应 */
.standby {
    padding: 80px 0;
}

.standby-content {
    max-width: 800px;
    margin: 50px auto 0;
}

.standby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.standby-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.standby-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.standby-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.standby-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* 团队介绍 */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.team-member-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.team-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.team-member-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-member-card h4 {
    font-size: 1.3rem;
    margin: 20px 20px 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 20px 12px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0 20px 20px;
}

/* 客户案例画廊 */
.testimonials-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--bg-white);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    background: var(--bg-light);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    padding: 50px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption p {
    color: var(--bg-white);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

/* 服务范围 */
.service-area {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.service-area-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.service-area-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.service-area-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.coverage-list {
    list-style: none;
    margin-bottom: 40px;
}

.coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.coverage-list li:hover {
    background: #e8f0fe;
    transform: translateX(5px);
}

.coverage-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.coverage-list span {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.service-features-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), #1A6B9C);
    border-radius: 12px;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.feature-box-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-box-item i {
    font-size: 2rem;
    opacity: 0.9;
}

.feature-box-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--bg-white);
}

.feature-box-item p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

/* 跨境陪诊展示 - 卡片堆叠 */
.escort-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(13, 139, 94, 0.03) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 28px;
    border: 1px solid rgba(13, 139, 94, 0.08);
}

.escort-showcase-visual {
    position: relative;
    height: 380px;
    perspective: 1000px;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-card {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f0f0f0;
}

/* 卡片堆叠位置 */
.stack-card:nth-child(1) {
    z-index: 3;
    top: 0;
    left: 10%;
    transform: rotate(-2deg);
}

.stack-card:nth-child(2) {
    z-index: 2;
    top: 15px;
    left: 5%;
    transform: rotate(2deg) scale(0.96);
    filter: brightness(0.92);
}

.stack-card:nth-child(3) {
    z-index: 1;
    top: 30px;
    left: 0%;
    transform: rotate(-4deg) scale(0.92);
    filter: brightness(0.85);
}

/* 活跃卡片动画 */
.stack-card.active {
    z-index: 5 !important;
    transform: rotate(0deg) scale(1) !important;
    top: 0 !important;
    left: 8% !important;
    filter: brightness(1) !important;
    box-shadow: 0 25px 60px rgba(13, 139, 94, 0.25);
}

.stack-card.leaving {
    animation: cardLeave 0.6s ease forwards;
}

@keyframes cardLeave {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: rotate(8deg) scale(0.85) translateX(30px);
        opacity: 0.6;
        z-index: 0;
    }
}

/* 24h 徽章 */
.escort-badge-24h {
    position: absolute;
    top: -20px;
    right: 2%;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(13, 139, 94, 0.5), 0 0 60px rgba(13, 139, 94, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.badge-number {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.badge-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 2px;
}

.badge-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    animation: badgePulse 2s ease-in-out infinite 0.8s;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* 右侧信息 */
.escort-showcase-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.escort-showcase-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.escort-stats {
    display: flex;
    gap: 24px;
}

.escort-stat {
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(13, 139, 94, 0.06);
    transition: all 0.4s ease;
}

.escort-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(13, 139, 94, 0.12);
    border-color: rgba(13, 139, 94, 0.15);
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .escort-showcase {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 40px;
    }

    .escort-showcase-visual {
        height: 300px;
    }

    .escort-stats {
        gap: 12px;
    }

    .escort-stat {
        padding: 16px 10px;
    }

    .stat-value {
        font-size: 1.3rem;
    }
}

/* 图片懒加载优化 */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* 价值观 */
.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.value-card p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 联系我们 - 简洁商务版 */
.contact {
    background: #1a1a2e;
    color: #ffffff;
    position: relative;
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-headline h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.contact-headline p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 22px 24px;
    color: inherit;
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

a.contact-detail-item {
    transition: all 0.3s ease;
}

a.contact-detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.contact-detail-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    font-size: 1.1rem;
    background: var(--primary-color);
    border-radius: 8px;
}

.contact-detail-content {
    min-width: 0;
}

.contact-detail-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-detail-content p {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
}

.channel-icon.whatsapp {
    background: #25D366;
}

.channel-icon.wechat {
    background: #07C160;
}

.channel-icon.xiaohongshu {
    background: #FE2C55;
}

.channel-icon.facebook {
    background: #1877F2;
}

.channel-icon.youtube {
    background: #FF0000;
}

.channel-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.channel-value {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.contact-footer-note {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-footer-note p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
}

@media (max-width: 992px) {
    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-channels {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-detail-item {
        align-items: flex-start;
        padding: 20px;
    }

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

.social-links p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    transition: var(--transition);
    color: white;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 页脚 */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--bg-white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
}

.footer-link:hover {
    color: var(--bg-white);
}

/* 团队风采 - 跑马灯 */
.team-showcase {
    background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 40%, #16213e 100%);
    overflow: hidden;
    position: relative;
}

.team-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(13, 139, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
    pointer-events: none;
    animation: bgShift 15s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -20px);
    }
}

.team-showcase .section-title {
    color: #fff;
}

.team-showcase .section-title::after {
    display: none;
}

.team-showcase .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.marquee-wrapper {
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.marquee-wrapper:nth-child(3) {
    transform: translateX(60px);
    transition-delay: 0.2s;
}

.marquee-wrapper.is-visible {
    opacity: 1;
    transform: translateX(0) !important;
}

/* 两侧渐变遮罩 */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0f0e17 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0f0e17 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.marquee-left {
    animation: scrollLeft 30s linear infinite;
}

.marquee-right {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

/* 悬停暂停 */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    position: relative;
    flex-shrink: 0;
    width: 380px;
    height: 214px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.marquee-item:hover {
    transform: scale(1.08) translateY(-8px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(13, 139, 94, 0.4), 0 0 30px rgba(13, 139, 94, 0.15);
    z-index: 10;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.marquee-item:hover img {
    transform: scale(1.05);
}

.marquee-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.marquee-item:hover .marquee-overlay {
    opacity: 1;
}

.marquee-overlay span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.marquee-item:hover .marquee-overlay span {
    transform: translateY(0);
}

/* 委托人合影区域 */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 139, 94, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 轮播容器 */
.testimonial-carousel {
    position: relative;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-carousel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* 单张幻灯片 */
.carousel-slide {
    display: none;
    animation: carouselFadeOut 0.5s ease;
}

.carousel-slide.active {
    display: block;
    animation: carouselFadeIn 0.6s ease;
}

@keyframes carouselFadeIn {
    from {
        opacity: 0;
        transform: scale(0.97) translateX(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes carouselFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.carousel-slide-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

/* 图片区域 */
.carousel-image {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fafb 0%, #f5fafa 50%, #f9fafb 100%);
    padding: 24px;
    min-height: 480px;
}

.carousel-image img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.carousel-slide.active .carousel-image img {
    animation: imageFloat 3s ease-in-out infinite alternate;
}

@keyframes imageFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* 文字区域 */
.carousel-text {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-quote {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
    margin-top: 8px;
    position: relative;
}

.carousel-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(13, 139, 94, 0.15);
    font-family: Georgia, serif;
    position: absolute;
    top: -30px;
    left: -10px;
    line-height: 1;
}

.carousel-counter {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(13, 139, 94, 0.5);
    font-weight: 600;
    letter-spacing: 2px;
}

/* 标签样式 */
.testimonial-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(13, 139, 94, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid rgba(13, 139, 94, 0.12);
    letter-spacing: 0.5px;
    width: fit-content;
}

/* 导航按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(13, 139, 94, 0.3);
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

/* 进度指示器 */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    border: none;
    background: rgba(13, 139, 94, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.carousel-dot.active {
    background: rgba(13, 139, 94, 0.15);
}

.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* 响应式设计 */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero-content,
    .hero-text {
        width: 100%;
        min-width: 0;
    }

    .hero-features li {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .mission-item {
        min-width: 0;
    }

    .why-us-wrapper,
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-info,
    .process-info {
        position: static;
        order: 1;
        padding-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .why-us-grid,
    .process-timeline {
        order: 2;
    }

    .marquee-item {
        width: 280px;
        height: 158px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 50px;
    }

    .language-switcher {
        margin-right: 10px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 8px;
        min-width: 200px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
        min-height: auto;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }

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

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

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        min-height: 240px;
    }

    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-features-box {
        grid-template-columns: 1fr;
    }

    .carousel-slide-inner {
        flex-direction: column;
    }

    .carousel-image {
        flex: none;
        max-width: 100%;
        min-height: 320px;
        padding: 20px;
    }

    .carousel-image img {
        max-height: 360px;
    }

    .carousel-text {
        padding: 28px 24px;
    }

    .carousel-quote {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

    .services-grid,
    .team-grid,
    .gallery-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        min-height: 220px;
    }

    .team-photo {
        height: 280px;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .language-switcher {
        margin-right: 5px;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .site-footer {
        font-size: 0.78rem;
        padding: 16px 12px;
    }

    .site-footer-line {
        gap: 2px 6px;
    }
}

/* 站点页脚 / Site footer with ICP filing info */
.site-footer {
    background: var(--bg-light);
    border-top: 1px solid rgba(31, 41, 55, 0.08);
    color: var(--text-light);
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 22px 16px;
    text-align: center;
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.site-footer-line {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 8px;
}

.site-footer-sep {
    color: rgba(31, 41, 55, 0.3);
}

.site-footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--primary-color);
    text-decoration: underline;
}

.public-security-filing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.public-security-filing img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 auto;
}
