/* CSS Variables & Reset */
:root {
    --primary: #0f172a;
    /* Deep Cyber Blue */
    --primary-hover: #1e293b;

    /* Brand Colors */
    --brand-cyan: #10cefe;
    --brand-cyan-rgb: 42, 221, 222;

    --accent: var(--brand-cyan);
    /* Cyan Base */
    --accent-hover: hsl(181, 60%, 78%);
    /* Vibrance Darker Cyan */

    --text-main: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
}

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

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", "Heiti SC", sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: -1rem auto 3rem auto;
    font-size: 1.1rem;
}

.mt-large {
    margin-top: 3rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(var(--brand-cyan-rgb), 0.9);
    filter: brightness(1.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

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

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    /* Gold Gradient Text */
    background: linear-gradient(135deg, #fff 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

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

.nav-links .btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 10px 24px;
    box-shadow: none;
}

.nav-links .btn-primary:hover {
    background-color: var(--accent-hover);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(var(--brand-cyan-rgb), 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('assets/judicial_hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(8, 16, 36, 0.9) 0%, rgba(8, 16, 36, 0.7) 60%, rgba(8, 16, 36, 0.5) 100%); */

    /* ... */
    /* 调整后的渐变：左侧深沉保文字，右侧更加透明亮丽 */
    /* background: linear-gradient(90deg,
            rgba(5, 11, 28, 0.95) 0%,
            /* 左侧加深一点点，让文字更跳 */
    rgba(8, 16, 36, 0.7) 45%,
    /* 过渡区提前一点 */
    rgba(8, 16, 36, 0.3) 100%
    /* 右侧更透明（0.3），让背景图亮起来 */
    );
    */ z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge {
    background-color: rgba(var(--brand-cyan-rgb), 0.1);
    border: 1px solid rgba(var(--brand-cyan-rgb), 0.5);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Organization Section */
.org-section {
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.org-group {
    margin-bottom: 30px;
}

.org-group:last-child {
    margin-bottom: 0;
}

.org-group h3 {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.org-group p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.highlight-box {
    background: #f0f9ff;
    border-left: 5px solid var(--primary);
    padding: 30px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Features/Agenda Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

/* Text Buttons */
.btn-link {
    color: var(--accent);
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-hover);
    transform: translateX(5px);
}

/* Fee Tables */
.fee-table-container {
    max-width: 1000px;
    margin: 0 auto;
}

.subsection-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.fee-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fee-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.fee-card.highlight {
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background: white;
}

.fee-card .tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fee-card h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.fee-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.fee-card .unit {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Registration Section */
.registration-process {
    display: flex;
    align-items: stretch;
    /* Match height */
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    flex: 1;
    min-width: 340px;
    text-align: center;
    /* Default center for process card */
    position: relative;
    border-top: 6px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.process-card.payment-card {
    border-color: var(--accent);
}

.step-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
}

.process-card h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    color: var(--primary);
}

.process-card .instruction {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Payment Specifics */
.qr-container {
    background-color: white;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: inline-block;
    margin: 0 auto 24px auto;
}

.qr-code {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.alert-box {
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 16px;
    border-radius: 4px;
    text-align: left;
    font-size: 0.95rem;
    color: #92400e;
    margin-top: auto;
    /* Push to bottom of content area */
}

.alert-box strong {
    display: block;
    margin-bottom: 5px;
}

.alert-box .highlight {
    color: #b45309;
    font-weight: 800;
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    border-radius: 4px;
}

.sub-alert {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #d97706;
}

.contact-info {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 20px;
}

/* Form Specifics */
.info-list {
    text-align: left;
    background-color: #f1f5f9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-list p {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.info-list ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* Arrow */
.process-arrow {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: white;
    padding: 60px 0;
    border-top: 4px solid var(--accent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.footer-left p {
    color: #94a3b8;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-right .copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .registration-process {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        width: 100%;
        margin: 20px 0;
    }

    .process-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .fee-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}

/* Timeline Styles */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-day {
    margin-bottom: 60px;
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #e2e8f0;
}

.timeline-day:last-child {
    border-left: 3px solid transparent;
}

.day-header {
    margin-bottom: 30px;
    position: relative;
    left: -40px;
    /* pull back to align with line approximately */
}

.day-header h3 {
    background-color: var(--primary);
    color: white;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 0 50px 50px 0;
    font-size: 1.25rem;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}

.day-header .location {
    margin-left: 43px;
    /* align with text start */
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 8px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    /* adjust based on padding-left of container */
    top: 30px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid var(--accent);
    z-index: 10;
}

.timeline-item.mb-small {
    margin-bottom: 15px;
    padding: 16px 24px;
}

.timeline-item .time {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: inline-block;
    background: #0066ff;
    padding: 2px 8px;
    border-radius: 4px;
}

.timeline-item .content h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-item .speaker,
.timeline-item .speaker-list,
.timeline-item .org-list {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
}

.speaker-list {
    list-style: disc;
    margin-left: 20px;
}

.speaker-list li {
    margin-bottom: 4px;
}

.sub-item {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

.sub-item strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.sub-item span {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

/* Quick Nav */
.quick-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(15, 23, 42, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.nav-dot:hover,
.nav-dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
    border-color: white;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Tooltip */
.nav-dot::before {
    content: attr(title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-right: 10px;
}

.nav-dot:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Quick Nav Enhanced (Overrides) */
.quick-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.nav-dot {
    width: 16px;
    height: 16px;
    background-color: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
}

.nav-dot:hover {
    background-color: var(--accent);
    transform: scale(1.2);
}

.nav-dot.active {
    background-color: var(--accent);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.nav-dot::before {
    content: attr(title);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-dot:hover::before,
.nav-dot.active::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.quick-nav::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
    z-index: -1;
}


/* Footer Copyright Updates */
.copyright-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
    line-height: 1.5;
}

.beian-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.beian-links a:hover {
    color: var(--accent);
}

.beian-links .separator {
    margin: 0 8px;
    color: #475569;
}

/* Content Cards */
.content-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content-card h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

/* Agenda Meta Info */
.agenda-meta {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.agenda-meta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 8px 0;
}

/* Sticky Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    /* Start transparent */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    /* Slightly smaller padding on scroll */
}

.navbar.scrolled .logo {
    color: var(--primary);
    /* Ensure contrast on white */
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--accent);
}

/* Adjust button in scrolled state if needed */
.navbar.scrolled .btn-primary {
    /* Keep button style same, or adjust if needed */
}

/* Hide Quick Nav */
.quick-nav {
    display: none !important;
}

/* Logo Fix for Scrolled State */
.navbar.scrolled .logo {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--primary);
}

/* Active Nav Link Style */
.nav-links a.active {
    color: var(--accent) !important;
    position: relative;
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Ensure button doesn't get the underline */
.nav-links .btn-primary.active {
    color: white !important;
    background-color: var(--accent) !important;
    /* Keep it highlighted style */
}

.nav-links .btn-primary.active::after {
    display: none;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Ensure it's visible */
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
        padding: 5px;
    }

    .navbar.scrolled .menu-toggle {
        color: var(--primary);
    }

    /* ... rest of existing mobile styles ... */
    .nav-links {
        display: none;
        /* Hide desktop menu by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 15px;
    }

    .nav-links.mobile-active {
        display: flex;
        /* Show when active */
    }

    .nav-links a {
        color: var(--text-main);
        display: block;
        padding: 10px;
    }

    /* Hamburger Menu Icon */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: white;
        /* Default white */
        cursor: pointer;
    }

    .navbar.scrolled .menu-toggle {
        color: var(--primary);
        /* Dark when scrolled */
    }

    /* Hero Text */
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    /* Timeline Adjustments */
    .timeline-item {
        flex-direction: column;
        text-align: left;
        gap: 10px;
        align-items: flex-start;
        padding-left: 20px;
        border-left: 2px solid #e2e8f0;
        margin-left: 10px;
    }

    .timeline-item .time {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        padding-left: 0;
        font-weight: 700;
        color: white;
    }

    .timeline-item .content {
        width: 100%;
        padding-left: 0;
    }

    /* Registration Process */
    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

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

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-right {
        text-align: center;
    }

    /* Fee Cards */
    .fee-cards {
        grid-template-columns: 1fr;
    }
}

/* Default State for Menu Toggle */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
}

/* Ensure Menu Toggle is Visible on Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        /* Force display */
        position: relative;
        z-index: 1001;
        /* Ensure above overlay */
    }
}

/* Payment Options Split */
.payment-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.payment-option {
    flex: 1;
    min-width: 250px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.payment-option h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 8px;
    text-align: center;
}

.qr-container.small {
    padding: 3px !important;
    margin: 10px auto;
    max-width: 160px;
    display: block;
}

.bank-info p {
    font-size: 0.92rem;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1.5;
}

.bank-info p strong {
    color: var(--primary);
}

.note-text {
    font-size: 0.85rem;
    color: #b45309;
    margin-top: 12px;
    font-weight: 500;
    text-align: center;
}

.instruction-sm {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 10px;
}

/* Organization Logos */
.org-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 10px auto;
}

.th-logo {
    transition: all 500ms ease;
    /* background: rgba(75, 12, 119, 1); */
    padding: 5px;
    border-radius: 4px;
}

.row{
  display: flex;
  align-items: center;
  gap: 8px;
}
.pic{
  object-fit: contain;
  height: 64px;
}
/* 样式 */
.schedule-box {
  max-width:800px;
  margin:0 auto;
  padding:20px;
  background:#fff;
  font-size:14px;
  line-height:1.6;
  color:#333;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.schedule-box h1{
  margin:0 0 20px;
  font-size:24px;
  font-weight:700;
  text-align:center;
}
.schedule-box table{
  width:100%;
  border-collapse:collapse; /* 合并边框 */
  border: 2px solid black; /* 表格最外围四条线加粗 */
  border-radius: 10px; /* 四角圆弧半径 */
  overflow: hidden; /* 隐藏溢出内容 */
  box-shadow: 0 2px 5px black; /* 添加阴影效果 */
}

.schedule-box tr.thick-top-border {
  border-top: 2px solid black; /* 当前行上边沿加粗 */
}


.schedule-box th, .schedule-box td{
  padding:10px;
  text-align:left;
  border-bottom:1px solid #eee; /* 单元格底部边框 */
}
.schedule-box th{
  background:#f7f7f7;
  font-weight:600;
}
.schedule-box .time{
  width:150px;
  font-weight:600;
  color:#0066ff;
  background:white;
  text-align:center;
  border-radius:4px;
  padding:2px 6px;
}

.schedule-box th{
  text-align:center; /* 标题行居中 */
}

.schedule-box th.thick-top-border {
  border-top: 2px solid black; /* 当前行上边沿加粗 */
}


/* 遮罩层 */
.img-modal {
    display: none;                /* 默认隐藏 */
    position: fixed;
    z-index: 9999;               /* 盖在所有内容之上 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* 半透明黑色背景 */
    align-items: center;
    justify-content: center;
}

/* 图片 */
.modal-img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px #000;
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
