/* China Travel Tips - Custom Styles */

:root {
    --primary-color: #165DFF;
    --secondary-color: #FF7D00;
    --neutral-100: #F5F7FA;
    --neutral-200: #E5E6EB;
    --neutral-300: #C9CDD4;
    --neutral-400: #86909C;
    --neutral-500: #4E5969;
    --neutral-600: #272E3B;
    --neutral-700: #1D2129;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--neutral-100);
    color: var(--neutral-700);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-700);
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu li a:hover {
    background: var(--neutral-100);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu li a i {
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--neutral-700);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0044cc 100%);
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn i {
    margin-left: 8px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--neutral-700);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--neutral-500);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Grid */
.essentials-section {
    padding: 80px 0;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--neutral-100);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(22, 93, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--neutral-700);
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: var(--neutral-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card ul {
    list-style: none;
    margin-bottom: 25px;
}

.card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--neutral-600);
}

.card ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 8px;
}

.card-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

/* Detail Page Styles */
.detail-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0044cc 100%);
    color: var(--white);
}

.detail-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
}

.breadcrumb {
    padding: 15px 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
}

.breadcrumb a {
    color: var(--neutral-500);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    margin: 0 8px;
    color: var(--neutral-300);
}

.content-section {
    padding: 60px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    color: var(--neutral-700);
    margin-bottom: 25px;
    margin-top: 40px;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    color: var(--neutral-700);
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--neutral-600);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-wrapper ul li,
.content-wrapper ol li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--neutral-600);
}

