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

:root {
    --primary: #00a651;
    --primary-dark: #008542;
    --primary-light: #33b871;
    --secondary: #1a936f;
    --accent: #88d498;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 166, 81, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 166, 81, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.btn-register {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.85), rgba(26, 147, 111, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    max-width: 700px;
    margin-left: -100px;
    margin-right: auto;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffc107;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.gradient-text-white {
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-secondary-white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}


/* Quick Links */
.quick-links {
    padding: 80px 0;
    background: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-link-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.quick-link-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.quick-link-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 12px;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(26, 147, 111, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.program-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.program-card > p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.program-features {
    list-style: none;
    margin-bottom: 20px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

.program-features i {
    color: var(--primary);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.btn-link:hover {
    gap: 12px;
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background: white;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 19px;
    top: 0;
    width: 25px;
    height: 25px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.1);
}

.timeline-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-badge.warning {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.timeline-details {
    list-style: none;
    margin-top: 15px;
}

.timeline-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.timeline-details i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 10px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

/* Tab Content */
.tab-content-container {
    margin-top: 30px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #1a5f4a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1a5f4a;
}

.jalur-title {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #1a5f4a;
    margin: 30px 0 15px 0;
}

.jalur-title i {
    color: #2d8659;
    font-size: 0.6em;
    margin-right: 10px;
}

/* Schedule Tables */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 30px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background: white;
}

/* Yellow theme for first table */
.table-yellow thead {
    background: linear-gradient(135deg, #e6d922 0%, #d4c91f 100%);
}

.table-yellow tbody tr:nth-child(odd) {
    background: #fffacd;
}

.table-yellow tbody tr:nth-child(even) {
    background: #ffffe0;
}

/* Green theme for other tables */
.table-green thead {
    background: linear-gradient(135deg, #2d8659 0%, #1a5f4a 100%);
    color: white;
}

.table-green tbody tr:nth-child(odd) {
    background: #e8f5e9;
}

.table-green tbody tr:nth-child(even) {
    background: #f1f8f4;
}

.schedule-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.schedule-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.col-no {
    width: 60px;
    text-align: center;
    font-weight: 600;
}

.col-kegiatan {
    width: 50%;
}

.col-waktu {
    width: calc(50% - 60px);
}

.schedule-table tbody tr:hover {
    background: #fff9e6 !important;
    transition: background 0.3s ease;
}

.table-green tbody tr:hover {
    background: #d4edda !important;
}

.note {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: white;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.download-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.download-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.download-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

/* Registration Process */
.registration-process {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-phase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.phase-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.phase-desc {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-steps-grid.herregistrasi {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.process-step-card {
    background: var(--light-gray);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.step-number-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 15px;
}

.step-icon-small {
    width: 60px;
    height: 60px;
    background: rgba(0, 166, 81, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 15px;
}

.process-step-card h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Pengumuman Seleksi Options */
.process-options {
    display: flex;
    align-items: center;
    gap: 30px;
}

.option-card {
    flex: 1;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.option-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 166, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
}

.option-card h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.option-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.option-divider {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 20px;
    background: white;
    border-radius: 50%;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 5px;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #1fa855;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

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

.social-links a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 80px 0;
        margin-left: 0;
        max-width: 100%;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .option-divider {
        transform: rotate(90deg);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-navigation {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .mobile-toggle {
        font-size: 1.3rem;
    }

    .btn-register {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 60px 0;
        margin-left: 0;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .stat-item {
        padding: 15px 20px;
    }

    .quick-links-grid,
    .programs-grid,
    .download-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-phase {
        padding: 25px 20px;
    }

    .phase-title {
        font-size: 1.3rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .process-steps-grid,
    .process-steps-grid.herregistrasi {
        grid-template-columns: 1fr;
    }

    .tab-navigation {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .tab-title {
        font-size: 1.1em;
    }

    .jalur-title {
        font-size: 1em;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .col-no {
        width: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
