:root {
    --primary: #3B8BD4;
    --primary-light: #5BA3E0;
    --primary-lighter: #A8D4F5;
    --primary-bg: #EDF6FD;
    --primary-dark: #2A6BA8;
    --tcm-green: #4A8C5C;
    --tcm-gold: #C4973B;
    --tcm-gold-light: #E8C876;
    --text-dark: #2C3E50;
    --text-body: #4A5568;
    --text-light: #718096;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-section: #F0F7FC;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(59,139,212,0.08);
    --shadow-md: 0 4px 16px rgba(59,139,212,0.12);
    --shadow-lg: 0 8px 32px rgba(59,139,212,0.16);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "PingFang SC","Microsoft YaHei",sans-serif; color: var(--text-body); line-height: 1.8; background: var(--bg-white); overflow-x: hidden; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { color: var(--text-dark); font-weight: 600; line-height: 1.4; }
.container { max-width: 1200px; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 2rem; display: inline-block; position: relative; padding-bottom: 16px; }
.section-title h2::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--tcm-gold)); border-radius: 2px; }
.section-title p { color: var(--text-light); margin-top: 12px; }
.top-bar { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 8px 0; font-size: 0.85rem; }
.top-welcome { opacity: 0.9; }
.top-phone { color: #fff; margin-right: 16px; }
.top-phone strong { font-size: 1rem; }
.btn-top-appointment { background: var(--tcm-gold); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; margin-right: 12px; transition: var(--transition); }
.btn-top-appointment:hover { background: var(--tcm-gold-light); color: #fff; transform: translateY(-1px); }
.lang-dropdown { position: relative; margin-left: 12px; }
.lang-dropdown-toggle { cursor: pointer; padding: 4px 12px; border: 1px solid rgba(255,255,255,0.4); border-radius: 4px; font-size: 0.8rem; color: #fff; }
.lang-dropdown-menu { display: none; position: absolute; right: 0; top: 100%; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 140px; z-index: 9999; padding: 8px 0; }
.lang-dropdown-menu.show { display: block; }
.lang-dropdown-menu a { display: block; padding: 8px 16px; color: var(--text-body); font-size: 0.85rem; }
.lang-dropdown-menu a:hover, .lang-dropdown-menu a.active { background: var(--primary-bg); color: var(--primary); }
.main-nav { background: var(--bg-white); box-shadow: var(--shadow-sm); padding: 12px 0; position: sticky; top: 0; z-index: 1000; }
.brand-logo { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; margin-right: 12px; }
.brand-icon { color: #fff; font-size: 1.4rem; font-weight: 700; }
.brand-name { display: block; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.brand-sub { display: block; font-size: 0.65rem; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }
.navbar-nav .nav-link { color: var(--text-dark); font-weight: 500; padding: 10px 16px; border-radius: var(--radius); transition: var(--transition); font-size: 0.95rem; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); background: var(--primary-bg); }
.nav-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.hero-section { position: relative; }
.hero-swiper { height: 520px; }
.hero-slide { background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(42,107,168,0.75), rgba(59,139,212,0.45)); }
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-title { font-size: 2.8rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-desc { font-size: 1.2rem; opacity: 0.9; margin-bottom: 28px; }
.btn-hero { display: inline-block; background: var(--tcm-gold); color: #fff; padding: 12px 32px; border-radius: 30px; font-weight: 600; transition: var(--transition); box-shadow: 0 4px 16px rgba(196,151,59,0.4); }
.btn-hero:hover { background: var(--tcm-gold-light); color: #fff; transform: translateY(-2px); }
.section { padding: 72px 0; }
.section-alt { background: var(--bg-section); }
.card-tcm { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.card-tcm:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-lighter); }
.card-tcm .card-img { height: 200px; overflow: hidden; }
.card-tcm .card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card-tcm:hover .card-img img { transform: scale(1.05); }
.card-tcm .card-body { padding: 24px; }
.card-tcm .card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.card-tcm .card-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.expert-card { text-align: center; padding: 32px 24px; }
.expert-card .expert-avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; border: 4px solid var(--primary-lighter); box-shadow: var(--shadow-md); }
.expert-card .expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-card .expert-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.expert-card .expert-title { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.expert-card .expert-desc { font-size: 0.85rem; color: var(--text-light); }
.disease-card { padding: 28px; border-left: 4px solid var(--primary); background: var(--bg-white); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow-sm); margin-bottom: 16px; transition: var(--transition); }
.disease-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.disease-card h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--primary-dark); }
.disease-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 12px; }
.stats-bar { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 48px 0; color: #fff; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--tcm-gold-light); }
.stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 4px; }
.page-banner { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 56px 0; color: #fff; position: relative; overflow: hidden; }
.page-banner::before { content: ""; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent); border-radius: 50%; }
.page-title { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.breadcrumb-nav { font-size: 0.9rem; opacity: 0.8; }
.breadcrumb-nav a { color: #fff; }
.breadcrumb-nav a:hover { color: var(--tcm-gold-light); }
.sidebar-nav { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 24px; margin-bottom: 24px; border: 1px solid var(--border); }
.sidebar-title { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); padding-bottom: 16px; border-bottom: 2px solid var(--primary-bg); margin-bottom: 16px; }
.sidebar-menu { list-style: none; }
.sidebar-menu li { margin-bottom: 4px; }
.sidebar-menu a { display: block; padding: 10px 16px; color: var(--text-body); border-radius: var(--radius); font-size: 0.9rem; transition: var(--transition); }
.sidebar-menu a:hover, .sidebar-menu a.active { background: var(--primary-bg); color: var(--primary); font-weight: 500; }
.sidebar-contact { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-lg); padding: 28px 24px; color: #fff; text-align: center; }
.sidebar-contact h5 { color: #fff; margin-bottom: 12px; }
.sidebar-phone { font-size: 1.4rem; font-weight: 700; color: var(--tcm-gold-light); margin-bottom: 16px; }
.btn-sidebar-appointment { display: inline-block; background: var(--tcm-gold); color: #fff; padding: 10px 28px; border-radius: 25px; font-weight: 600; transition: var(--transition); }
.btn-sidebar-appointment:hover { background: var(--tcm-gold-light); color: #fff; }
.list-item { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 28px; margin-bottom: 20px; border: 1px solid var(--border); transition: var(--transition); }
.list-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary-lighter); transform: translateX(4px); }
.list-item h4 { margin-bottom: 12px; }
.list-item h4 a { color: var(--text-dark); font-size: 1.1rem; }
.list-item h4 a:hover { color: var(--primary); }
.list-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.list-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.list-date { color: var(--text-light); }
.list-more { color: var(--primary); font-weight: 600; }
.content-detail { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 40px; border: 1px solid var(--border); }
.content-detail h1 { font-size: 1.6rem; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 2px solid var(--primary-bg); }
.content-detail .content-meta { color: var(--text-light); font-size: 0.85rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.content-detail .content-body { font-size: 1rem; line-height: 2; }
.content-detail .content-body h2 { font-size: 1.3rem; margin: 28px 0 16px; color: var(--primary-dark); }
.content-detail .content-body h3 { font-size: 1.15rem; margin: 24px 0 12px; }
.content-detail .content-body p { margin-bottom: 16px; }
.content-detail .content-body img { border-radius: var(--radius); margin: 16px 0; }
.content-detail .content-body strong { color: var(--text-dark); }
.site-footer { background: linear-gradient(135deg, #1a365d, #2d4a7a); color: rgba(255,255,255,0.8); padding: 56px 0 24px; }
.footer-title { color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(255,255,255,0.1); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--tcm-gold-light); padding-left: 4px; }
.footer-contact p { margin-bottom: 10px; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.8rem; opacity: 0.7; }
.btn-primary-tcm { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; padding: 12px 28px; border-radius: 25px; font-weight: 600; transition: var(--transition); box-shadow: 0 4px 12px rgba(59,139,212,0.3); display: inline-block; }
.btn-primary-tcm:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,139,212,0.4); color: #fff; }
.btn-outline-tcm { border: 2px solid var(--primary); color: var(--primary); padding: 10px 24px; border-radius: 25px; font-weight: 600; transition: var(--transition); display: inline-block; }
.btn-outline-tcm:hover { background: var(--primary); color: #fff; }
.pagination { justify-content: center; margin-top: 32px; }
.pagination .page-item .page-link { border: 1px solid var(--border); color: var(--text-body); padding: 8px 16px; margin: 0 4px; border-radius: var(--radius); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; }
.tcm-quote { background: var(--primary-bg); border-left: 4px solid var(--tcm-gold); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; font-style: italic; color: var(--text-dark); }
.tcm-tag { display: inline-block; background: var(--primary-bg); color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; margin: 4px; }
.tcm-divider { height: 2px; background: linear-gradient(90deg, transparent, var(--primary-lighter), var(--tcm-gold-light), var(--primary-lighter), transparent); margin: 40px 0; }
@media (max-width: 991px) { .hero-swiper { height: 380px; } .hero-title { font-size: 2rem; } .section { padding: 48px 0; } .navbar-collapse { background: var(--bg-white); padding: 16px; border-radius: var(--radius); margin-top: 12px; box-shadow: var(--shadow-lg); } }
@media (max-width: 767px) { .hero-swiper { height: 300px; } .hero-title { font-size: 1.6rem; } .hero-desc { font-size: 1rem; } .section-title h2 { font-size: 1.5rem; } .content-detail { padding: 24px; } .stat-number { font-size: 1.8rem; } .page-banner { padding: 36px 0; } .page-title { font-size: 1.5rem; } }

/* ===== Section Headers ===== */
.section-header { margin-bottom: 48px; }
.section-subtitle { display: block; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0; }
.section-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--tcm-gold)); border-radius: 2px; margin: 16px auto 0; }
.section-desc { color: var(--text-light); margin-top: 12px; font-size: 0.95rem; }

/* ===== Heritage Section ===== */
.heritage-section { background: linear-gradient(135deg, #f8fbff 0%, #eef6fd 50%, #f5f0e8 100%); position: relative; overflow: hidden; }
.heritage-section::before { content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(196,151,59,0.06), transparent); border-radius: 50%; }
.heritage-section::after { content: ""; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(59,139,212,0.06), transparent); border-radius: 50%; }
.heritage-title { font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.heritage-highlight { color: var(--tcm-gold); }
.heritage-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--tcm-gold), var(--primary)); border-radius: 2px; margin-bottom: 20px; }
.heritage-desc { color: var(--text-body); font-size: 0.95rem; line-height: 1.9; margin-bottom: 28px; }
.heritage-stats { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.heritage-stats .stat-item { text-align: center; padding: 12px 16px; background: var(--bg-white); border-radius: var(--radius); box-shadow: var(--shadow-sm); min-width: 80px; }
.heritage-stats .stat-num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.heritage-stats .stat-label { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.btn-heritage { display: inline-block; background: linear-gradient(135deg, var(--tcm-gold), #d4a843); color: #fff; padding: 12px 32px; border-radius: 30px; font-weight: 600; transition: var(--transition); box-shadow: 0 4px 16px rgba(196,151,59,0.3); }
.btn-heritage:hover { background: linear-gradient(135deg, #d4a843, var(--tcm-gold-light)); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,151,59,0.4); }
.heritage-visual { display: flex; flex-direction: column; gap: 20px; padding-left: 24px; }
.heritage-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.heritage-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--primary), var(--tcm-gold)); }
.heritage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.heritage-card-2::before { background: linear-gradient(180deg, var(--tcm-gold), var(--tcm-green)); }
.heritage-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.heritage-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.heritage-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }

/* ===== Disease Cards Grid ===== */
.diseases-section { background: var(--bg-white); }
.disease-card { display: block; text-align: center; padding: 32px 20px; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); margin-bottom: 24px; height: 100%; }
.disease-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-lighter); }
.disease-icon { font-size: 2.5rem; margin-bottom: 16px; }
.disease-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.disease-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }

/* ===== Expert Section ===== */
.expert-section { background: var(--bg-section); }
.expert-card { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 32px 20px; text-align: center; transition: var(--transition); border: 1px solid var(--border); margin-bottom: 24px; }
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.expert-photo { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--primary-lighter); box-shadow: var(--shadow-md); }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; }
.expert-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.expert-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0; }

/* ===== Cases Section ===== */
.cases-section { background: var(--bg-white); }
.cases-scroll { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.case-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.case-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-lighter); transform: translateY(-3px); }
.case-card h5 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.case-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.case-card a { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* ===== News Section ===== */
.news-section { background: var(--bg-section); }
.news-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); margin-bottom: 24px; height: 100%; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-date { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.news-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; line-height: 1.5; }
.news-card h5 a { color: var(--text-dark); }
.news-card h5 a:hover { color: var(--primary); }
.news-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 0; }

/* ===== CTA Section ===== */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 64px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.06), transparent); border-radius: 50%; }
.cta-title { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-desc { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-phone { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; padding: 14px 32px; border-radius: 30px; font-weight: 700; font-size: 1.1rem; border: 2px solid rgba(255,255,255,0.4); transition: var(--transition); }
.btn-cta-phone:hover { background: rgba(255,255,255,0.25); color: #fff; transform: translateY(-2px); }
.btn-cta-form { display: inline-block; background: var(--tcm-gold); color: #fff; padding: 14px 36px; border-radius: 30px; font-weight: 700; transition: var(--transition); box-shadow: 0 4px 16px rgba(196,151,59,0.4); }
.btn-cta-form:hover { background: var(--tcm-gold-light); color: #fff; transform: translateY(-2px); }

/* ===== Enhanced Content Page ===== */
.content-section { background: var(--bg-light); }
.article-content { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 40px; border: 1px solid var(--border); }
.article-header { margin-bottom: 32px; }
.article-title { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.5; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-light); }
.meta-item { display: inline-flex; align-items: center; gap: 4px; }
.meta-icon { font-style: normal; }
.article-divider { height: 2px; background: linear-gradient(90deg, var(--primary-lighter), var(--tcm-gold-light), transparent); margin-top: 20px; position: relative; }
.divider-ornament { position: absolute; left: 0; top: -8px; color: var(--tcm-gold); font-size: 1rem; }
.article-body { font-size: 1rem; line-height: 2; color: var(--text-body); }
.article-body h2 { font-size: 1.3rem; margin: 28px 0 16px; color: var(--primary-dark); font-weight: 700; }
.article-body h3 { font-size: 1.15rem; margin: 24px 0 12px; color: var(--text-dark); }
.article-body p { margin-bottom: 16px; }
.article-body img { border-radius: var(--radius); margin: 16px 0; box-shadow: var(--shadow-sm); }
.article-body strong { color: var(--text-dark); }
.article-tags { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.tags-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.tag-item { display: inline-block; background: var(--primary-bg); color: var(--primary); padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; margin: 4px; transition: var(--transition); }
.tag-item:hover { background: var(--primary); color: #fff; }
.article-pager { display: flex; justify-content: space-between; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.pager-item { flex: 1; min-width: 200px; padding: 16px 20px; background: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border); }
.pager-label { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.pager-link { font-size: 0.9rem; color: var(--text-dark); }
.pager-link a { color: var(--primary); }
.article-cta { margin-top: 32px; }
.cta-inner { background: linear-gradient(135deg, var(--primary-bg), #f5f0e8); border-radius: var(--radius-lg); padding: 32px; text-align: center; border: 1px solid var(--primary-lighter); }
.cta-inner h5 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.cta-inner p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-phone-sm { display: inline-block; background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 25px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.btn-cta-phone-sm:hover { background: var(--primary-dark); color: #fff; }
.btn-cta-form-sm { display: inline-block; background: var(--tcm-gold); color: #fff; padding: 10px 24px; border-radius: 25px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.btn-cta-form-sm:hover { background: var(--tcm-gold-light); color: #fff; }

/* ===== Enhanced Sidebar ===== */
.sidebar-title-bar { display: flex; align-items: center; gap: 8px; padding-bottom: 16px; border-bottom: 2px solid var(--primary-bg); margin-bottom: 16px; }
.tcm-ornament { color: var(--tcm-gold); font-size: 1.2rem; }
.sidebar-title-bar .sidebar-title { padding-bottom: 0; border-bottom: none; margin-bottom: 0; }
.contact-icon { font-size: 1.8rem; margin-bottom: 8px; }
.sidebar-tcm-tip { background: linear-gradient(135deg, #f5f0e8, #eef6fd); border-radius: var(--radius-lg); padding: 20px; margin-top: 24px; text-align: center; border: 1px solid var(--tcm-gold-light); }
.tcm-tip-icon { font-size: 1.5rem; margin-bottom: 8px; }
.sidebar-tcm-tip p { font-size: 0.82rem; color: var(--text-body); margin-bottom: 0; line-height: 1.6; }

/* ===== Enhanced List ===== */
.list-item { display: flex; gap: 20px; align-items: flex-start; }
.list-item-thumb { flex-shrink: 0; width: 180px; height: 120px; border-radius: var(--radius); overflow: hidden; }
.list-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.list-item:hover .list-item-thumb img { transform: scale(1.05); }
.list-item-body { flex: 1; }
.list-title { margin-bottom: 10px; }
.list-title a { color: var(--text-dark); font-size: 1.05rem; font-weight: 600; }
.list-title a:hover { color: var(--primary); }
.list-pagination { margin-top: 32px; text-align: center; }
.list-pagination a, .list-pagination span { display: inline-block; padding: 8px 16px; margin: 0 4px; border-radius: var(--radius); border: 1px solid var(--border); color: var(--text-body); font-size: 0.9rem; transition: var(--transition); }
.list-pagination a:hover { background: var(--primary-bg); color: var(--primary); border-color: var(--primary-lighter); }
.list-pagination .active, .list-pagination span.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.breadcrumb-nav .sep { margin: 0 6px; opacity: 0.6; }
.breadcrumb-nav .current { color: var(--tcm-gold-light); }

/* ===== Footer Enhancements ===== */
.footer-col { margin-bottom: 24px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .heritage-visual { padding-left: 0; margin-top: 32px; }
    .heritage-stats { gap: 12px; }
    .heritage-stats .stat-item { min-width: 70px; padding: 10px 12px; }
    .cases-scroll { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .heritage-title { font-size: 1.5rem; }
    .heritage-stats { flex-wrap: wrap; }
    .list-item { flex-direction: column; }
    .list-item-thumb { width: 100%; height: 180px; }
    .article-content { padding: 24px; }
    .article-pager { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
}

/* Nav Dropdown */
.main-nav .dropdown-menu {
    background: rgba(255,255,255,0.98);
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 180px;
}
.main-nav .dropdown-item {
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
}
.main-nav .dropdown-item:hover {
    background: #e8f4fd;
    color: #1a8cd8;
    padding-left: 24px;
}
.main-nav .dropdown-toggle::after {
    margin-left: 4px;
    font-size: 10px;
}
@media (max-width: 991px) {
    .main-nav .dropdown-menu {
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 16px;
    }
    .main-nav .dropdown-item {
        color: rgba(255,255,255,0.8);
    }
    .main-nav .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }
}

/* === NAV FIX 2026-07-20 === */
.navbar-brand { display: flex !important; align-items: center; white-space: nowrap; }
.brand-text { display: inline-block; }
.navbar-nav .nav-link { color: var(--primary) !important; font-weight: 600; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary-dark) !important; background: var(--primary-bg); }
.navbar-light .navbar-nav .nav-link { color: var(--primary) !important; }
.navbar-light .navbar-nav .nav-link:hover { color: var(--primary-dark) !important; }


/* === UI FIXES 2026-07-20b === */

/* Hero slider centering fix */
.hero-content { width: 100%; text-align: center; }
.hero-content .container { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-slide { justify-content: center; }

/* Expert carousel */
.expert-swiper .swiper-slide { height: auto; }
.expert-card { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); height: 100%; }
.expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-lighter); }
.expert-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--primary-lighter); box-shadow: var(--shadow-md); }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; }
.expert-card h5 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.expert-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; padding: 0 10px; }
.expert-swiper .swiper-pagination-bullet-active { background: var(--primary); }

/* Cases auto-scroll */
.cases-scroll { display: flex; gap: 20px; overflow: hidden; position: relative; }
.cases-scroll-inner { display: flex; gap: 20px; animation: scrollCases 30s linear infinite; }
.cases-scroll:hover .cases-scroll-inner { animation-play-state: paused; }
@keyframes scrollCases { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.case-card { min-width: 320px; background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); border-left: 4px solid var(--primary); transition: var(--transition); }
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.case-card h5 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.case-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.case-card a { color: var(--primary); font-size: 0.85rem; font-weight: 500; }
.case-card a:hover { color: var(--primary-dark); }

/* Appointment form page */
.form-section { padding: 60px 0; }
.form-card { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; max-width: 700px; margin: 0 auto; border: 1px solid var(--border); }
.form-card h3 { text-align: center; color: var(--primary-dark); margin-bottom: 30px; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-group label { font-weight: 600; color: var(--text-dark); margin-bottom: 6px; display: block; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,139,212,0.1); outline: none; }
.btn-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; border-radius: var(--radius); font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== News Card Image Layout ===== */
.news-card { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; background: #fff; margin-bottom: 30px; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.news-img { width: 100%; height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 20px; }
.news-body .news-date { color: var(--accent, #e8a838); font-size: 0.85rem; margin-bottom: 8px; }
.news-body h5 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.news-body h5 a { color: #333; text-decoration: none; }
.news-body h5 a:hover { color: var(--primary, #1a6b54); }
.news-body p { color: #666; font-size: 0.9rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== Appointment Form Section ===== */
.appointment-section { background: linear-gradient(135deg, #f0f9f6 0%, #e8f4f0 100%); padding: 70px 0; }
.form-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.form-card .form-group { margin-bottom: 20px; }
.form-card label { font-weight: 600; color: #333; margin-bottom: 6px; font-size: 0.9rem; }
.form-card .form-control { border: 2px solid #e8e8e8; border-radius: 8px; padding: 10px 15px; transition: border-color 0.3s; }
.form-card .form-control:focus { border-color: var(--primary, #1a6b54); box-shadow: 0 0 0 3px rgba(26,107,84,0.1); }
.btn-submit { background: linear-gradient(135deg, var(--primary, #1a6b54), #2a9d7a); color: #fff; border: none; padding: 14px 50px; border-radius: 30px; font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,84,0.3); }
.form-msg { margin-top: 15px; padding: 12px 20px; border-radius: 8px; text-align: center; font-weight: 500; }
.form-msg.success { background: #d4edda; color: #155724; }
.form-msg.error { background: #f8d7da; color: #721c24; }

/* ===== Fix: Appointment form full-width alignment ===== */
.appointment-section .container { max-width: 1140px; }
.appointment-section .form-card { max-width: 100%; padding: 40px 50px; }
.appointment-section .row { margin-left: 0; margin-right: 0; }

/* ===== Fix: Expert section - 3 experts fill width ===== */
.expert-section .swiper-wrapper { align-items: stretch; }
.expert-section .swiper-slide { }
.expert-swiper { padding: 20px 15px 50px; }
.expert-card { height: 100%; }


/* ===== Fix: Hide mobile nav and float buttons on desktop ===== */
@media (min-width: 769px) {
    .mobile-bottom-nav { display: none !important; }
    .float-consult { display: none !important; }
}
@media (max-width: 768px) {
    .mobile-bottom-nav { display: flex !important; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 8px 0; justify-content: space-around; }
    .mbn-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #666; font-size: 0.75rem; }
    .mbn-item i { font-size: 1.3rem; margin-bottom: 2px; }
    .mbn-appointment { color: var(--primary, #1a6b54); font-weight: 600; }
    .float-consult { display: none !important; }
    body { padding-bottom: 60px; }
}

