/* === SPRINT 2: FONDASI CSS === */

/* 1. Impor Font dari Google Fonts (Courier Prime ditambahkan) */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@700&family=Lato:wght@400;700;900&family=Open+Sans:wght@400;600&display=swap');

/* 2. Definisi Variabel Palet Warna */
:root {
    --biru-tua: #0D284F;     /* Warna biru tua dari style.css lama Anda */
    --biru-muda: #4A90E2;    /* Warna biru muda dari style.css lama Anda */
    --putih: #FFFFFF;
    --abu-terang: #f4f4f4;
    --teks-utama: #333333;

    /* Font berdasarkan style.css lama */
    --font-judul: 'Lato', sans-serif;
    --font-teks: 'Open Sans', sans-serif;
}

/* 3. Reset Global & Mobile-First Default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ini adalah praktik terbaik */
}

body {
    font-family: var(--font-teks);
    color: var(--teks-utama);
    background-color: var(--putih);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-judul);
    font-weight: 700;
    color: var(--biru-tua);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

img {
    max-width: 100%; /* Membuat gambar responsif secara default */
    height: auto;
}

a {
    color: var(--biru-muda);
    text-decoration: none;
}

/* 4. Layout Pembungkus (Container) */
.container {
    width: 90%; /* Di mobile, ambil 90% lebar layar */
    max-width: 1200px; /* Di desktop, jangan lebih lebar dari 1200px */
    margin: 0 auto; /* Otomatis tengahkan */
    padding: 2rem 0; /* Beri jarak atas/bawah */
}

/* 5. Styling Awal per Seksi (Sederhana) */
section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--abu-terang);
}

header, footer {
    background-color: var(--biru-tua);
    color: var(--putih);
    padding: 1rem 0;
}
/* === SPRINT 3: STYLING BLOK AWAL === */

/* --- 1. Header & Navigasi --- */
.header-content {
    display: flex; /* Membuat logo dan menu sejajar */
    justify-content: space-between; /* Logo di kiri, menu di kanan */
    align-items: center; /* Menengahkan secara vertikal */
    padding: 0.5rem 0;
}

#logo {
    height: 40px; /* Sejajar dengan hamburger menu (32px) + sedikit margin, atau sejajar dengan ID/EN button */
    width: auto; /* Lebar mengikuti tinggi (aspect ratio tetap) */
}

/* Perbesar logo untuk tablet dan desktop */
@media (min-width: 768px) {
    #logo {
        height: 50px; /* Sejajar dengan elemen navigasi di tablet */
    }
}

@media (min-width: 1024px) {
    #logo {
        height: 56px; /* Sejajar dengan elemen navigasi di desktop */
    }
}

.header-content nav {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--putih);
}

/* --- 2. Seksi Hero --- */
.hero {
    /* Menggunakan gradient 'hidup' sebagai ganti warna solid */
    background: linear-gradient(-45deg, var(--biru-tua), #0a1f3d, #0D284F, #0a1f3d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--putih);
    text-align: center;
    padding: 3rem 1.5rem; /* Beri padding lebih besar di mobile */
    position: relative; /* Wajib untuk menampung elemen 'scan' */
    overflow: hidden; /* Wajib agar 'scan' tidak keluar dari hero */
}

.hero h1 {
    color: var(--putih);
    /* Ganti Font ke Mesin Tik IBM (Courier Prime) */
    font-family: 'Courier Prime', monospace; 
    font-weight: 700;
    font-size: 2.2rem; 
    line-height: 1.3;
    /* Beri tinggi minimal agar layout tidak 'lompat' saat JS mengetik */
    min-height: 120px; 
}

/* === PERBAIKAN SPRINT 8: KONTRAS CTA === */
/* Kita juga harus membuat h2 di dalam hero menjadi putih */
.hero h2 {
    color: var(--putih);
}

/* --- 3. Styling Tombol (Penting!) --- */
.button-primary, .button-secondary {
    display: block; /* Membuat tombol memenuhi lebar */
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--font-judul);
    text-align: center;
    transition: all 0.3s ease;
}

/* Tombol Utama (Warna menonjol) */
.button-primary {
    background-color: var(--biru-muda);
    color: var(--putih);
    border: 2px solid var(--biru-muda);
}
.button-primary:hover {
    background-color: #3a80d1; /* Sedikit lebih gelap saat di-hover */
}

