/* ============================================
   eChinaVisa - Main Stylesheet (SEO Optimized)
   Color Scheme: Red #c41e3a (Chinese theme)
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2d3748;
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: #c41e3a; text-decoration: none; transition: color 0.2s; }
a:hover { color: #a01830; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { line-height: 1.3; color: #1a202c; font-weight: 700; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

ul, ol { padding-left: 1.5em; }

table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
th, td { padding: 0.75em 1em; border: 1px solid #e2e8f0; text-align: left; }
th { background: #f7fafc; font-weight: 600; }
tr:nth-child(even) { background: #f7fafc; }

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary { background: #c41e3a; color: #fff; border-color: #c41e3a; }
.btn-primary:hover { background: #a01830; border-color: #a01830; color: #fff; }
.btn-outline { background: transparent; color: #c41e3a; border-color: #c41e3a; }
.btn-outline:hover { background: #c41e3a; color: #fff; }
.btn-lg { padding: 15px 36px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }
.btn-white { background: #fff; color: #c41e3a; border-color: #fff; }
.btn-white:hover { background: #f7fafc; color: #a01830; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: #1a202c;
    color: #e2e8f0;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-contact { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-contact a { color: #e2e8f0; }
.top-bar-contact a:hover { color: #fff; }
.top-bar-contact .icon { margin-right: 4px; }
.top-bar-lang { color: #a0aec0; font-size: 0.8rem; display: flex; align-items: center; gap: 8px; }
.wechat-info { color: #a0aec0; }

/* Language Switch */
.lang-switch {
    color: #e2e8f0 !important;
    padding: 2px 8px;
    border: 1px solid #4a5568;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.2s;
}
.lang-switch:hover { background: #4a5568; color: #fff !important; }
.lang-current { color: #c41e3a; font-weight: 600; }
.separator { color: #4a5568; }

/* ============================================
   Main Navigation
   ============================================ */
.main-nav {
    background: #fff;
    border-bottom: 3px solid #c41e3a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0; }

.logo { display: flex; align-items: center; gap: 8px; padding: 12px 0; text-decoration: none; }
.logo-text { font-size: 1.6rem; font-weight: 700; color: #c41e3a; }
.logo-sub { font-size: 0.8rem; color: #718096; display: block; }

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 0;
}
.nav-menu li { position: relative; }
.nav-menu li a {
    display: block;
    padding: 20px 16px;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li.active > a { color: #c41e3a; }

.nav-cta a {
    background: #c41e3a !important;
    color: #fff !important;
    border-radius: 6px;
    margin: 8px 0 8px 8px;
    padding: 10px 20px !important;
}
.nav-cta a:hover { background: #a01830 !important; }

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #c41e3a;
    padding: 8px 0;
    list-style: none;
    z-index: 100;
}
.dropdown li a { padding: 10px 20px; font-size: 0.9rem; }
.dropdown li a:hover { background: #fff5f5; color: #c41e3a; }
.has-dropdown:hover .dropdown { display: block; }

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #2d3748;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   Breadcrumb Navigation
   ============================================ */
.breadcrumb-nav {
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}
.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.88rem;
}
.breadcrumb-item {
    display: flex;
    align-items: center;
}
.breadcrumb-item::after {
    content: '>';
    margin: 0 8px;
    color: #a0aec0;
}
.breadcrumb-item:last-child::after { display: none; }
.breadcrumb-item a { color: #4a5568; }
.breadcrumb-item a:hover { color: #c41e3a; }
.breadcrumb-item.active span { color: #718096; }

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: #fff5f5;
    border-bottom: 1px solid #fed7d7;
    padding: 14px 0;
}
.trust-bar-home {
    background: #fff;
    border-bottom: 2px solid #e2e8f0;
}
.trust-bar-items {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3748;
}
.trust-icon { font-size: 1.2rem; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 50%, #1a202c 100%);
    color: #fff;
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 2.8rem; margin-bottom: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); color: #fff; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 8px; opacity: 0.95; }
.hero-en { font-size: 1rem; opacity: 0.8; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-actions .btn-primary { background: #fff; color: #c41e3a; border-color: #fff; font-weight: 700; }
.hero-actions .btn-primary:hover { background: #f0f0f0; color: #a01830; }
.hero-actions .btn-outline { color: #fff; border-color: #fff; border-width: 2px; background: rgba(255,255,255,0.1); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.25); color: #fff; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

/* Hero CTA Inline (page headers) */
.hero-cta-inline {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.hero-cta-inline .btn { font-size: 0.95rem; padding: 10px 24px; }

/* Page Hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}
.page-hero h1 { font-size: 2.2rem; color: #fff; margin-bottom: 8px; }
.page-subtitle { font-size: 1.1rem; opacity: 0.9; }

/* ============================================
   Sections
   ============================================ */
.section { padding: 70px 0; }
.section:nth-child(even) { background: #f7fafc; }
.section.process-section { background: linear-gradient(135deg, #1a202c, #2d3748) !important; }
.section.cta-section { background: transparent !important; }

.section-title {
    text-align: center;
    margin-bottom: 16px;
    font-size: 2rem;
    color: #1a202c;
}
.section-title span {
    display: block;
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
    margin-top: 4px;
}
.section-desc { text-align: center; color: #718096; margin-bottom: 40px; }
.section-note { text-align: center; color: #718096; margin-top: 30px; font-size: 0.9rem; }

/* ============================================
   Visa Types Grid
   ============================================ */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.visa-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    display: block;
    color: #2d3748;
}
.visa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.12);
    border-color: #c41e3a;
    color: #2d3748;
}
.visa-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.visa-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.visa-card p { font-size: 0.9rem; color: #718096; line-height: 1.6; margin-bottom: 12px; }
.card-link { color: #c41e3a; font-weight: 600; font-size: 0.9rem; }
.visa-card-all { border-style: dashed; background: #f7fafc; }

/* ============================================
   Consulate Grid
   ============================================ */
.consulate-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.consulate-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
    display: block;
    color: #2d3748;
}
.consulate-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.1);
    border-color: #c41e3a;
    color: #2d3748;
}
.consulate-icon { font-size: 2rem; margin-bottom: 12px; }
.consulate-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.consulate-card p { font-size: 0.82rem; color: #718096; line-height: 1.5; }

/* ============================================
   Process Steps
   ============================================ */
.process-section { background: linear-gradient(135deg, #1a202c, #2d3748); color: #fff; }
.process-section .section-title { color: #fff; }
.process-section .section-title span { color: #a0aec0; }

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.step {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
}
.step-number {
    width: 48px; height: 48px;
    background: #c41e3a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 16px;
}
.step h3 { color: #fff; margin-bottom: 8px; font-size: 1.15rem; }
.step p { color: #cbd5e0; font-size: 0.9rem; margin-bottom: 8px; }
.step-en { font-size: 0.8rem; color: #718096; }
.step-arrow { font-size: 1.5rem; color: #c41e3a; }

/* Inline Process Steps (inside content pages) */
.inline-process-steps {
    margin: 2.5em 0;
    padding: 30px;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.inline-process-steps h2 {
    text-align: center;
    margin-bottom: 24px !important;
    border: none !important;
    padding: 0 !important;
}
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.process-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    flex: 1;
    min-width: 160px;
}
.process-num {
    width: 36px;
    height: 36px;
    background: #c41e3a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.process-text strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.process-text span { font-size: 0.82rem; color: #718096; }
.process-arrow { font-size: 1.3rem; color: #c41e3a; flex-shrink: 0; }

/* ============================================
   Value Added
   ============================================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.value-item {
    text-align: center;
    padding: 24px;
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-item h3 { margin-bottom: 8px; }
.value-item p { color: #718096; font-size: 0.9rem; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section { padding: 50px 0; }
.cta-box {
    background: linear-gradient(135deg, #c41e3a, #8b1528);
    color: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
}
.cta-box h2 { color: #fff; margin-bottom: 12px; font-size: 1.8rem; }
.cta-box p { opacity: 0.9; margin-bottom: 24px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-primary { background: #fff; color: #c41e3a; border-color: #fff; font-weight: 700; }
.cta-actions .btn-primary:hover { background: #f0f0f0; color: #a01830; }
.cta-actions .btn-outline { color: #fff; border-color: #fff; border-width: 2px; background: rgba(255,255,255,0.1); }
.cta-actions .btn-outline:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* Inline CTA (inside content) */
.inline-cta {
    margin: 2.5em 0;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f5, #ffe4e8);
    border: 2px solid #c41e3a;
    border-radius: 12px;
    text-align: center;
}
.inline-cta h3 { color: #c41e3a; margin-bottom: 8px; font-size: 1.2rem; }
.inline-cta p { color: #4a5568; margin-bottom: 16px; font-size: 0.95rem; }
.inline-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    margin: 2.5em 0;
}
.faq-section h2 {
    margin-bottom: 20px !important;
}
.faq-list {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    transition: background 0.2s;
    font-family: inherit;
    line-height: 1.5;
}
.faq-question:hover { background: #f7fafc; }
.faq-question[aria-expanded="true"] { background: #fff5f5; }
.faq-q-text { flex: 1; padding-right: 16px; }
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c41e3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 24px 20px;
    background: #fff;
}
.faq-answer.open { display: block; }
.faq-answer p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   Related Section
   ============================================ */
.related-section {
    margin: 2.5em 0;
}
.related-section h2 {
    margin-bottom: 20px !important;
}
.related-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.related-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    display: block;
    color: #2d3748;
    transition: all 0.3s;
}
.related-card:hover {
    border-color: #c41e3a;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.1);
    color: #2d3748;
    transform: translateY(-2px);
}
.related-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: #c41e3a; }
.related-card p { font-size: 0.88rem; color: #718096; margin-bottom: 8px; }

/* ============================================
   Trust Badges (Footer)
   ============================================ */
.trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.trust-badge {
    background: rgba(196, 30, 58, 0.15);
    color: #c41e3a;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 500;
}

.footer-en-desc {
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
    margin-bottom: 12px;
}

/* ============================================
   Blog Grid
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 32px;
}
.blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 24px;
    display: block;
    color: #2d3748;
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #c41e3a;
    color: #2d3748;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.5; }
.blog-card p { color: #718096; font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.blog-list-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px;
    display: block;
    color: #2d3748;
    transition: all 0.3s;
}
.blog-list-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #c41e3a;
    color: #2d3748;
}
.blog-list-card h2 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-list-card p { color: #718096; font-size: 0.9rem; }

/* ============================================
   Content Layout (Page + Sidebar)
   ============================================ */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.content-main {
    min-width: 0;
}
.content-main h2 { margin: 2em 0 0.8em; font-size: 1.5rem; border-bottom: 2px solid #c41e3a; padding-bottom: 8px; }
.content-main h3 { margin: 1.5em 0 0.6em; font-size: 1.2rem; }
.content-main h4 { margin: 1.2em 0 0.5em; }
.content-main p { margin-bottom: 1em; }
.content-main ul, .content-main ol { margin-bottom: 1em; }
.content-main li { margin-bottom: 0.3em; }
.content-main blockquote {
    border-left: 4px solid #c41e3a;
    padding: 16px 20px;
    background: #fff5f5;
    margin: 1.5em 0;
    border-radius: 0 8px 8px 0;
}
.content-main img { border-radius: 8px; margin: 1em 0; }
.content-main a { color: #c41e3a; text-decoration: underline; }
.content-main a:hover { color: #a01830; }

/* Sidebar */
.content-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-widget h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
}
.sidebar-contact { background: #fff5f5; border-color: #c41e3a; }
.sidebar-contact p { margin-bottom: 8px; font-size: 0.9rem; }
.sidebar-contact .btn { margin-top: 12px; }

.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links li a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
    transition: color 0.2s, padding-left 0.2s;
}
.sidebar-links li a:hover { color: #c41e3a; padding-left: 6px; }

.sidebar-cta { text-align: center; }
.sidebar-cta p { font-size: 0.9rem; color: #718096; margin-bottom: 12px; }

/* ============================================
   Footer
   ============================================ */
.footer-main {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-col h3 { color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-contact-info p { font-size: 0.85rem; margin-bottom: 6px; }
.footer-contact-info a { color: #e2e8f0; }
.footer-contact-info a:hover { color: #fff; }

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #a0aec0; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
    background: #171923;
    color: #718096;
    padding: 16px 0;
    font-size: 0.82rem;
    text-align: center;
}

/* ============================================
   Floating Buttons
   ============================================ */
.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}
.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(196, 30, 58, 0.5);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(196,30,58,0.4); }
    50% { box-shadow: 0 4px 24px rgba(196,30,58,0.6); }
}

.floating-wechat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #07c160;
    color: #fff;
    padding: 8px 14px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: transform 0.3s;
}
.floating-wechat:hover { transform: scale(1.05); }
.wechat-icon { font-size: 1.1rem; }
.wechat-id { font-size: 0.78rem; }

/* ============================================
   Blog Article Styles
   ============================================ */
.blog-article { font-size: 1.05rem; }
.blog-article p { margin-bottom: 1.2em; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .visa-grid { grid-template-columns: repeat(3, 1fr); }
    .consulate-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .related-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .top-bar-inner { justify-content: center; text-align: center; }
    .top-bar-lang { display: flex; justify-content: center; }
    .wechat-info { display: none; }

    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding: 12px 0;
        border-top: 1px solid #e2e8f0;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li a { padding: 12px 24px; }
    .nav-cta { padding: 8px 24px; }
    .nav-cta a { display: block; text-align: center; margin: 0 !important; }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-top: none;
        padding-left: 20px;
        display: none;
        background: #f7fafc;
    }
    .has-dropdown.open .dropdown { display: block; }

    .hero { padding: 60px 0 50px; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }

    .visa-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .consulate-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .value-grid { grid-template-columns: 1fr; }

    .process-steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .step { max-width: 100%; }

    .content-layout { grid-template-columns: 1fr; }
    .content-sidebar { position: static; }

    .blog-grid { grid-template-columns: 1fr; }
    .blog-list-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .cta-box { padding: 36px 24px; }

    .page-hero { padding: 40px 0 30px; }
    .page-hero h1 { font-size: 1.7rem; }

    .section { padding: 50px 0; }

    .trust-bar-items { gap: 16px; }
    .trust-bar-item { font-size: 0.82rem; }

    .process-flow { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }

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

    .breadcrumb-list { font-size: 0.82rem; }

    .floating-wechat { bottom: 96px; right: 16px; }
    .floating-phone { bottom: 24px; right: 16px; width: 50px; height: 50px; }

    .faq-question { padding: 14px 18px; font-size: 0.95rem; }
    .faq-answer { padding: 0 18px 16px; }
}

@media (max-width: 480px) {
    .visa-grid { grid-template-columns: 1fr; }
    .consulate-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-badges { flex-direction: column; align-items: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .inline-cta-actions { flex-direction: column; align-items: center; }
    .related-cards { grid-template-columns: 1fr; }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .top-bar, .main-nav, .floating-phone, .floating-wechat, .site-footer, .sidebar-widget, .cta-section, .trust-bar, .breadcrumb-nav { display: none; }
    .content-layout { grid-template-columns: 1fr; }
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}
.pagination-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.pagination-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.page-link:hover {
    background: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
}
.page-link.current {
    background: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
    font-weight: 700;
}
.page-link.dots {
    border: none;
    color: #999;
}
.page-link.prev, .page-link.next {
    padding: 0 16px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .page-link { min-width: 36px; height: 36px; font-size: 0.85rem; }
    .pagination-links { gap: 0.3rem; }
}
