:root {
    --primary-color: #0192BC;
    --primary-dark: #017a9e;
    --accent-color: #44F3C9;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f0f7fb;
    --white: #ffffff;
    --border-color: #d4edf5;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    /* === 渐变主题色 === */
    --gradient-primary: linear-gradient(135deg, #0192BC 0%, #44F3C9 100%);
    --gradient-primary-hover: linear-gradient(135deg, #017a9e 0%, #2ad4ac 100%);
    --gradient-card-bg: linear-gradient(145deg, #f8fdff 0%, #f0faf8 100%);
    --shadow-brand: 0 4px 20px rgba(1, 146, 188, 0.10);
    --shadow-brand-hover: 0 8px 30px rgba(1, 146, 188, 0.22);
    --bg-page: #eef7fb;
}

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

            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 22px; /* Updated gap */
    line-height: 1.6;
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal-text {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-fade {
    animation: fadeIn 1.2s ease forwards;
}

.reveal-scale {
    animation: scaleIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.5s; opacity: 0; }
.delay-4 { animation-delay: 0.7s; opacity: 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(1, 146, 188, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-hover);
}

.btn-outline {
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 146, 188, 0.2);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-add {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 2000; /* 提高层级，确保下拉在 hero 之上 */
    height: 70px;
    display: flex;
    align-items: center;
    overflow: visible; /* 确保下拉不被裁切 */
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3000; /* 提高到更高层级，覆盖 hero/内容 */
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 桌面端：为悬停添加样式备援，确保下拉在 hover 时显示（绕过 JS 问题） */
.nav-list li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 确保下拉接收鼠标事件 */
.dropdown-menu {
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* 医院和医生下拉菜单样式 */
.hospital-dropdown,
.doctor-dropdown {
    min-width: 350px;
    padding: 20px;
}

.dropdown-search-section {
    width: 100%;
}

.dropdown-search-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.region-list,
.department-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.region-item,
.dept-item {
    display: block;
    padding: 8px 12px;
    text-align: center;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-size: 13px;
    transition: all 0.3s ease;
}

.region-item:hover,
.dept-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    padding: 8px 12px;
}

.region-item.all-regions,
.dept-item.all-depts {
    grid-column: 1 / -1;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.region-item.all-regions:hover,
.dept-item.all-depts:hover {
    background: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.search-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Header Search Overlay */
.header-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-search-container {
    background: white;
    border-radius: 12px;
    padding: 48px 40px 32px;
    max-width: 700px;
    width: 90%;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-search-overlay.active .header-search-container {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: -18px;
    right: -18px;
    background: white;
    border: none;
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.search-close:hover {
    background: var(--bg-light);
    color: var(--text-color);
    transform: translateY(-2px);
}

.header-search-box {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    align-items: center;
}

.header-search-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.header-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.header-search-box .btn {
    padding: 14px 34px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-header-search i {
    margin-right: 10px;
    display: inline-block;
}

.search-suggestions {
    margin-top: 20px;
}

.suggestion-title {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tags .tag {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.suggestion-tags .tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.lang-selector .lang-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 15px;
}

.lang-selector .gtranslate_wrapper {
    display: inline-flex;
    align-items: center;
}

.lang-selector .gt_selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 30px 6px 12px;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1.2;
    min-width: 150px;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-light) 50%),
                      linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
    background-position: calc(100% - 16px) 55%, calc(100% - 11px) 55%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.lang-selector .gt_selector:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 146, 188, 0.15);
}

.lang-selector .gt_selector:hover {
    border-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85)), 
                url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=2000') no-repeat center center;
    background-size: cover;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn i {
    margin-left: 8px;
}

/* Comparison Card */
.comparison-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
}

.comparison-card h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.comparison-table {
    margin-bottom: 20px;
}

/* Carousel Styles */
.comparison-carousel {
    position: relative;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f5f9fc 0%, #f0f7fb 100%);
    padding: 40px 20px 70px 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    display: none;
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    justify-content: center;
    position: relative;
    opacity: 1;
}

@keyframes slideInFadeOut {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slide-content {
    text-align: center;
    width: 100%;
    max-width: 550px;
}

.slide-header {
    margin-bottom: 30px;
}

.slide-header h4 {
    font-size: 26px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.indicator:hover:not(.active) {
    background: #bbb;
}

.slide-comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 28px;
}

.comparison-item {
    flex: 1;
    max-width: 160px;
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.comparison-item.china {
    border-left: 5px solid var(--primary-color);
}

.comparison-item.overseas {
    border-right: 5px solid #ddd;
    opacity: 0.7;
}

.comparison-item .label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.comparison-item .value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.5;
}

.comparison-item .value.highlight-text {
    color: var(--primary-color);
    font-size: 18px;
}

.comparison-item .value.muted {
    color: #999;
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 15px;
}

.comparison-divider {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    letter-spacing: 1px;
}

.time-saving {
    margin-top: 20px;
}

.badge-green {
    display: inline-block;
    background: linear-gradient(135deg, #e8fcf5 0%, #dff9f0 100%);
    color: #0c8f5b;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #c5f0e3;
    letter-spacing: 0.3px;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-prev, .carousel-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-prev:active, .carousel-next:active {
    transform: scale(0.95);
}

/* Deprecated table styles - kept for backwards compatibility */
.table-header, .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.table-header {
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.highlight-text {
    color: #28a745; /* Or keep it green for savings */
    font-weight: 600;
}
.table-header .highlight-text {
    color: var(--text-light);
}
.table-row span:nth-child(2) {
    color: var(--primary-color); /* CN Price */
    font-weight: 700;
}

.muted {
    color: #999;
    text-decoration: line-through;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8fcf5;
    color: #0c8f5b;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #aaa;
}

/* VIP Journey Section */
.vip-journey {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gradient-primary);
    color: #ffffff;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 45px;
    margin-bottom: 25px;
}

.currency-selector {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.currency-selector select {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Steps Visual */
.steps-visual {
    background: linear-gradient(180deg, #f0fbff 0%, #fff 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.steps-visual h3 {
    margin-bottom: 40px;
    font-size: 24px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 20px;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    align-self: flex-start;
    margin-left: 30%;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(1, 146, 188, 0.1);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--primary-color);
    margin-top: 80px; /* Adjust based on step number/icon height */
    opacity: 0.3;
}

.step-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 150px;
}

/* Adjustments to reduce crowding and improve responsiveness for the 8-step layout */
.steps-container {
    gap: 18px; /* space between items when wrapping */
    padding: 0 12px;
    align-items: center;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.step-item {
    flex: 0 1 120px; /* don't force equal large widths, allow wrapping */
    margin-bottom: 18px;
}

.step-number {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    align-self: center; /* center the small numbers */
    margin-left: 0;
}

.step-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-bottom: 12px;
}

.step-item p {
    max-width: 200px;
    text-align: center;
}

.step-connector {
    display: none; /* hide long connectors which cause visual crowding */
}

@media (min-width: 1200px) {
    .steps-container { justify-content: space-between; }
    .step-item { flex: 1 1 11%; min-width: 110px; }
    .step-connector { display: block; margin-top: 72px; }
}

@media (max-width: 900px) {
    .steps-visual { padding: 28px; }
    .step-icon { width: 56px; height: 56px; }
    .step-number { font-size: 16px; }
    .detailed-steps { gap: 16px; }
}

@media (max-width: 600px) {
    .steps-container { justify-content: center; }
    .step-item { flex: 0 1 45%; }
    .steps-visual h3 { font-size: 20px; }
}

/* Detailed Steps Cards */
.detailed-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 60px;
    align-items: start;
}

.step-compact {
    background: var(--gradient-card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-brand);
}

.step-compact:hover { transform: translateY(-4px); box-shadow: var(--shadow-brand-hover); }

.compact-number {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 16px;
}

.compact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    background: #fff;
}

.step-compact h4 { font-size: 15px; margin: 0; }
.step-compact p { font-size: 13px; color: var(--text-light); margin: 0; }

@media (max-width: 1200px) { .detailed-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .detailed-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .detailed-steps { grid-template-columns: 1fr; } .compact-icon { width:48px; height:48px; font-size:20px; } }

/* Grid layout for steps: 4 columns x 2 rows with responsive fallbacks */ 
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 18px;
    justify-items: center;
    align-items: start;
    padding: 0 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 220px;
}

.step-number {
    font-size: 18px;
    margin-bottom: 8px;
    align-self: center;
    margin-left: 0;
}

.step-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-bottom: 10px;
}

.step-item p { max-width: 220px; }

.step-connector { display: none; }

@media (max-width: 1200px) {
    .steps-container { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .steps-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
    .steps-container { grid-template-columns: 1fr; }
    .step-icon { width: 56px; height: 56px; }
}

/* Booking Section */
.services-booking {
    padding: 80px 0;
    background-color: #f8faff;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: flex-start;
}

.booking-stage {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.stage-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.stage-title h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stage-title p {
    color: var(--text-light);
    font-size: 15px;
}

.stage-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.selected-count {
    background: #f0f2f5;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--gradient-card-bg);
    border: 1.5px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-brand);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-brand-hover);
    transform: translateY(-2px);
}

.service-card.mandatory {
    background: #fafbfc;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-header h4 {
    font-size: 17px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-header .price {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 18px;
}

.card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.btn-disabled {
    background: #f0f2f5;
    color: #a0aec0;
    cursor: not-allowed;
    border: none;
}

.btn-full {
    width: 100%;
}

.booking-footer {
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid #edf2f7;
    padding-top: 30px;
}

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

.summary-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
}

.summary-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

.summary-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.total-price {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 5px;
}

.selected-status {
    font-size: 14px;
    color: var(--text-light);
}

.summary-items {
    margin-bottom: 30px;
}

.summary-items li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.item-price {
    font-weight: 600;
    color: #1a1a1a;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-light {
    background: #fff5f5;
    color: #e53e3e;
}

@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    .booking-sidebar {
        position: static;
    }
}

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

/* Departments Section */
.departments-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.dept-card {
    background: #f0f9ff;
    border: 1px solid #edf2f7;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.dept-card > * {
    position: relative;
    z-index: 2;
}

.dept-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.dept-card.dept-card-has-bg {
    background-size: cover;
    background-position: center;
    border-color: transparent;
}

.dept-card.dept-card-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dept-card.dept-card-has-bg:hover {
    background-size: cover;
    background-position: center;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.dept-card.dept-card-has-bg h3,
.dept-card.dept-card-has-bg p,
.dept-card.dept-card-has-bg .btn-text,
.dept-card.dept-card-has-bg .btn-text i {
    color: #ffffff;
}

.dept-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: #e6f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.dept-card.dept-card-has-bg .dept-icon {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.dept-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.dept-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover i {
    transform: translateX(3px);
    transition: transform 0.2s;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: #f8faff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-image {
    position: relative;
    height: 220px;
}

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

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.project-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: var(--text-light);
}

.project-meta .price {
    color: #28a745;
    font-weight: 700;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Services highlights specific styles */
.services-highlights .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    margin-top: 18px;
    align-items: start;
}

.services-highlights .service-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(1, 146, 188, 0.18), 0 8px 18px rgba(15, 23, 42, 0.12);
    display: block;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(1, 146, 188, 0.16);
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease;
    min-height: 240px;
}

.services-highlights .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(1, 146, 188, 0.28), 0 10px 22px rgba(15, 23, 42, 0.16);
}

.services-highlights .service-image {
    width: 100%;
    height: 140px;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    display: block;
}

.services-highlights .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    transition: transform .5s ease;
}

