/* ===== style.css (VERSI FINAL - NAVIGASI TEBAL & LAYOUT BERSIH) ===== */

/* =========================================
   1. PENGATURAN DASAR & VARIABEL
========================================= */
:root {
    --primary-color: #28a745;
    --dark-color: #333;
    --light-color: #fff;
    --grey-color: #f8fafc;
    --text-color: #555;
    --header-height: 70px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.no-scroll { overflow: hidden; }

main {
    flex-grow: 1;
    padding-top: var(--header-height);
}

a { text-decoration: none; color: inherit; }

/* =========================================
   2. PRELOADER
========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

/* =========================================
   3. HEADER & NAVIGASI (FONT TEBAL)
========================================= */
header {
    background-color: #fff;
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { display: flex; align-items: center; }
.logo img { height: 50px; margin-right: 15px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; color: var(--dark-color); }
.logo-text span { font-size: 0.8em; font-weight: 400; color: var(--text-color); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    line-height: 1;
}
.mobile-menu-toggle .icon-close { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Navigasi Desktop */
nav ul { list-style: none; display: flex; gap: 30px; align-items:center; }

nav a {
    color: var(--dark-color);
    font-weight: 700; /* FONT TEBAL */
    font-size: 0.9em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

nav a:hover, nav a.active { border-bottom-color: var(--primary-color); color: var(--primary-color); }
nav a:focus { outline: 3px solid rgba(40,167,69,0.25); outline-offset: 3px; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.lang-selector { color: var(--dark-color); font-weight: 500; font-size: 0.9em; }
.lang-selector .fa-chevron-down { font-size: 0.7em; margin-left: 5px; }

/* Dropdown Menu */
nav ul li.dropdown { position: relative; }
.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: white;
    min-width: 230px;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #333;
    border-bottom: none !important;
    transition: background-color 0.2s;
}
.dropdown-menu li a:hover { background-color: #f5f5f5; color: var(--primary-color); }
.dropdown-menu a:focus { background: #eef7ef; }
.dropdown-toggle .fa-chevron-down { transition: transform 0.2s ease-in-out; }
.dropdown:hover .dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }

/* =========================================
   4. KOMPONEN UMUM
========================================= */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

.btn { padding: 10px 20px; border-radius: 8px; font-weight: 500; transition: transform 0.2s; }
.btn:hover { transform: scale(1.05); }
.btn-primary { background-color: var(--primary-color); color: white; }
.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}
.btn-outline:hover { background-color: white; color: #333; }
.btn-outline--dark { border-color: var(--dark-color); background-color: transparent; color: var(--dark-color); }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--dark-color); }
.section-title p { max-width: 600px; margin: 10px auto 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* =========================================
   5. HALAMAN HOME & KONTEN UMUM
========================================= */
.hero {
    min-height: calc(100vh - var(--header-height));
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('foto/foto depan gedung.png');
    background-size: cover;
    background-position: center;
    display: flex; justify-content: center; align-items: center; text-align: center; color: white;
}
.hero-content h1 { font-size: 3rem; }
body:has(.hero) main, body.homepage main { padding-top: 0; }

/* About Us */
.about-us-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.about-us-content .icon-title { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.icon-title img { height: 50px; }
.icon-title h2 { font-size: 1.8rem; color: var(--dark-color); }
.about-us-content h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--primary-color); }
.features-list { list-style: none; margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.features-list li { display: flex; align-items: center; gap: 10px; }
.features-list i { color: var(--primary-color); }
.about-us-image img { width: 100%; border-radius: 10px; }

/* Profil / Visi Misi */
.profile-content { padding: 100px 0 50px; }
.main-heading { text-align: center; padding-bottom: 50px; }
.main-heading h1 { font-size: 2.5em; margin-bottom: 5px; }
.main-heading p { color: #666; font-size: 1.1em; }
.icon-indicator { display: block; margin: 0 auto 10px; font-size: 2em; color: var(--primary-color); }
.vision-mission-section { padding: 30px 0; max-width: 1200px; margin: 0 auto; }
.vision-mission-wrapper { display: flex; gap: 40px; }
.text-content { flex: 1; padding-right: 20px; }
.text-content h3 { color: var(--primary-color); margin-top: 25px; font-size: 1.6em; }
.text-content p { line-height: 1.8; color: #555; text-align: justify; }
.goals-list { flex: 1; }
.goals-list h2 { font-size: 2em; margin-bottom: 30px; color: #333; }
.goal-item { display: flex; align-items: center; margin-bottom: 20px; padding: 20px; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); background-color: #fff; transition: box-shadow 0.3s; }
.goal-item:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.goal-number { font-size: 1.5em; font-weight: 700; color: var(--primary-color); margin-right: 20px; padding: 10px; min-width: 40px; text-align: center; border-radius: 50%; border: 2px solid var(--primary-color); }
.goal-item p { flex: 1; margin: 0; font-size: 1em; color: #333; }

/* =========================================
   6. PROFIL PENGASUH & FASILITAS
========================================= */

/* --- PROFIL PENGASUH (CARD NONGOL) --- */
.quote-section { 
    background-color: var(--grey-color); 
    padding: 160px 0 60px; /* Padding atas besar untuk foto nongol */
    overflow: visible; 
}

.quote-slider { width: 100%; }
.swiper-slide { display: flex; justify-content: center; align-items: center; height: auto; padding-top: 80px; padding-bottom: 50px; }

.quote-card { 
    background-color: #ffffff;
    padding: 0 50px 60px 50px; 
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-card img { 
    width: 180px; 
    height: 180px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 6px solid #fff; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    background: #e0f2f1; 
    margin-top: -90px; /* FOTO NONGOL KE ATAS */
    margin-bottom: 30px;
    z-index: 5;
}

.quote-card blockquote { 
    font-size: 1.3rem; 
    font-weight: 500; 
    color: var(--dark-color); 
    line-height: 1.8; 
    margin: 0 0 30px 0;
    font-style: normal;
}

.quote-person .quote-author { 
    display: block; font-weight: 700; color: var(--primary-color); font-size: 1.4rem; margin-bottom: 5px; 
}
.quote-person .quote-title { display: block; font-size: 1rem; color: #777; }

/* Swiper Pagination */
.swiper-pagination { position: relative; bottom: 0; margin-top: 20px; }
.swiper-pagination-bullet { background-color: #ccc; opacity: 1; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { background-color: var(--primary-color); width: 12px; height: 12px; }


/* --- GRID FASILITAS --- */
.fasilitas-section {
    padding: 40px 0 100px;
    background-color: var(--grey-color);
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.fasilitas-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fasilitas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.2);
    border-bottom: 4px solid var(--primary-color);
}

.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.fasilitas-card:hover .card-img-wrapper img { transform: scale(1.1); }

.fasilitas-card.with-image .card-body { padding: 25px; text-align: left; }

.fas-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    align-self: flex-start;
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-body h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.card-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.fas-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.fas-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fas-list li i { color: var(--primary-color); }


/* =========================================
   7. TESTIMONI, STATISTIK, BERITA (HOME)
========================================= */
/* Testimoni */
.testimonials { background-color: var(--light-color); }
.testimonial-card { background: var(--grey-color); padding: 30px; border-radius: 10px; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; }
.testimonial-user { display: flex; align-items: center; gap: 15px; text-align: left; }
.testimonial-user img { width: 60px; height: 60px; border-radius: 50%; }
.testimonial-user h4 { font-size: 1rem; color: var(--dark-color); margin-bottom: 0; }
.testimonial-user span { font-size: 0.8rem; }

/* Statistik */
.stats { background-color: var(--grey-color); }
.stat-item { text-align: center; }
.stat-item i { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; }
.stat-number { font-size: 3.5rem; font-weight: 700; color: var(--dark-color); }
.stat-label { font-size: 1rem; }

/* Berita (Home) - Style Minimal */
.latest-news { background-color: var(--light-color); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2.5rem; color: var(--dark-color); }
.view-all { color: var(--primary-color); font-weight: 500; }

/* -- CATATAN: Style Card Berita Lengkap Dipindah ke style-berita.css -- */
.news-card { background-color: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-card .card-content { padding: 20px; }
.news-tag { background-color: var(--primary-color); color: white; padding: 3px 10px; border-radius: 5px; font-size: 0.7rem; font-weight: 500; display: inline-block; margin-bottom: 10px; }
.news-card h3 { margin: 5px 0 10px 0; font-size: 1.1rem; color: var(--dark-color); }
.news-date { font-size: 0.8rem; color: #888; }

/* Kontak */
.contact-section { background-color: var(--grey-color); }
.contact-image img { width: 100%; border-radius: 10px; }
.contact-details h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-details ul { list-style: none; }
.contact-details li { display: flex; align-items: flex-start; margin-bottom: 20px; }
.contact-details i { font-size: 1.5rem; color: var(--primary-color); margin-right: 20px; width: 25px; }

/* =========================================
   8. FOOTER
========================================= */
.footer-cta { 
    padding: 60px 0 30px;
    background-color: var(--light-color);
    text-align: center; 
}
.footer-cta h3 { color: var(--dark-color); font-size: 2rem; }
.footer-cta p { margin: 10px 0 30px 0; color: var(--text-color); }

/* Dua Gambar Footer */
.cta-image-row {
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    align-items: flex-start;
    gap: 30px; 
    margin-top: 40px; 
    width: 100%;
    box-sizing: border-box;
}

.cta-img {
    width: 45%; 
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-img:hover { transform: scale(1.02); }

/* Footer Main */
.footer-main { 
    padding: 25px 0 30px 0;
    background: var(--primary-color); 
    color: #ffffff; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 40px; 
    align-items: start; 
}
.footer-col .logo { 
    padding-top: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-col .logo img { height: 100px; margin-right: 0; margin-bottom: 15px; }
.footer-col .logo-text { text-align: left; }
.copyright { margin-bottom: 20px; color: #ffffff; }
.social-icons a { margin-right: 15px; font-size: 1.2rem; color: #ffffff; transition: color 0.3s; }
.social-icons a:hover { color: #f0f0f0; }
.footer-col h4 { margin-top: 0; padding-top: 15px; color: white; font-size: 1.1rem; margin-bottom: 20px; }
.footer-col p, .footer-col li { font-size: 0.9rem; margin-bottom: 10px; color: #f0f0f0; }
.footer-col a { color: #f0f0f0; }
.footer-col a:hover { color: white; text-decoration: underline; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.9rem; background: #FFEB3B; color: var(--dark-color); border-top: none; }

/* FAQ */
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 15px; }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--dark-color); font-size: 1rem; cursor: pointer; gap: 15px; }
.faq-question .faq-icon { color: var(--primary-color); transition: transform 0.3s ease; font-size: 0.9em; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 10px 20px 0; color: var(--text-color); margin: 0; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; transition: max-height 0.4s ease-in; }
.faq-item.active .faq-question { color: var(--primary-color); }
.faq-item.active .faq-question .faq-icon { transform: rotate(180deg); }

/* Sticky WA */
.contact-sticky { position: fixed; bottom: 25px; right: 25px; background-color: #25D366; color: white; padding: 12px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-weight: 500; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 999; transition: transform 0.2s; }
.contact-sticky:hover { transform: scale(1.05); }
.contact-sticky .fa-whatsapp { font-size: 1.5em; }

/* =========================================
   9. STYLE HALAMAN FORMULIR PPDB
========================================= */
body#halaman-pendaftaran main,
body#halaman-cetak-formulir main {
    background: linear-gradient(135deg, #fdfcf5, #eeecdf);
    padding-top: 50px;
    padding-bottom: 50px; 
}

.form-ppdb-card {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
}

.form-ppdb-header { text-align: center; padding: 30px 25px 20px 25px; background-color: transparent; }
.form-ppdb-header h2 { font-size: 1.75rem; font-weight: 700; color: #333; }

.form-ppdb-section .form-control,
.form-ppdb-section .form-select {
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    box-shadow: none;
}

.form-ppdb-section .form-control:focus,
.form-ppdb-section .form-select:focus {
    border-color: #16a085;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.2);
}

.form-ppdb-card .p-4 { padding: 2.5rem !important; }

/* Tombol di Form */
.form-ppdb-section .btn-primary,
.form-ppdb-section .btn-warning {
    background-color: #16a085;
    border-color: #16a085;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    max-width: 400px;
}
.form-ppdb-section .btn-primary:hover,
.form-ppdb-section .btn-warning:hover {
    background-color: #148f77;
    border-color: #148f77;
    color: #ffffff;
}
.form-ppdb-section .form-label { color: #495057; }

/* =========================================
   10. STYLE HALAMAN "SEGERA HADIR"
========================================= */
.coming-soon-container {
    text-align: center;
    padding: 100px 20px 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-green {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-green:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.bottom-cta {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 40px;
    width: 100%;
}

.bottom-cta h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.bottom-cta p {
    color: #666;
    margin-bottom: 25px;
}

/* =========================================
   11. STYLE TAMBAHAN LAIN (SAMBUTAN, PROFIL)
========================================= */
.sambutan-section {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 80px 0;
    margin-top: 0;
}

.sambutan-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.sambutan-row.reverse-layout {
    grid-template-columns: 1.5fr 1fr;
}

.sambutan-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.1);
}

.sambutan-text h2.sambutan-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid #28a745;
    display: inline-block;
    padding-bottom: 5px;
}

.sambutan-text h4.sambutan-name {
    color: #28a745;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.sambutan-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
    color: #d1d1d1;
}

.sambutan-signature {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #28a745;
}

.sambutan-signature span {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
}

.sambutan-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
    margin: 60px 0;
}

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

/* CSS Misi List (Bunderan Angka) */
.misi-list {
    list-style: none;
    padding-left: 0;
    counter-reset: misi-counter;
}

.misi-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    counter-increment: misi-counter;
}

.misi-list li::before {
    content: counter(misi-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.sambutan-name {
    color: #28a745 !important;
    font-weight: 700;
    margin-bottom: 5px;
}

/* =========================================
   12. JADWAL, PROGRAM, EKSKUL, BUTTONS
========================================= */

/* Jadwal (Kotak Modern) */
.schedule-section { padding-bottom: 100px; background-color: var(--grey-color); }
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.schedule-card { background-color: #ffffff; padding: 25px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; transition: all 0.3s ease; position: relative; overflow: hidden; }
.schedule-card:hover { transform: translateY(-7px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.schedule-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background-color: var(--primary-color); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.schedule-card:hover::before { transform: scaleX(1); }
.time-badge { display: inline-block; background-color: #e8f5e9; color: var(--primary-color); font-weight: 700; font-size: 0.9rem; padding: 6px 15px; border-radius: 50px; margin-bottom: 15px; }
.time-badge i { margin-right: 5px; }
.schedule-card h3 { font-size: 1.25rem; color: var(--dark-color); margin-bottom: 10px; font-weight: 700; }
.schedule-card p { font-size: 0.95rem; color: #666; line-height: 1.6; margin: 0; }

/* Program & Ekskul */
.program-section, .ekskul-section { padding-bottom: 60px; background-color: #f9f9f9; }
.program-card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; border-bottom: 4px solid transparent; transition: all 0.3s ease; border: 1px solid #f0f0f0; }
.program-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-color); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.program-card .icon-box { width: 70px; height: 70px; background-color: #e8f5e9; color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; transition: transform 0.3s; }
.program-card:hover .icon-box { transform: rotateY(180deg); background-color: var(--primary-color); color: #fff; }
.program-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--dark-color); }
.program-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

.ekskul-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.ekskul-card { background: #fff; padding: 35px 20px; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid #eee; transition: all 0.3s ease; }
.ekskul-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(40, 167, 69, 0.2); border-bottom: 5px solid var(--primary-color); }
.ekskul-icon { width: 80px; height: 80px; line-height: 80px; background-color: #e8f5e9; color: var(--primary-color); font-size: 2.5rem; border-radius: 50%; margin: 0 auto 20px; transition: all 0.4s ease; }
.ekskul-card:hover .ekskul-icon { background-color: var(--primary-color); color: #fff; transform: rotateY(360deg); }
.ekskul-card h3 { font-size: 1.3rem; color: #333; margin-bottom: 10px; font-weight: 700; }

/* Sistem Pembelajaran */
.learning-system-section { background-color: var(--grey-color); padding: 80px 0; }
.system-box { background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); max-width: 900px; margin: 0 auto; border-left: 6px solid var(--primary-color); }
.system-title { font-size: 2rem; color: var(--dark-color); margin-bottom: 10px; text-align: center; }
.system-subtitle { text-align: center; margin-bottom: 40px; color: #666; }
.system-list { list-style: none; padding: 0; }
.system-list li { display: flex; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.system-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.system-list li i { color: var(--primary-color); font-size: 1.3rem; margin-right: 20px; margin-top: 3px; }
.system-list li span { font-size: 1.05rem; color: #444; line-height: 1.7; }

/* Header Page (Untuk Fasilitas dll) */
.page-header { padding: 100px 0; text-align: center; color: white; position: relative; margin-bottom: 0; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1; }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 10px; }

/* Tombol Download Pill */
.btn-download-pill { display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; background: #fff; border: 2px solid transparent; margin-bottom: 10px; gap: 10px; }
.btn-pill-green { border-color: #28a745; color: #28a745; }
.btn-pill-green:hover { background-color: #28a745; color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3); }
.btn-pill-blue { border-color: #17a2b8; color: #17a2b8; }
.btn-pill-blue:hover { background-color: #17a2b8; color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3); }

/* =========================================
   13. RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .about-us-container { grid-template-columns: 1fr; }
    .vision-mission-wrapper { flex-direction: column; }
    .text-content { padding-right: 0; }
    .goals-list { margin-top: 30px; }
    
    .footer-grid { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column !important; gap: 30px !important; text-align: left !important; }
    .footer-col { width: 100% !important; padding: 0 !important; margin: 0 !important; }
    .footer-col .logo { align-items: flex-start !important; }
    .footer-col ul { padding-left: 0 !important; margin-left: 0 !important; list-style: none !important; }
    .footer-col ul li { margin-bottom: 12px !important; }
    .footer-col h4 { font-size: 1.3rem !important; margin-bottom: 15px !important; border-bottom: 2px solid rgba(255,255,255,0.3); padding-bottom: 10px; display: inline-block; width: 100%; }

    header { padding: 10px 20px; }
    .mobile-menu-toggle { display: block; }
    .header-actions .btn, .header-actions .lang-selector { display: none; }

    nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--light-color); flex-direction: column; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 1000; }
    nav.active { display: flex; opacity: 1; visibility: visible; }
    nav ul { flex-direction: column; gap: 30px; text-align: center; padding: 0; margin: 0; }
    nav ul li { width: 100%; }
    nav a { font-size: 1.5rem; padding: 10px 0; border-bottom: none; }
    nav a.active { color: var(--primary-color); border-bottom: none; }
    nav a:hover { color: var(--primary-color); border-bottom: none; }

    .dropdown .dropdown-toggle .fa-chevron-down { display: none; }
    
    .dropdown-menu { display: none; position: static; background-color: #f8f9fa; box-shadow: none; padding: 10px 0; width: 100%; opacity: 1; visibility: visible; transform: none; border-radius: 8px; margin-top: 10px; }
    li.dropdown.active .dropdown-menu { display: block !important; }
    li.dropdown.active .dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }
    .dropdown-menu li a { padding: 10px 20px; font-size: 1rem; color: #555; border-bottom: 1px solid #eee; }
    
    nav ul li { width: 100%; }
    nav a { display: block; width: 100%; padding: 15px 0; }
    
    .dropdown .dropdown-toggle { display: flex; justify-content: center; align-items: center; gap: 10px; }
    .dropdown .dropdown-toggle .fa-chevron-down { display: block !important; font-size: 0.8em; transition: transform 0.3s; }
    .hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .cta-image-row { flex-direction: column; align-items: center; gap: 20px; }
    .cta-img { width: 100%; max-width: 350px; }
    .sambutan-row, .sambutan-row.reverse-layout { grid-template-columns: 1fr; }
    .sambutan-row.reverse-layout .sambutan-img { order: -1; }
    .schedule-grid { grid-template-columns: 1fr; }
    .system-box { padding: 25px; }
    .system-list li { flex-direction: column; }
    .system-list li i { margin-bottom: 10px; }
    
    /* Responsif Profil & Fasilitas */
    .quote-section { padding-top: 140px; }
    .quote-card { padding: 0 20px 40px 20px; }
    .quote-card img { width: 140px; height: 140px; margin-top: -70px; }
    .fasilitas-grid { grid-template-columns: 1fr; }
    .card-img-wrapper { height: 200px; }
}