/* Tombol Kedua (Garis luar) */
.button-secondary {
    background-color: transparent;
    color: var(--putih);
    border: 2px solid var(--putih); /* Garis luar putih di hero */
}
.button-secondary:hover {
    background-color: var(--putih);
    color: var(--biru-tua);
}

/* Highlight untuk tombol aktif */
.button-primary.active,
.button-secondary.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* --- 4. Seksi Testimoni (Mobile-First Stack) --- */
.testimonials {
    background-color: var(--abu-terang); /* Latar belakang abu-abu */
}

.testimonial-list {
    display: grid;
    grid-template-columns: 1fr; /* 1 kolom di mobile */
    gap: 1.5rem; /* Jarak antar kartu */
}

.testimonial-card {
    background-color: var(--putih);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Membuat gambar bulat */
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--biru-muda);
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-weight: 700;
    color: var(--biru-tua);
}

/* --- 5. Footer --- */
footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* --- 6. Seksi Trust Signal --- */
.trust-grid {
    display: grid;
    /* 3 kolom di mobile */
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.8rem;
    color: var(--biru-muda);
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: #777;
}

/* --- 7. Seksi Program Unggulan --- */
/* Di mobile, kita akan membuatnya scroll horizontal */
.program-slider {
    display: flex;
    overflow-x: auto; /* Kunci untuk slider horizontal */
    gap: 1rem;
    padding: 1rem 0;
}

.program-card {
    /* flex-shrink: 0 memastikan kartu tidak 'menciut' */
    flex: 0 0 280px; /* Lebar kartu 280px */
    background-color: var(--putih);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden; /* Agar gambar tidak keluar dari border-radius */
}

.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.program-card h3 {
    font-size: 1.25rem;
    padding: 1rem 1rem 0.5rem 1rem;
}

.button-program {
    display: block;
    padding: 0 1rem 1rem 1rem;
    font-weight: 700;
    color: var(--biru-muda);
}

/* --- 8. Seksi Alumni & Schools --- */
.alumni {
    background-color: var(--abu-terang); /* Latar abu-abu */
    text-align: center;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
    gap: 1.5rem;
    margin-top: 2rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--putih);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* === SPRINT 10: STYLING SEKOLAH === */
/* Kita buat gayanya sama persis dengan .alumni */
.schools {
    background-color: var(--putih); /* Latar putih (bedakan dengan alumni) */
    text-align: center;
}

/* === SPRINT 6: STYLING NAVIGASI & MENU MOBILE === */

/* 1. Mengatur Navigasi Utama */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem; /* Jarak antar elemen (menu, tombol ID, tombol ☰) */
}

/* 2. Tombol Beralih Bahasa */
.lang-toggle {
    color: var(--putih);
    font-weight: 700;
    font-family: var(--font-judul);
    border: 2px solid var(--putih);
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}
.lang-toggle:hover {
    background-color: var(--putih);
    color: var(--biru-tua);
}

/* 3. Tombol Hamburger (☰) */
#mobile-menu-toggle {
    display: block; /* Muncul di mobile */
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0; /* Hapus padding default */
    line-height: 1; /* Hapus line-height default */
}

/* Atur ukuran dan warna ikon SVG di dalam tombol */
#mobile-menu-toggle svg {
    color: var(--putih);
    width: 32px;
    height: 32px;
}

/* 4. Menu Navigasi (Mobile-First: Tersembunyi) */
.nav-links {
    display: none; /* TERSEMBUNYI SECARA DEFAULT */
    list-style: none;
    
    /* Tampilan saat aktif (diklik) */
    position: absolute;
    top: 70px; /* Tepat di bawah header (sesuaikan jika perlu) */
    left: 0;
    width: 100%;
    background-color: var(--biru-tua);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000; /* === TAMBAHKAN INI === */
}

/* Ini adalah class 'active' yang kita tambahkan via JS */
.nav-links.active {
    display: block; /* MUNCUL SAAT AKTIF */
}

.nav-links li {
    border-bottom: 1px solid var(--biru-muda);
}