.services-highlights .service-card:hover .service-image img {
    transform: scale(1.04);
}

.services-highlights .service-content {
    padding: 18px 20px 22px;
}

.services-highlights .service-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #072029;
    font-weight: 600;
}

.services-highlights .service-content p {
    margin: 0;
    color: #475b61;
    line-height: 1.65;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .services-highlights .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-highlights .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .services-highlights .service-image {
        height: 140px;
    }
    .services-highlights .service-content {
        padding: 12px 14px 16px;
    }
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gradient-card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-brand);
}

.news-card:hover {
    background: var(--gradient-card-bg);
    box-shadow: var(--shadow-brand-hover);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background: #e6f7fa;
    color: var(--primary-color);
    border-radius: 10px;
}

.news-date .day {
    font-size: 20px;
    font-weight: 700;
}

.news-date .month {
    font-size: 12px;
    text-transform: uppercase;
}

.news-content h4 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content h4 a:hover {
    color: var(--primary-color);
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Footer */
.footer {
    background: #09203f;
    color: white;
    padding: 0;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}

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

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.link-column h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.link-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.link-column ul li a:hover {
    color: white;
}

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

.contact-column i {
    color: var(--primary-color);
    width: 20px;
}

.qr-codes {
    margin-top: 25px;
}

.qr-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.qr-item img {
    width: 100px;
    height: 100px;
    padding: 5px;
    background: white;
    border-radius: 4px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
}

.footer-disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .copyright-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* Floating Contact Module */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 16px 8px 8px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    text-decoration: none;
    color: #333;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

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

.btn-label {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.label-top {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    line-height: 1;
    margin-bottom: 2px;
}

.label-main {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

/* WhatsApp Specific */
.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp .btn-icon {
    background: rgba(255,255,255,0.2);
}

.contact-btn.whatsapp .label-top {
    color: rgba(255,255,255,0.8);
}

/* WeChat Specific */
.contact-btn.wechat .online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* WeChat Popup */
.wechat-popup {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 190px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.wechat-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 25px;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.contact-btn.wechat:hover .wechat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wechat-popup img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 12px;
}

.wechat-popup p {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.wechat-popup .online-status {
    font-size: 11px;
    color: #10b981;
    margin-bottom: 0;
}

/* Responsive for Floating Contact */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-label {
        display: none; /* Mobile only show icons maybe? No, let's keep it but smaller */
    }
    
    .contact-btn {
        padding: 8px;
    }
    
    .contact-buttons {
        gap: 10px;
    }
}

/* Remove old styles */

/* Responsive */
@media (max-width: 992px) {
    .nav, .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-number {
        margin-left: 0;
        margin-bottom: 5px;
        align-self: center;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        gap: 30px;
        flex-direction: column;
    }
    
    .copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .legal-links a {
        margin: 0 10px;
    }

    .news-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-date {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
        padding: 0 15px;
    }
}

/* Remove underline for all anchor links */
a, a:visited {
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
}


/* VIP Journey Service Selection Styles */
.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:not(.mandatory):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 146, 188, 0.15);
}

.service-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(1, 146, 188, 0.02), white);
}