.info-box {
    background: var(--neutral-100);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    color: var(--neutral-700);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.warning-box {
    background: #fff4e6;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.warning-box h4 {
    color: var(--neutral-700);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip-item {
    background: var(--neutral-100);
    padding: 20px;
    border-radius: 10px;
}

.tip-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.tip-item h4 {
    color: var(--neutral-700);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-item p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Apps Section */
.apps-section {
    padding: 80px 0;
    background: var(--neutral-100);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.app-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.app-icon i {
    font-size: 32px;
}

.app-card h3 {
    font-size: 1.2rem;
    color: var(--neutral-700);
    margin-bottom: 10px;
}

.app-card p {
    color: var(--neutral-500);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--neutral-700);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--neutral-300);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--neutral-300);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neutral-400);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 25px 25px 0;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #0044cc;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--neutral-200);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    display: block;
    padding: 10px;
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Mobile Dropdown Styles */
    .mobile-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .mobile-menu .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-menu .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .essentials-section,
    .apps-section,
    .cta-section {
        padding: 50px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-content {
        padding: 12px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* Visa Page Styles */

/* Content with Sidebar Layout */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Table of Contents Sidebar */
.toc-sidebar {
    position: relative;
}

.toc-sticky {
    position: sticky;
    top: 100px;
    background: var(--neutral-100);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-sticky h3 {
    font-size: 1.1rem;
    color: var(--neutral-700);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-link {
    display: block;
    padding: 8px 12px;
    color: var(--neutral-600);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.toc-link:hover {
    background: rgba(22, 93, 255, 0.1);
    color: var(--primary-color);
    padding-left: 16px;
}

.toc-link.active {
    background: rgba(22, 93, 255, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Main Content Area */
.main-content {
    min-width: 0;
}

.intro-section {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--neutral-600);
}

.update-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 16px;
    background: var(--neutral-100);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--neutral-600);
    border-left: 3px solid var(--primary-color);
}

.update-time i {
    color: var(--primary-color);
}

.content-block {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.content-block h2 {
    font-size: 2rem;
    color: var(--neutral-700);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--neutral-700);
    margin: 30px 0 20px;
}

.content-block h4 {
    font-size: 1.2rem;
    color: var(--neutral-700);
    margin: 20px 0 15px;
}

/* Document Grid */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.document-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.doc-icon {
    width: 60px;
    height: 60px;
    background: rgba(22, 93, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.doc-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.document-item h4 {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    color: var(--neutral-700);
}

.document-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-item ul li {
    padding: 6px 0;
    color: var(--neutral-600);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.document-item ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Visa Types Grid */
.visa-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.visa-type-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.visa-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.visa-type-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.visa-type-header.tourist {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.visa-type-header.business {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.visa-type-header.transit {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.visa-type-header.family {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.visa-type-header i {
    font-size: 24px;
}

.visa-type-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.visa-type-body {
    padding: 20px;
}

.visa-type-body p {
    margin: 10px 0;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Accordion */
.scenario-accordion {
    margin: 30px 0;
}

.accordion-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 18px 20px;
    background: var(--neutral-100);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
    user-select: none;
}

.accordion-header:hover {
    background: rgba(22, 93, 255, 0.05);
}

.accordion-header i:first-child {
    color: var(--primary-color);
    font-size: 20px;
}

.accordion-header span {
    flex: 1;
    font-weight: 600;
    color: var(--neutral-700);
}

.accordion-header i:last-child {
    color: var(--neutral-400);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i:last-child {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content ul {
    padding: 20px 20px 20px 52px;
    margin: 0;
}

.accordion-content li {
    margin-bottom: 12px;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--neutral-200);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 15px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--primary-color);
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline-content p strong {
    color: var(--neutral-700);
}

.timeline-content ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.timeline-content li {
    margin-bottom: 6px;
    color: var(--neutral-600);
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: var(--neutral-700);
    font-size: 1.3rem;
}

.step-content p {
    color: var(--neutral-600);
    margin-bottom: 12px;
}

.step-tips {
    background: var(--neutral-100);
    padding: 15px;
    border-radius: 8px;
    margin-top: 12px;
}

.step-tips strong {
    color: var(--primary-color);
}

.step-tips ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.step-tips li {
    margin-bottom: 6px;
    color: var(--neutral-600);
}

/* Visa Free Options */
.visa-free-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.visa-free-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.visa-free-card.highlight {
    border: 2px solid var(--primary-color);
}

.visa-free-card .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0044cc 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.visa-free-card .card-header i {
    font-size: 24px;
}

.visa-free-card .card-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.visa-free-card .card-body {
    padding: 20px;
}

.visa-free-card .card-body p {
    margin: 10px 0;
    color: var(--neutral-600);
}

.visa-free-card .card-body ul {
    margin: 10px 0 10px 20px;
    padding: 0;
}

.visa-free-card .card-body li {
    margin-bottom: 6px;
    color: var(--neutral-600);
}

/* Mistakes Grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.mistake-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mistake-icon {
    width: 40px;
    height: 40px;
    background: #fee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mistake-icon i {
    color: #e74c3c;
    font-size: 20px;
}

.mistake-item h4 {
    font-size: 1.1rem;
    color: #e74c3c;
    margin: 0 0 10px 0;
}

.mistake-item p {
    margin: 8px 0;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.mistake-item p strong {
    display: block;
    margin-bottom: 4px;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tip-card i {
    font-size: 32px;
    color: #27ae60;
    margin-bottom: 12px;
}

.tip-card h4 {
    font-size: 1.1rem;
    color: var(--neutral-700);
    margin: 0 0 10px 0;
}

.tip-card p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Resources Section */
.resources-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.resource-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.resource-header {
    background: var(--neutral-700);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.resource-header i {
    font-size: 24px;
}

.resource-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.resource-body {
    padding: 20px;
}

.resource-body p {
    margin: 10px 0;
    color: var(--neutral-600);
}

.resource-body ul {
    margin: 10px 0 10px 20px;
    padding: 0;
}

.resource-body li {
    margin-bottom: 10px;
    color: var(--neutral-600);
    line-height: 1.6;
}

.resource-body ol {
    margin: 10px 0 10px 20px;
    padding: 0;
}

.resource-body ol li {
    margin-bottom: 10px;
    color: var(--neutral-600);
    line-height: 1.6;
}

.resource-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.resource-body a:hover {
    text-decoration: underline;
}

.resource-body h4 {
    font-size: 1.1rem;
    color: var(--neutral-700);
    margin: 15px 0 10px;
}

/* FAQ Section */
.faq-section {
    margin: 30px 0;
}

.faq-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0 0 12px 0;
}

.faq-item p {
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.6;
}

/* Social Share Section */
.social-share-section {
    background: var(--neutral-100);
    padding: 30px 0;
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.social-share-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: var(--neutral-700);
    margin-right: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.x {
    background: #000;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: #ea4335;
}

.share-btn.copy-link {
    background: var(--neutral-500);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--neutral-700);
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
    background: var(--neutral-100);
    color: var(--primary-color);
}

.dropdown-menu li a.active {
    background: rgba(22, 93, 255, 0.1);
    color: var(--primary-color);
}

.mobile-menu .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--neutral-100);
    margin: 8px 0;
    border-radius: 6px;
}

.mobile-menu .dropdown-toggle {
    cursor: pointer;
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .toc-sidebar {
        order: 2;
    }
    
    .toc-sticky {
        position: static;
        margin-top: 40px;
    }
    
    .main-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .document-grid,
    .visa-types-grid,
    .visa-free-options,
    .mistakes-grid,
    .tips-grid,
    .resources-section {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 6px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .social-share-buttons {
        justify-content: flex-start;
    }
    
    .share-label {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Safety Page Specific Styles */

/* Safety Cards Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.safety-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.safety-card.safe {
    border-left-color: #27ae60;
}

.safety-card.caution {
    border-left-color: #f39c12;
}

.safety-card.avoid {
    border-left-color: #e74c3c;
}

.safety-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.safety-card.safe .safety-icon {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.safety-card.caution .safety-icon {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.safety-card.avoid .safety-icon {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.safety-icon i {
    font-size: 24px;
}

.safety-card h4 {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    color: var(--neutral-700);
}

.safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--neutral-600);
}

.safety-card ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    font-weight: bold;
}

.safety-card.safe ul li:before {
    color: #27ae60;
}

.safety-card.caution ul li:before {
    color: #f39c12;
}

.safety-card.avoid ul li:before {
    color: #e74c3c;
}

/* Location Cards */
.location-tips {
    margin: 30px 0;
}

.location-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--neutral-200);
}

.location-header i {
    font-size: 24px;
    color: var(--primary-color);
}

.location-header h4 {
    margin: 0;
    color: var(--neutral-700);
    font-size: 1.2rem;
}

.location-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-card ul li {
    padding: 8px 0;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Prohibited Items Grid */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.prohibited-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #e74c3c;
}

.prohibited-item i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.prohibited-item h4 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: var(--neutral-700);
}

.prohibited-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.prohibited-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.prohibited-item ul li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Hospital Types */
.hospital-types {
    margin: 30px 0;
}

.hospital-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.hospital-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hospital-header.tier3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hospital-header.international {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hospital-header.clinic {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hospital-header i {
    font-size: 24px;
}

.hospital-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.hospital-body {
    padding: 20px;
}

.hospital-body p {
    margin: 10px 0;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Hospital List */
.hospital-list {
    margin: 30px 0;
}

.city-hospitals {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-hospitals h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-hospitals ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-hospitals ul li {
    padding: 10px 0;
    color: var(--neutral-600);
    line-height: 1.6;
    border-bottom: 1px solid var(--neutral-200);
}

.city-hospitals ul li:last-child {
    border-bottom: none;
}

/* Food Safety Grid */
.food-safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.food-safety-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.food-safety-card h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.food-safety-card.safe h4 {
    color: #27ae60;
}

.food-safety-card.caution h4 {
    color: #f39c12;
}

.food-safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.food-safety-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--neutral-600);
}

.food-safety-card.safe ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.food-safety-card.caution ul li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #f39c12;
}

/* Allergen Grid */
.allergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.allergen-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.allergen-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.allergen-card h4 {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    color: var(--neutral-700);
}

.allergen-card p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    margin: 10px 0;
}

.chinese-phrase {
    background: var(--neutral-100);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Example Card */
.example-card {
    background: #fff9e6;
    border: 2px dashed #f39c12;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-family: monospace;
}

.example-card p {
    margin: 5px 0;
    color: var(--neutral-700);
}

/* Dietary Tips */
.dietary-tips {
    margin: 30px 0;
}

.dietary-tips h4 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dietary-tips ul {
    list-style: none;
    padding: 0 0 0 30px;
    margin: 0;
}

.dietary-tips ul li {
    padding: 8px 0;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Checklist Box */
.checklist-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.checklist-box h4 {
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-box ul li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--neutral-600);
    line-height: 1.6;
}

.checklist-box ul li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
}

/* Medication Tips */
.medication-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.medication-tips .tip-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.medication-tips .tip-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.medication-tips .tip-card h4 {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    color: var(--neutral-700);
}

.medication-tips .tip-card p {
    color: var(--neutral-600);
    margin: 10px 0;
    font-size: 0.95rem;
}

.medication-tips .tip-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.medication-tips .tip-card ul li {
    padding: 4px 0;
    color: var(--neutral-600);
    font-size: 0.9rem;
}

/* Risk Areas */
.risk-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.risk-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.risk-card.high {
    border-left-color: #e74c3c;
}

.risk-card.low {
    border-left-color: #27ae60;
}

.risk-card h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.risk-card.high h4 {
    color: #e74c3c;
}

.risk-card.low h4 {
    color: #27ae60;
}

.risk-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.risk-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--neutral-600);
}

.risk-card ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    font-weight: bold;
}

.risk-card.high ul li:before {
    color: #e74c3c;
}

.risk-card.low ul li:before {
    color: #27ae60;
}

/* Protection Grid */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.protection-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.protection-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.protection-item h4 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: var(--neutral-700);
}

.protection-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.protection-item ul li {
    padding: 6px 0;
    color: var(--neutral-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Emergency Grid */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.emergency-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.emergency-card.urgent {
    border: 2px solid #e74c3c;
}

.emergency-card.consular {
    border: 2px solid var(--primary-color);
}

.emergency-card h4 {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    color: var(--neutral-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Emergency Numbers */
.emergency-numbers {
    display: grid;
    gap: 15px;
}

.emergency-number {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--neutral-100);
    border-radius: 10px;
}

.number-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.number-icon.police {
    background: #3498db;
}

.number-icon.ambulance {
    background: #e74c3c;
}

.number-icon.fire {
    background: #e67e22;
}

.number-icon.traffic {
    background: #9b59b6;
}

.number-icon i {
    font-size: 24px;
}

.number-info {
    flex: 1;
}

.number-info strong {
    display: block;
    color: var(--neutral-700);
    margin-bottom: 4px;
}

.number-info .number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Consular Info */
.consular-info p {
    margin: 15px 0;
    color: var(--neutral-600);
}

.consular-info ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.consular-info ul li {
    padding: 6px 0;
    color: var(--neutral-600);
}

/* Emergency Steps */
.emergency-steps {
    margin: 30px 0;
}

.emergency-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number.emergency {
    background: #e74c3c;
}

/* Prevention Grid */
.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.prevention-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.prevention-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.prevention-card h4 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: var(--neutral-700);
}

.prevention-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.prevention-card ul li {
    padding: 6px 0;
    color: var(--neutral-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* App Recommendations */
.app-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.app-card.recommended {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
}

.app-card .app-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0044cc 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-card .app-header i {
    font-size: 24px;
}

.app-card .app-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.app-card .app-body {
    padding: 20px;
}

.app-card .app-body p {
    margin: 10px 0;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Phrase Cards */
.phrase-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.phrase-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.phrase-card.medical {
    border-left: 4px solid #e74c3c;
}

.phrase-card.help {
    border-left: 4px solid #f39c12;
}

.phrase-card h4 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    color: var(--neutral-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.phrases {
    display: grid;
    gap: 15px;
}

.phrase {
    background: var(--neutral-100);
    padding: 12px;
    border-radius: 8px;
}

.phrase .english {
    font-weight: 600;
    color: var(--neutral-700);
    margin: 0 0 6px 0;
}

.phrase .chinese {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

/* Communication Tips */
.communication-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.communication-tips .tip-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.communication-tips .tip-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.communication-tips .tip-item h4 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: var(--neutral-700);
}

.communication-tips .tip-item p {
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.6;
}

/* Insurance Coverage */
.insurance-coverage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.coverage-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.coverage-card.essential {
    border-left-color: #e74c3c;
}

.coverage-card.recommended {
    border-left-color: var(--primary-color);
}

.coverage-card h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: var(--neutral-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.coverage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-card ul li {
    padding: 8px 0;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Claim Process */
.claim-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.claim-step {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(22, 93, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.claim-content h4 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: var(--neutral-700);
}

.claim-content p {
    color: var(--neutral-600);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Share Buttons */
.social-share-section {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--neutral-200);
}

.social-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-500);
    margin-right: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.facebook:hover {
    background-color: #0c5fc7;
}

.share-btn.twitter,
.share-btn.x {
    background-color: #000000;
}

.share-btn.twitter:hover,
.share-btn.x:hover {
    background-color: #333333;
}

.share-btn.linkedin {
    background-color: #0A66C2;
}

.share-btn.linkedin:hover {
    background-color: #004d99;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.whatsapp:hover {
    background-color: #1da851;
}

.share-btn.email {
    background-color: #EA4335;
}

.share-btn.email:hover {
    background-color: #d33426;
}

.share-btn.copy-link {
    background-color: var(--neutral-500);
}

.share-btn.copy-link:hover {
    background-color: var(--neutral-600);
}

.share-btn.copy-link.copied {
    background-color: #00A878;
}

@media (max-width: 768px) {
    .social-share-section {
        padding: 15px 0;
    }
    
    .social-share-buttons {
        justify-content: center;
    }
    
    .share-label {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Visa Checklist Table Styles */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.visa-checklist-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 14px;
}

.visa-checklist-table thead {
    background: linear-gradient(135deg, var(--primary-color), #0d47a1);
}

.visa-checklist-table thead th {
    color: var(--white);
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.visa-checklist-table thead th:last-child {
    border-right: none;
}

.visa-checklist-table tbody tr {
    border-bottom: 1px solid var(--neutral-200);
    transition: background-color 0.2s ease;
}

.visa-checklist-table tbody tr:hover {
    background-color: var(--neutral-100);
}

.visa-checklist-table tbody tr:last-child {
    border-bottom: none;
}

.visa-checklist-table td {
    padding: 14px 12px;
    vertical-align: top;
    border-right: 1px solid var(--neutral-200);
    line-height: 1.7;
}

.visa-checklist-table td:last-child {
    border-right: none;
}

.visa-checklist-table td strong {
    color: var(--primary-color);
    font-weight: 600;
}

.visa-checklist-table td br {
    margin-bottom: 8px;
}

/* Tips Box (Green/Success Style) */
.tips-box {
    background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.tips-box h4 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tips-box h4 i {
    font-size: 1.3rem;
}

.tips-box ol {
    margin-left: 20px;
    color: var(--neutral-700);
}

.tips-box ol li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.tips-box ol li:last-child {
    margin-bottom: 0;
}

/* Responsive Table */
@media (max-width: 992px) {
    .visa-checklist-table {
        font-size: 13px;
    }
    
    .visa-checklist-table thead th,
    .visa-checklist-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 768px) {
    .table-responsive {
        margin: 20px -20px;
        border-radius: 0;
    }
    
    .visa-checklist-table {
        font-size: 12px;
    }
    
    .visa-checklist-table thead th,
    .visa-checklist-table td {
        padding: 10px 8px;
    }
    
    .visa-checklist-table thead th {
        font-size: 13px;
    }
    
    .tips-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .tips-box h4 {
        font-size: 1.1rem;
    }
    
    .tips-box ol {
        margin-left: 16px;
    }
    
    .tips-box ol li {
        margin-bottom: 10px;
        font-size: 14px;
    }
}