.nav-links li a {
    display: block;
    color: var(--putih);
    padding: 1rem 1.5rem;
    font-family: var(--font-judul);
    font-weight: 700;
}
.nav-links li a:hover {
    background-color: var(--biru-muda);
}

/* === SPRINT 7: DESAIN RESPONSIF (TABLET & DESKTOP) === */

/* --- 1. Breakpoint Tablet (misal: 768px) --- */
/* Style ini akan berlaku untuk layar 768px ke atas */
@media (min-width: 768px) {
    
    /* 1a. Tata Ulang Kontainer & Font */
    .container {
        /* Di desktop, beri jarak kiri-kanan */
        padding: 2rem 1.5rem; 
    }

    .hero h1 {
        font-size: 3rem; /* Judul lebih besar di tablet/desktop */
    }

    /* 1b. Tata Ulang Header & Navigasi */
    #mobile-menu-toggle {
        display: none; /* Sembunyikan tombol hamburger (☰) di desktop */
    }

    .nav-links {
        display: flex; /* Tampilkan link navigasi secara horizontal */
        position: static; /* Hapus posisi absolut */
        width: auto;
        background-color: transparent;
        box-shadow: none;
    }
    
    .nav-links.active {
        display: flex; /* Pastikan tetap flex */
    }

    .nav-links li {
        border-bottom: none; /* Hapus garis pemisah mobile */
    }
    
    .nav-links li a {
        padding: 0.5rem 0.75rem; /* Padding horizontal */
    }
    .nav-links li a:hover {
        background-color: transparent;
        color: var(--biru-muda); /* Ubah warna saat hover */
    }

    /* 1c. Tata Ulang Tombol Hero */
    .hero {
        padding: 4rem 1.5rem;
        /* Kita buat grup untuk tombol agar bisa sejajar */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Membuat tombol jadi berdampingan */
    .hero a.button-primary,
    .hero a.button-secondary {
        display: inline-block; /* Tidak lagi full-width */
        width: auto;
        margin: 1rem 0.5rem;
    }

    /* 1d. Tata Ulang Seksi Program (Grid) */
    .program-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
        overflow-x: hidden; /* Matikan horizontal scroll */
    }
    
    .program-card {
        flex: 1; /* Hapus lebar tetap */
    }

    /* 1e. Tata Ulang Testimoni (Grid) */
    .testimonial-list {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
    }

    /* 1f. Blog Carousel - Tablet (sudah di handle oleh mobile first) */
    
    /* 1g. Tata Ulang Alumni (Grid) */
    .alumni-grid {
        /* 4 logo per baris di tablet */
        grid-template-columns: repeat(4, 1fr); 
        max-width: 800px; /* Batasi lebar grid logo */
        margin: 2rem auto 0 auto;
    }
}

/* --- 2. Breakpoint Desktop (misal: 1024px) --- */
/* Style ini akan menimpa style tablet untuk layar 1024px ke atas */
@media (min-width: 1024px) {
    
    /* 2a. Tata Ulang Grid (3 Kolom) */
    
    .program-slider {
        grid-template-columns: repeat(3, 1fr); /* 3 kolom di desktop */
    }

    .testimonial-list {
        grid-template-columns: repeat(3, 1fr); /* 3 kolom di desktop */
    }

    /* Blog Carousel - Desktop (sudah di handle oleh mobile first) */

    /* 2b. Tata Ulang Alumni (Grid) */
    .alumni-grid {
        grid-template-columns: repeat(6, 1fr); /* 6 logo per baris di desktop */
        max-width: 1000px;
    }
}

/* === SPRINT 8: ANIMASI GRADIENT === */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === SPRINT 8: EFEK SCANNING FLASH === */

/* Membuat elemen 'flash' itu sendiri */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; /* Lebih lebar agar flash bisa bergerak */
    height: 100%;

    /* Ini adalah 'flash' diagonalnya */
    background: linear-gradient(
        100deg, /* Arah diagonal */
        transparent 40%,
        rgba(255, 255, 255, 0.05) 48%, /* Warna flash (sangat halus) */
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 52%,
        transparent 60%
    );

    /* Panggil animasi - 2x lebih lambat, muncul 1 kali setiap 30 detik */
    animation: scanningEffect 30s linear infinite;

    /* Sembunyikan dari pointer agar tidak mengganggu tombol */
    pointer-events: none;
}