.service-card.selected::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 1;
}

.service-card.mandatory.selected::before {
    background: #6c757d;
}

.service-toggle-btn {
    transition: all 0.3s ease;
}

.service-toggle-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 146, 188, 0.25);
}

.summary-item-dynamic {
    animation: slideInRight 0.3s ease;
    background: rgba(1, 146, 188, 0.05);
    margin: -5px -10px;
    padding: 10px;
    border-radius: 4px;
}

.summary-item-static {
    opacity: 0.7;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#total-price-display {
    transition: all 0.3s ease;
}

#total-price-display.updating {
    transform: scale(1.1);
    color: var(--primary-color);
}

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

/* Loading state */
.service-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-card.selected::before {
        width: 24px;
        height: 24px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
}

/* ===================================================
   全局页面背景 & 通用卡片提升
=================================================== */
html, body {
    background-color: var(--bg-page, #eef7fb);
}

.comparison-card,
.doctor-card,
.hospital-card,
.package-card,
.info-card,
.testimonial-card {
    background: var(--gradient-card-bg);
    box-shadow: var(--shadow-brand);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.comparison-card:hover,
.doctor-card:hover,
.hospital-card:hover,
.package-card:hover {
    box-shadow: var(--shadow-brand-hover);
    transform: translateY(-2px);
}

.vip-journey {
    background: var(--bg-page, #eef7fb);
}
.news-section {
    background-color: var(--bg-page, #eef7fb);
}

/* 导航激活态渐变下划线 */
.nav-list a.active {
    color: var(--primary-color);
    position: relative;
}
.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===================================================
   多语言英文适配：防止长英文文字撑开导航/卡片
=================================================== */
html[lang^="en"] .nav-list {
    gap: 16px;
}
html[lang^="en"] .nav-list a {
    font-size: clamp(11px, 0.85vw, 13px);
    letter-spacing: 0;
    white-space: nowrap;
}
html[lang^="en"] .header-actions .appointment-btn {
    font-size: 12px;
    padding: 8px 14px;
}
html[lang^="en"] .btn {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}
html[lang^="en"] .hero-title {
    font-size: clamp(28px, 3.5vw, 46px);
}
html[lang^="en"] .section-header h2 {
    font-size: clamp(22px, 2.5vw, 32px);
}
html[lang^="en"] .service-card,
html[lang^="en"] .step-compact,
html[lang^="en"] .news-card,
html[lang^="en"] .comparison-item {
    word-break: break-word;
    overflow-wrap: break-word;
}
html[lang^="en"] .step-item h4,
html[lang^="en"] .step-compact h4 {
    font-size: clamp(12px, 1vw, 15px);
    word-break: break-word;
}
html[lang^="en"] .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
}
html[lang^="en"] .stat-value {
    font-size: clamp(20px, 2.2vw, 28px);
}
html[lang^="en"] .dropdown-menu a {
    white-space: normal;
    word-break: break-word;
}
@media (max-width: 1280px) {
    html[lang^="en"] .nav-list { gap: 10px; }
    html[lang^="en"] .nav-list a { font-size: 11px; }
}
@media (max-width: 1024px) {
    html[lang^="en"] .hero-title { font-size: 26px; }
}