/* Keyframe untuk menjalankan animasi */
@keyframes scanningEffect {
    0% {
        transform: translateX(-100%); /* Mulai jauh di kiri (tidak terlihat) */
    }
    53.33% {
        transform: translateX(0%); /* Selesai di kanan (16s dari 30s = 53.33%) */
    }
    53.34% {
        transform: translateX(-100%); /* Kembali ke kiri (tidak terlihat) */
    }
    100% {
        transform: translateX(-100%); /* Tetap di kiri sampai siklus berikutnya (delay 14s) */
    }
}

/* === SPRINT 9: EFEK TYPEWRITER === */

/* Menambahkan kursor berkedip (blinking caret) */
.hero h1.typing::after {
    content: '_'; /* Karakter kursor */
    font-weight: bold;
    animation: blink 1s step-end infinite;
}

/* Keyframe untuk kedipan kursor */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* === SPRINT 8: SETUP FADE-IN SECTION === */

/* Sembunyikan seksi secara default */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px); /* Bergerak sedikit dari bawah */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Tampilkan seksi saat class 'is-visible' ditambahkan oleh JS */
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === BLOG CAROUSEL === */
/* Mobile First Approach */

/* Container untuk carousel dengan overflow hidden */
.blog-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    margin: 2rem 0;
}

/* Track untuk slide items */
.blog-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 0 1rem;
}

/* Blog Card dalam carousel */
.blog-carousel-track .blog-card {
    flex: 0 0 85%; /* Mobile: 85% width, center item */
    min-width: 0; /* Prevent overflow */
    background-color: var(--putih);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
    transform: scale(0.85);
}

/* Center card (active) - full width dan shadow lebih besar */
.blog-carousel-track .blog-card.active {
    flex: 0 0 85%; /* Tetap 85% di mobile */
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Side cards - partial visible (1/2) */
.blog-carousel-track .blog-card:not(.active) {
    opacity: 0.5;
    transform: scale(0.85);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Blog card image */
.blog-carousel-track .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Blog card content */
.blog-carousel-track .blog-card h3 {
    padding: 1rem 1rem 0.5rem 1rem;
    font-size: 1.25rem;
    color: var(--biru-tua);
    line-height: 1.4;
    margin: 0;
}

.blog-carousel-track .blog-card .button-program {
    display: block;
    padding: 0 1rem 1rem 1rem;
    font-weight: 700;
    color: var(--biru-muda);
    text-decoration: none;
}

/* Tablet: Adjust card width dan spacing */
@media (min-width: 768px) {
    .blog-carousel-track {
        padding: 0 2rem;
        gap: 2rem;
    }
    
    .blog-carousel-track .blog-card {
        flex: 0 0 75%; /* Tablet: 75% width */
    }
    
    .blog-carousel-track .blog-card.active {
        flex: 0 0 75%; /* Tetap 75% di tablet */
    }
    
    .blog-carousel-track .blog-card img {
        height: 240px;
    }
}

/* Desktop: Center item lebih besar, side items lebih terlihat */
@media (min-width: 1024px) {
    .blog-carousel-track {
        padding: 0 3rem;
        gap: 2.5rem;
    }
    
    .blog-carousel-track .blog-card {
        flex: 0 0 45%; /* Desktop: 45% width untuk side items */
    }
    
    /* Center card (active) - lebih besar di desktop */
    .blog-carousel-track .blog-card.active {
        flex: 0 0 50%; /* Desktop: 50% width untuk center item */
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    }
    
    /* Side cards lebih terlihat di desktop */
    .blog-carousel-track .blog-card:not(.active) {
        opacity: 0.65;
        transform: scale(0.9);
    }
    
    .blog-carousel-track .blog-card img {
        height: 280px;
    }
    
    .blog-carousel-track .blog-card h3 {
        font-size: 1.5rem;
    }
}

/* === PROGRAM PAGES STYLING === */
/* Program Hero Section */
.program-hero {
    background: linear-gradient(-45deg, var(--biru-tua), #0a1f3d, #0D284F, #0a1f3d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--putih);
    padding: 4rem 1rem;
    text-align: center;
    margin-bottom: 0;
}

.program-hero h1 {
    color: var(--putih);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
}

.program-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Programs Page Section */
.programs-page {
    padding: 3rem 1rem;
    background-color: var(--abu-terang);
}

.program-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Program Card Page Styling */
.program-card-page {
    background-color: var(--putih);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* International Programs - Dark Card Styling */
.international-programs-section {
    background-color: #0a1f3d; /* Dark blue background untuk kontras */
}

.international-programs-section .program-card-page {
    background: linear-gradient(145deg, #1a2f4d 0%, #0d284f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.international-programs-section .program-card-page:hover {
    background: linear-gradient(145deg, #1f3657 0%, #112d56 100%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.international-programs-section .program-card-content {
    color: var(--putih);
}

.international-programs-section .program-card-content h2 {
    color: var(--putih);
}

.international-programs-section .program-description {
    color: rgba(255, 255, 255, 0.85);
}

.international-programs-section .program-highlights li {
    color: rgba(255, 255, 255, 0.9);
}

.international-programs-section .program-highlights li::before {
    color: var(--biru-muda);
}

.international-programs-section .program-date-badge {
    background-color: var(--biru-muda);
    color: var(--putih);
}

.international-programs-section .program-cta {
    background-color: var(--biru-muda);
    color: var(--putih);
    border: 2px solid var(--biru-muda);
}

.international-programs-section .program-cta:hover {
    background-color: #3a80d1;
    border-color: #3a80d1;
    box-shadow: 0 4px 12px rgba(58, 128, 209, 0.4);
}

/* National Programs - Light Card (default, tetap seperti sebelumnya) */
.programs-page:not(.international-programs-section) {
    background-color: var(--abu-terang);
}

.programs-page:not(.international-programs-section) .program-card-page {
    background-color: var(--putih);
}

/* Program Card Image */
.program-card-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--biru-tua) 0%, var(--biru-muda) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-image-placeholder {
    color: var(--putih);
    text-align: center;
    padding: 2rem;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
}

.program-image-placeholder p {
    margin: 0;
}

/* Program Card Content */
.program-card-content {
    padding: 2rem;
}

.program-date-badge {
    display: inline-block;
    background-color: var(--biru-muda);
    color: var(--putih);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-card-content h2 {
    color: var(--biru-tua);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Program Highlights List */
.program-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.program-highlights li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.program-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--biru-muda);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Program CTA Button */
.program-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--biru-muda);
    color: var(--putih);
    border: 2px solid var(--biru-muda);
}

.program-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(58, 128, 209, 0.3);
}

/* Override untuk National Programs - Light Button */
.programs-page:not(.international-programs-section) .program-cta {
    background-color: var(--biru-muda);
    color: var(--putih);
    border: 2px solid var(--biru-muda);
}

.programs-page:not(.international-programs-section) .program-cta:hover {
    background-color: #3a80d1;
    border-color: #3a80d1;
}

/* CTA Section */
.cta-section {
    padding: 4rem 1rem;
    text-align: center;
    background-color: var(--putih);
}

.cta-section h2 {
    color: var(--biru-tua);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .program-hero h1 {
        font-size: 3rem;
    }

    .program-subtitle {
        font-size: 1.2rem;
    }

    .program-cards-grid {
        gap: 3rem;
    }

    .program-card-image {
        height: 350px;
    }

    .program-card-content {
        padding: 2.5rem;
    }

    .program-card-content h2 {
        font-size: 2rem;
    }

    .program-description {
        font-size: 1.1rem;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .program-hero {
        padding: 5rem 1rem;
    }

    .program-hero h1 {
        font-size: 3.5rem;
    }

    .program-subtitle {
        font-size: 1.3rem;
        max-width: 1000px;
    }

    .programs-page {
        padding: 4rem 1rem;
    }

    .program-cards-grid {
        gap: 3.5rem;
    }

    .program-card-image {
        height: 400px;
    }

    .program-card-content {
        padding: 3rem;
    }

    .program-card-content h2 {
        font-size: 2.25rem;
    }

    .program-description {
        font-size: 1.15rem;
    }

    .program-highlights li {
        font-size: 1.05rem;
    }

    .program-cta {
        font-size: 1.2rem;
        padding: 1.25rem 2.5rem;
    }

    .cta-section {
        padding: 5rem 1rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}