/* ==============================================
   FILE: style.css - WEBSITE MI MUHAMMADIYAH BODASKARANGJATI
   TANGGAL: 12 Maret 2026
   DESKRIPSI: File CSS terstruktur per menu
   WARNA UTAMA: #0B3D91 (biru tua)
   WARNA SEKUNDER: #FFD700 (emas/kuning)
============================================== */

/* ==============================================
   1. RESET & VARIABEL GLOBAL
============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0B3D91;
    --primary-dark: #082e6b;
    --primary-light: #e6f0ff;
    --secondary: #FFD700;
    --secondary-light: #fff9e6;
    --accent: #00C851;
    --dark: #2c3e50;
    --gray-dark: #4a5568;
    --gray: #718096;
    --gray-light: #e2e8f0;
    --light: #f7fafc;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 30px rgba(11,61,145,0.15);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.5;
    background: var(--white);
}

main {
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title-center {
    text-align: center;
}

.section-title-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
}

.section-subtitle-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    background: var(--primary);
    padding: 4px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
}

/* ==============================================
   2. COMPONENTS UMUM (Button, Card, Form, Pagination)
============================================== */
.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,215,0,0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,255,255,0.3);
}

.btn-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    gap: 8px;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(11,61,145,0.2);
}

.btn-more:hover {
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255,215,0,0.3);
    border-color: white;
}

.btn-more i {
    transition: transform 0.3s ease;
}

.btn-more:hover i {
    transform: translateX(5px) rotate(360deg);
}

.btn-daftar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFD700;
    color: #0B3D91;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-daftar:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(255,215,0,0.4);
    background: white;
    color: #0B3D91;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFD700;
    color: #0B3D91;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255,215,0,0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,215,0,0.4);
}

.btn-cta i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.btn-baca {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0B3D91;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-baca i {
    transition: transform 0.3s ease;
}

.btn-baca:hover {
    color: #FFD700;
}

.btn-baca:hover i {
    transform: translateX(5px);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0B3D91;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-detail i {
    transition: transform 0.3s ease;
}

.btn-detail:hover {
    color: #FFD700;
}

.btn-detail:hover i {
    transform: translateX(5px);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0B3D91;
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-kembali {
    display: block;
    text-align: center;
    background: #f0f4ff;
    color: #0B3D91;
    padding: 12px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-kembali:hover {
    background: #0B3D91;
    color: white;
    transform: translateX(-5px);
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: #0B3D91;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-lampiran {
    width: 36px;
    height: 36px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D91;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lampiran:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: rotate(45deg);
}

.btn-zoom {
    background: #FFD700;
    color: #0B3D91;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-zoom:hover {
    background: white;
    transform: scale(1.05);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    color: var(--primary);
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 61, 145, 0.4);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    border-radius: 40px;
    pointer-events: none;
}

.btn-read-more:hover::before {
    left: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.page-link {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 40px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #0B3D91;
    color: white;
    border-color: #0B3D91;
    transform: translateY(-2px);
}

.page-link.active {
    background: #FFD700;
    color: #0B3D91;
    border-color: #FFD700;
    font-weight: 700;
    cursor: default;
}

.page-link.prev,
.page-link.next {
    padding: 0 18px;
    gap: 5px;
}

.card-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
}

.card-icon.calendar {
    background: linear-gradient(135deg, #FFD700, #f0b700);
    color: #0B3D91;
}

.card-icon.mapping {
    background: linear-gradient(135deg, #FFD700, #f0b700);
    color: #0B3D91;
}

.card-icon.info {
    background: linear-gradient(135deg, #28a745, #34d399);
    color: white;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: white;
    border: 2px solid #eef2f6;
    border-radius: 40px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn i {
    color: #FFD700;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #0B3D91;
    color: #0B3D91;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 61, 145, 0.1);
}

.filter-btn:hover i {
    color: #0B3D91;
}

.filter-btn.active {
    background: #0B3D91;
    border-color: #0B3D91;
    color: white;
}

.filter-btn.active i {
    color: #FFD700;
}

.empty-state {
    text-align: center;
    padding: 80px 30px;
    background: white;
    border-radius: 30px;
    border: 3px dashed #e2e8f0;
    grid-column: 1 / -1;
    transition: all 0.3s ease;
}

.empty-state:hover {
    border-color: #FFD700;
    background: #fafcff;
    transform: scale(1.02);
}

.empty-state i {
    font-size: 5rem;
    background: linear-gradient(135deg, #0B3D91, #FFD700);
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.empty-state p {
    color: #718096;
    font-size: 1.3rem;
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ==============================================
   3. HEADER & NAVIGASI
============================================== */
header {
    background: #0B3D91;
    padding: 12px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

header .logo img {
    height: 48px;
    width: auto;
}

header .logo h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

header .logo h1 span {
    color: #FFD700;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

nav ul li {
    position: relative;
}

nav ul li > a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav ul li > a:hover {
    background: rgba(255,255,255,0.1);
}

nav ul li > a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

nav ul li:hover > a i {
    transform: rotate(180deg);
}

nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: block !important;
}

nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul li ul li {
    width: 100%;
    display: block;
}

nav ul li ul li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-align: left;
}

nav ul li ul li a:hover {
    background: #f0f7ff;
    color: #0B3D91;
    padding-left: 25px;
}

.menu-checkbox {
    display: none;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ==============================================
   4. FOOTER
============================================== */
.modern-footer {
    background: linear-gradient(135deg, #0a2a5a, #0B3D91);
    color: white;
    position: relative;
    margin-top: 60px;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.modern-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2.5fr;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-brand-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-brand-text span {
    font-size: 0.8rem;
    color: #FFD700;
    display: block;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social h4 {
    font-size: 0.9rem;
    color: #FFD700;
    margin-bottom: 12px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook:hover { background: #3b5998; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); }
.social-link.youtube:hover { background: #ff0000; }
.social-link.tiktok:hover { background: #000000; }
.social-link.whatsapp:hover { background: #25D366; }

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FFD700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-contact li i {
    width: 20px;
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 3px;
}

.footer-contact li span {
    flex: 1;
}

.footer-map {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255,215,0,0.1);
}

.footer-map iframe {
    border-radius: 6px;
    margin-bottom: 8px;
    width: 100%;
    height: 80px;
    border: none;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #FFD700;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 5px;
    background: rgba(255,215,0,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #FFD700;
    color: #0B3D91;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-bottom .credit {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.copyright-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.copyright-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.admin-login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFD700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.admin-login-icon:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #FFD700;
    color: #0B3D91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #0B3D91;
    color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.3);
}

/* ==============================================
   5. HALAMAN DEPAN / HOME
============================================== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -80px;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,61,145,0.50), rgba(8,46,107,0.40));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease;
    position: relative;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: rgba(255,215,0,0.2);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(255,215,0,0.2);
    text-transform: uppercase;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInLeft 0.8s ease;
}

.slide-title span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.slide-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    animation: slideIn 0.5s ease forwards 0.5s;
}

.slide-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    animation: fadeInRight 0.8s ease;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-nav button:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-50%) scale(1.15);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(255,215,0,0.4);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255,215,0,0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--secondary);
    width: 35px;
    box-shadow: 0 0 15px var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    padding: 6px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(11,61,145,0.15);
    border: 1px solid rgba(255,215,0,0.3);
}

.section-header .section-title {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto 0;
    border-radius: 3px;
}

.section-header .section-subtitle {
    color: var(--gray);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.section-header:hover .section-title::after {
    width: 100px;
    transition: width 0.3s ease;
}

.section-header .section-tag {
    transition: all 0.3s ease;
}

.section-header:hover .section-tag {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11,61,145,0.25);
}

.berita-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0 20px;
}

.berita-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.berita-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(11,61,145,0.15);
    border-color: var(--secondary);
}

.berita-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.berita-card:hover::after {
    left: 100%;
}

.berita-gambar {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.berita-gambar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.berita-card:hover .berita-gambar img {
    transform: scale(1.1);
}

.berita-gambar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    height: 100%;
}

.berita-gambar-default i {
    font-size: 5rem;
    color: rgba(255,255,255,0.2);
    animation: float 3s ease-in-out infinite;
}

.berita-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
    border: 2px solid white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.berita-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.berita-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--primary);
}

.berita-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.berita-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px solid rgba(255,215,0,0.1);
}

.berita-footer a {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 22px !important;
    background: linear-gradient(135deg, var(--secondary), #f0b700) !important;
    color: var(--primary) !important;
    text-decoration: none !important;
    border-radius: 40px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.berita-footer a i {
    font-size: 0.8rem !important;
    transition: transform 0.3s ease !important;
}

.berita-footer a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(11, 61, 145, 0.4) !important;
}

.berita-footer a:hover i {
    transform: translateX(5px) !important;
}

.berita-footer a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    border-radius: 40px;
    pointer-events: none;
}

.berita-footer a:hover::before {
    left: 100%;
}

.sambutan-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.sambutan-wrapper {
    display: flex;
    background: white;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(11,61,145,0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 40px auto 0;
    border: 1px solid rgba(255,215,0,0.2);
}

.sambutan-image {
    flex: 0 0 45%;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.sambutan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sambutan-image:hover img {
    transform: scale(1.05);
}

.sambutan-quote-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(255,215,0,0.4);
    z-index: 2;
    border: 3px solid white;
}

.sambutan-content {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, white, #fff9e6);
}

.sambutan-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.sambutan-jabatan {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    padding: 6px 22px;
    border-radius: 40px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sambutan-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin: 0;
    padding-left: 20px;
    border-left: 4px solid var(--secondary);
    font-style: italic;
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.stat-item {
    background: white;
    padding: 35px 20px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,215,0,0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(11,61,145,0.15);
    border-color: var(--secondary);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 35px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    color: var(--primary);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prestasi-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.prestasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 20px;
}

.prestasi-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.prestasi-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(11,61,145,0.15);
    border-color: var(--secondary);
}

.prestasi-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.prestasi-card:hover::after {
    left: 100%;
}

.prestasi-gambar {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.prestasi-gambar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prestasi-card:hover .prestasi-gambar img {
    transform: scale(1.1);
}

.prestasi-gambar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.prestasi-gambar-default i {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
    animation: float 3s ease-in-out infinite;
}

.prestasi-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid white;
    z-index: 2;
}

.prestasi-content {
    padding: 25px;
}

.prestasi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.prestasi-year {
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prestasi-level {
    background: rgba(255,215,0,0.15);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255,215,0,0.3);
}

.prestasi-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
}

.prestasi-org {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.prestasi-org i {
    color: var(--secondary);
}

.prestasi-desc {
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,215,0,0.2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prestasi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prestasi-medali {
    font-size: 1.8rem;
    filter: drop-shadow(0 5px 10px rgba(255,215,0,0.3));
}

.prestasi-urutan {
    background: #edf2f7;
    color: var(--gray);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pembiasaan-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.pembiasaan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0 20px;
}

.pembiasaan-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pembiasaan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(11,61,145,0.15);
    border-color: var(--secondary);
}

.pembiasaan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.pembiasaan-card:hover::after {
    left: 100%;
}

.pembiasaan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 32px;
    transition: all 0.4s ease;
}

.pembiasaan-card:hover .pembiasaan-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    color: var(--primary);
}

.pembiasaan-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.pembiasaan-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.eks-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.eks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0 20px;
}

.eks-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.eks-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(11,61,145,0.15);
    border-color: var(--secondary);
}

.eks-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.eks-card:hover::after {
    left: 100%;
}

.eks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 35px;
    transition: all 0.4s ease;
}

.eks-card:hover .eks-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    color: var(--primary);
}

.eks-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.eks-meta {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.eks-meta i {
    color: var(--secondary);
}

.eks-desc {
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.agenda-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.agenda-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.agenda-item {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.agenda-item:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 35px rgba(11,61,145,0.1);
    border-color: var(--secondary);
}

.agenda-item.berlangsung {
    border-left-color: #28a745;
}

.agenda-item.akan-datang {
    border-left-color: var(--primary);
}

.agenda-item.selesai {
    border-left-color: #6c757d;
}

.agenda-date {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.agenda-date .day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-content {
    flex: 1;
}

.agenda-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.agenda-status-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.agenda-status-badge.berlangsung {
    background: #d4edda;
    color: #28a745;
}

.agenda-status-badge.akan-datang {
    background: #e6f0ff;
    color: var(--primary);
}

.agenda-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.agenda-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.galeri-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0 20px;
}

.galeri-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.galeri-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 45px rgba(11,61,145,0.2);
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11,61,145,0.95), transparent);
    padding: 25px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.galeri-item:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-overlay h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.galeri-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin: 0;
}

.galeri-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid white;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.galeri-item:hover .galeri-badge {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================================
   SARANA SECTION - DASHBOARD (IDENTIK DENGAN sarana.php)
   ============================================== */

.sarana-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.sarana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0 70px;
}

.sarana-item {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sarana-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0B3D91, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.sarana-item:hover::before {
    opacity: 1;
}

.sarana-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.1);
    border-color: transparent;
}

/* Style untuk gambar/foto */
.sarana-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.sarana-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sarana-item:hover .sarana-img img {
    transform: scale(1.05);
}

/* Style untuk icon (jika tidak ada gambar) */
.sarana-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.2);
    transition: all 0.3s ease;
}

.sarana-item:hover .sarana-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0B3D91;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.sarana-item h4 {
    color: #0B3D91;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 15px 10px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.sarana-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0B3D91, #FFD700);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.sarana-item:hover h4::after {
    width: 60px;
}

.sarana-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 15px 20px;
    padding: 0 5px;
}

/* Badge/ribbon opsional */
.sarana-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(11, 61, 145, 0.9);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
}

.sarana-item:hover .sarana-badge {
    background: #FFD700;
    color: #0B3D91;
}

/* Responsive */
@media (max-width: 768px) {
    .sarana-section {
        padding: 40px 0;
    }
    
    .sarana-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
        margin: 30px 0 40px;
    }
    
    .sarana-img {
        height: 160px;
    }
    
    .sarana-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 25px auto 15px;
    }
    
    .sarana-item h4 {
        font-size: 1rem;
    }
    
    .sarana-item p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sarana-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sarana-img {
        height: 180px;
    }
    
    .sarana-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
}

.visi-misi-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.visi-misi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.visi-card, .misi-card {
    background: white;
    border-radius: 32px;
    padding: 45px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,215,0,0.1);
}

.visi-card:hover, .misi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(11,61,145,0.15);
    border-color: var(--secondary);
}

.visi-icon, .misi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 35px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.visi-card:hover .visi-icon,
.misi-card:hover .misi-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary), #f0b700);
    color: var(--primary);
}

.visi-card h3, .misi-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.visi-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

.misi-card ul {
    list-style: none;
    padding: 0;
}

.misi-card li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
}

.misi-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==============================================
   6. HALAMAN PROFIL
============================================== */
.sejarah-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin: 40px 0 50px;
}

.sejarah-sidebar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 25px 0;
    height: fit-content;
    position: sticky;
    top: 90px;
    border: 1px solid #eef2f6;
}

.sidebar-title {
    padding: 0 25px 18px 25px;
    border-bottom: 3px solid #FFD700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-title i {
    color: #FFD700;
    font-size: 1.4rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px;
    border-radius: 10px;
}

.sidebar-title h3 {
    color: #0B3D91;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.timeline-item {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0 10px 10px 0;
    margin-bottom: 5px;
}

.timeline-item:hover {
    background: #f0f7ff;
    border-left-color: #0B3D91;
}

.timeline-item.active {
    background: #e6f0ff;
    border-left-color: #FFD700;
    box-shadow: 0 5px 15px rgba(11,61,145,0.1);
}

.timeline-tahun {
    display: inline-block;
    background: #0B3D91;
    color: white;
    padding: 4px 12px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(11,61,145,0.2);
}

.timeline-item.active .timeline-tahun {
    background: #FFD700;
    color: #0B3D91;
    box-shadow: 0 2px 8px rgba(255,215,0,0.3);
}

.timeline-judul {
    display: block;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.timeline-item.active .timeline-judul {
    color: #0B3D91;
    font-weight: 600;
}

.timeline-empty {
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

.sejarah-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sejarah-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    scroll-margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.sejarah-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0B3D91, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sejarah-card:hover::before {
    opacity: 1;
}

.sejarah-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11,61,145,0.15);
    border-color: transparent;
}

.card-tahun {
    margin-bottom: 15px;
}

.card-tahun span {
    display: inline-block;
    background: linear-gradient(135deg, #0B3D91, #0B3D91);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    border-left: 3px solid #FFD700;
    box-shadow: 0 4px 10px rgba(11,61,145,0.2);
}

.card-judul {
    color: #0B3D91;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
}

.card-judul::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
    border-radius: 3px;
}

.card-gambar {
    margin: 20px 0 25px;
    border-radius: 12px;
    overflow: hidden;
    /* Hapus max-height */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    background: #f5f5f5;
}

.card-gambar img {
    width: 100%;
    height: auto; /* Auto agar proporsional */
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Hover effect tetap berfungsi */
.sejarah-card:hover .card-gambar img {
    transform: scale(1.03);
}


.gambar-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11,61,145,0.9), transparent);
    color: white;
    padding: 20px 15px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.card-isi {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.card-isi p {
    margin-bottom: 15px;
}

.card-isi p:last-child {
    margin-bottom: 0;
}

.card-footer {
    border-top: 2px solid #f0f4f9;
    padding-top: 20px;
    margin-top: 10px;
}

.footer-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #718096;
    font-size: 0.9rem;
    background: #f8fafc;
    padding: 8px 20px;
    border-radius: 40px;
}

.footer-info i {
    color: #FFD700;
    font-size: 1rem;
}

.sejarah-empty {
    text-align: center;
    padding: 70px 30px;
    background: white;
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
    transition: all 0.3s ease;
}

.sejarah-empty:hover {
    border-color: #FFD700;
    background: #fafcff;
}

.sejarah-empty i {
    font-size: 4rem;
    background: linear-gradient(135deg, #0B3D91, #FFD700);
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.sejarah-empty p {
    color: #718096;
    font-size: 1.2rem;
    font-weight: 500;
}

.sejarah-cta {
    background: linear-gradient(135deg, #0B3D91, #0a3570);
    color: white;
    text-align: center;
    padding: 70px 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.sejarah-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sejarah-cta .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sejarah-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.sejarah-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.visi-misi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin: 80px auto 120px; /* 150px jarak ke footer */
    max-width: 1000px;
    justify-content: center;

}
.visi-card,
.misi-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    scroll-margin-top: 90px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.visi-card:hover,
.misi-card:hover {
    box-shadow: 0 10px 30px rgba(11,61,145,0.1);
    border-color: #FFD700;
    transform: translateY(-2px);
}

.visi-card::before,
.misi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0B3D91, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visi-card:hover::before,
.misi-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-left: 3px solid #FFD700;
}

.card-icon i {
    font-size: 1.8rem;
    color: #0B3D91;
}

.card-title {
    color: #0B3D91;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
    border-radius: 3px;
}

.card-content {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.card-content p {
    margin-bottom: 15px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.card-content ul,
.card-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.card-content li {
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.7;
}

.card-content strong,
.card-content b {
    color: #0B3D91;
    font-weight: 600;
}

.text-muted {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
    color: #718096;
    font-size: 1rem;
    font-style: italic;
}

.text-muted i {
    font-size: 3rem;
    color: #cbd5e0;
    margin-bottom: 15px;
    display: block;
}

.guru-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    margin: 50px 0 70px;
}

.guru-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.guru-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 45px rgba(11, 61, 145, 0.15);
    border-color: #FFD700;
}

.guru-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 2px white;
}

/* ========================= */
/* REVISI UTAMA DI SINI */
/* ========================= */
.guru-card-inner {
    padding: 30px 25px 25px;
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.guru-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(11, 61, 145, 0.03), transparent 70%);
    z-index: -1;
}

.guru-foto {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 15px 30px rgba(11, 61, 145, 0.2);
    position: relative;
    transition: all 0.4s ease;
    order: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ganti dari contain ke cover */
    object-position: center 20%; /* Geser fokus ke atas (wajah) */
    display: block;
    transition: transform 0.4s ease;
}

.guru-card:hover .guru-foto img {
    transform: scale(1.05);
}

.guru-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D91;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.guru-card:hover .guru-icon {
    transform: rotate(360deg);
    background: #0B3D91;
    color: #FFD700;
}

/* INFO */
.guru-info {
    text-align: center;
    position: relative;
    padding-bottom: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;

    order: 2;
}

.guru-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0B3D91, #FFD700);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.guru-card:hover .guru-info::after {
    width: 80px;
}

/* NAMA */
.guru-nama {
    color: #0B3D91;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    display: inline-block;

    order: 1;
}

/* NIP */
.guru-nip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    color: #0B3D91;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    border: 1px dashed #0B3D91;

    order: 2;
}

.guru-nip i {
    color: #FFD700;
}

/* DETAIL */
.guru-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;

    order: 3;
}

/* JABATAN */
.guru-jabatan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;

    background: rgba(11, 61, 145, 0.05);
    color: #0B3D91;
    border: 1px solid rgba(11, 61, 145, 0.2);

    order: 1;
}

/* MAPEL */
.guru-mapel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;

    background: rgba(255, 215, 0, 0.05);
    color: #e67e22;
    border: 1px solid rgba(255, 215, 0, 0.2);

    order: 2;
}

.guru-jabatan i {
    color: #0B3D91;
}

.guru-mapel i {
    color: #FFD700;
}

.guru-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.guru-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.guru-social a:first-child {
    background: #0B3D91;
}

.guru-social a:last-child {
    background: #25D366;
}

.guru-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sarana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0 70px;
}

.sarana-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sarana-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0B3D91, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sarana-card:hover::before {
    opacity: 1;
}

.sarana-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.1);
    border-color: transparent;
}

.sarana-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.sarana-card:hover .sarana-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0B3D91;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.sarana-nama {
    color: #0B3D91;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
}

.sarana-nama::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0B3D91, #FFD700);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.sarana-card:hover .sarana-nama::after {
    width: 80px;
}

.sarana-keterangan {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.sarana-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(11, 61, 145, 0.1);
    color: #0B3D91;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 30px;
    border: 1px solid rgba(11, 61, 145, 0.2);
}

.sarana-card:hover .sarana-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
}

/* ==============================================
   STRUKTUR ORGANISASI - STYLE
   ============================================= */

/* Struktur Section */
.struktur-section {
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.struktur-section:hover {
    box-shadow: 0 20px 40px -20px rgba(11,61,145,0.2);
}

.struktur-image {
    text-align: center;
    margin-bottom: 20px;
}

.img-struktur {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.img-struktur:hover {
    transform: scale(1.02);
}

.struktur-placeholder {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    border: 2px dashed #cbd5e1;
}

.struktur-placeholder i {
    font-size: 4rem;
    color: #94a3b8;
    margin-bottom: 15px;
    display: block;
}

.struktur-placeholder p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.struktur-caption {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.struktur-caption p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.struktur-caption i {
    color: #0B3D91;
    margin-right: 5px;
}

/* Section Title (jika belum ada) */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 10px;
}

.section-title h2 i {
    color: #FFD700;
    margin-right: 12px;
}

.section-title p {
    color: #64748b;
    font-size: 1rem;
}

/* Guru Grid */
.guru-section {
    margin-bottom: 60px;
}

.guru-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.guru-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 25px 20px;
    border: 1px solid #e2e8f0;
}

.guru-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -15px rgba(11,61,145,0.2);
    border-color: #FFD700;
}

.guru-foto {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFD700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guru-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guru-card:hover .guru-foto img {
    transform: scale(1.1);
}

.guru-foto-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-foto-placeholder i {
    font-size: 5rem;
    color: #94a3b8;
}

.guru-nama {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 5px;
}

.guru-nip {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
}

.guru-jabatan {
    font-size: 0.9rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 8px;
    background: rgba(255,215,0,0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
}

.guru-mapel {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 8px;
}

.guru-mapel i {
    color: #0B3D91;
    margin-right: 5px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.empty-state i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 15px;
    display: inline-block;
}

.empty-state p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 20px;
}

.empty-state .btn-primary {
    display: inline-block;
    padding: 10px 24px;
    background: #0B3D91;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.empty-state .btn-primary:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .struktur-section {
        padding: 20px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .guru-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .guru-foto {
        width: 120px;
        height: 120px;
    }
    
    .guru-nama {
        font-size: 1rem;
    }
    
    .guru-jabatan {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .struktur-placeholder {
        padding: 40px 20px;
    }
    
    .struktur-placeholder i {
        font-size: 3rem;
    }
    
    .guru-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   7. HALAMAN BERITA
============================================== */
.pengumuman-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin: 50px 0 40px;
}

.pengumuman-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pengumuman-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(11, 61, 145, 0.15);
    border-color: #FFD700;
}

.pengumuman-gambar {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f0f4ff;
}

.pengumuman-gambar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pengumuman-card:hover .pengumuman-gambar img {
    transform: scale(1.1);
}

.pengumuman-gambar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B3D91, #1e4ca0);
}

.pengumuman-gambar-default i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.pengumuman-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 215, 0, 0.95);
    color: #0B3D91;
    padding: 8px 15px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    min-width: 60px;
}

.date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pengumuman-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pengumuman-judul {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pengumuman-judul a {
    color: #0B3D91;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.pengumuman-judul a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #0B3D91);
    transition: width 0.3s ease;
}

.pengumuman-judul a:hover {
    color: #FFD700;
}

.pengumuman-judul a:hover::after {
    width: 100%;
}

.pengumuman-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.pengumuman-penulis,
.pengumuman-kategori {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #718096;
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 30px;
}

.pengumuman-penulis i,
.pengumuman-kategori i {
    color: #FFD700;
}

.pengumuman-excerpt {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.pengumuman-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eef2f6;
}

.page-header-small {
    padding: 40px 20px;
}

.page-header-small h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.header-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.header-meta i {
    color: #FFD700;
    margin-right: 5px;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin: 50px 0;
}

.detail-content {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.detail-gambar {
    margin: -35px -35px 30px -35px;
    height: 350px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.detail-gambar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-isi {
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.detail-isi p {
    margin-bottom: 20px;
}

.detail-lampiran {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    border-left: 4px solid #FFD700;
}

.detail-lampiran h3 {
    color: #0B3D91;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-lampiran h3 i {
    color: #FFD700;
}

.detail-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eef2f6;
}

.detail-share h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    margin-bottom: 25px;
}

.sidebar-card h3 {
    color: #0B3D91;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

.sidebar-card h3 i {
    color: #FFD700;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #eef2f6;
    color: #4a5568;
    font-size: 0.95rem;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    width: 20px;
    color: #FFD700;
}

.related-list {
    list-style: none;
}

.related-list li {
    margin-bottom: 12px;
}

.related-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-list li a:hover {
    background: #f0f4ff;
    transform: translateX(5px);
}

.related-list li a i {
    color: #FFD700;
    font-size: 1rem;
}

.related-list li a span {
    flex: 1;
    font-size: 0.95rem;
}

.related-list li a small {
    color: #718096;
    font-size: 0.8rem;
}

.agenda-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 50px;
}

.agenda-stats .stat-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.agenda-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0B3D91;
    transition: width 0.3s ease;
}

.agenda-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.1);
}

.agenda-stats .stat-card.active {
    background: #0B3D91;
    border-color: #0B3D91;
}

.agenda-stats .stat-card.active::before {
    background: #FFD700;
    width: 6px;
}

.agenda-stats .stat-card.active .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.agenda-stats .stat-card.active .stat-number,
.agenda-stats .stat-card.active .stat-label {
    color: white;
}

.agenda-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D91;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.agenda-stats .stat-content {
    display: flex;
    flex-direction: column;
}

.agenda-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0B3D91;
    line-height: 1;
    margin-bottom: 5px;
}

.agenda-stats .stat-label {
    color: #718096;
    font-size: 0.85rem;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0 70px;
}

.agenda-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    position: relative;
}

.agenda-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #0B3D91;
}

.agenda-card.akan-datang::before {
    background: #0B3D91;
}

.agenda-card.berlangsung::before {
    background: #28a745;
}

.agenda-card.selesai::before {
    background: #6c757d;
}

.agenda-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(11, 61, 145, 0.15);
}

.agenda-date-badge {
    width: 80px;
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.agenda-card.akan-datang .agenda-date-badge {
    background: linear-gradient(135deg, #0B3D91, #082e6b);
}

.agenda-card.berlangsung .agenda-date-badge {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.agenda-card.selesai .agenda-date-badge {
    background: linear-gradient(135deg, #6c757d, #5a6268);
}

.agenda-date-badge .date-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.agenda-date-badge .date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-content {
    flex: 1;
    padding: 20px;
}

.agenda-status {
    margin-bottom: 10px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.akan-datang {
    background: #e6f0ff;
    color: #0B3D91;
}

.status-badge.berlangsung {
    background: #d4edda;
    color: #28a745;
}

.status-badge.selesai {
    background: #e2e8f0;
    color: #6c757d;
}

.agenda-judul {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.agenda-judul a {
    color: #0B3D91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.agenda-judul a:hover {
    color: #FFD700;
}

.agenda-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    font-size: 0.9rem;
}

.meta-item i {
    width: 18px;
    color: #FFD700;
}

.agenda-deskripsi {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eef2f6;
}

.agenda-footer {
    display: flex;
    justify-content: flex-end;
}

.status-badge-large {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
}

.status-badge-large.akan-datang {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-badge-large.berlangsung {
    background: rgba(40, 167, 69, 0.2);
    color: white;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge-large.selesai {
    background: rgba(108, 117, 125, 0.2);
    color: white;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.status-badge-small {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 5px;
}

.status-badge-small.akan-datang {
    background: #e6f0ff;
    color: #0B3D91;
}

.status-badge-small.berlangsung {
    background: #d4edda;
    color: #28a745;
}

.status-badge-small.selesai {
    background: #e2e8f0;
    color: #6c757d;
}

.detail-header {
    margin-bottom: 30px;
}

.detail-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.date-box {
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    color: white;
    padding: 15px 25px;
    border-radius: 16px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.2);
}

.date-box .date-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.date-box .date-month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-box .date-year {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.date-separator {
    color: #0B3D91;
    font-size: 2rem;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D91;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-content h4 {
    color: #2c3e50;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.info-content p {
    color: #0B3D91;
    font-weight: 600;
    font-size: 1rem;
}

.detail-deskripsi {
    margin: 30px 0;
}

.detail-deskripsi h3 {
    color: #0B3D91;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-deskripsi h3 i {
    color: #FFD700;
}

.deskripsi-content {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #FFD700;
}

/* ==============================================
   8. HALAMAN GALERI
============================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0 60px;
}

.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.15);
    border-color: #FFD700;
}

.gallery-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 61, 145, 0.95), rgba(8, 46, 107, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFD700;
}

.overlay-kategori {
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 30px;
}

.overlay-kategori i {
    margin-right: 5px;
}

.gallery-caption {
    padding: 15px;
    background: #f8fafc;
    border-top: 1px solid #eef2f6;
}

.gallery-caption p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    font-size: 0.95rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #FFD700;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: translateY(-50%) scale(1.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0 70px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }
.video-card:nth-child(6) { animation-delay: 0.6s; }

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(11, 61, 145, 0.15);
    border-color: #FFD700;
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
    background: #0B3D91;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-thumbnail-default {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    color: white;
    font-size: 4rem;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D91;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    z-index: 2;
}

.video-play::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.video-duration i {
    color: #FFD700;
    font-size: 0.7rem;
}

.video-content {
    padding: 20px;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-title a {
    color: #0B3D91;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.video-title a:hover {
    color: #FFD700;
}

.video-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-height: 2.8em;
    overflow: hidden;
    position: relative;
}

.video-description::after {
    content: '...';
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    padding-left: 5px;
    color: #4a5568;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eef2f6;
}

.video-date {
    color: #718096;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-date i {
    color: #FFD700;
}

.video-order {
    background: #f0f4ff;
    color: #0B3D91;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-modal-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    color: white;
}

.video-modal-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    padding-right: 30px;
}

.video-modal-body {
    padding: 0;
    background: black;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-footer {
    padding: 20px 25px;
    background: #f8fafc;
    border-top: 1px solid #eef2f6;
}

.video-modal-footer p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    line-height: 1;
}

.video-modal-close:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: rotate(90deg);
}

.video-youtube-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #ff0000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    pointer-events: none;
}

.video-youtube-link {
    color: #ff0000;
}

.video-thumbnail {
    position: relative;
    display: block;
    cursor: pointer;
}

.video-thumbnail:hover .video-play {
    transform: scale(1.1);
}

/* ==============================================
   9. HALAMAN KESISWAAN
============================================== */
/* ==============================================
   9. HALAMAN KESISWAAN - PRESTASI
   ============================================== */

/* ========== STATISTIK PRESTASI ========== */
.prestasi-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0B3D91, #FFD700);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.1);
    border-color: transparent;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0B3D91, #1e4ca0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(11, 61, 145, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B3D91;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ========== FILTER TAHUN ========== */
.prestasi-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #0B3D91;
    background: white;
    color: #0B3D91;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #0B3D91;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 61, 145, 0.2);
}

.filter-btn.active {
    background: #0B3D91;
    color: white;
    box-shadow: 0 5px 15px rgba(11, 61, 145, 0.3);
}

/* ========== GRID PRESTASI ========== */
.prestasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0 70px;
}

.prestasi-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.prestasi-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(11, 61, 145, 0.15);
    border-color: #FFD700;
}

/* ========== GAMBAR PRESTASI ========== */
.prestasi-gambar {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f0f4ff;
}

.prestasi-gambar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prestasi-card:hover .prestasi-gambar img {
    transform: scale(1.1);
}

.prestasi-gambar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B3D91, #1e4ca0);
}

.prestasi-gambar-default i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== KONTEN PRESTASI ========== */
.prestasi-content {
    padding: 25px;
}

.prestasi-nama {
    color: #0B3D91;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
}

.prestasi-nama::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #0B3D91);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.prestasi-card:hover .prestasi-nama::after {
    width: 80px;
}

/* ========== TAHUN & JUARA (SEMUA WARNA KUNING) ========== */
.prestasi-tahun-juara {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.prestasi-tahun-badge {
    background: #FFD700;
    color: #0B3D91;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.prestasi-tahun-badge i {
    color: #0B3D91;
}

.prestasi-juara-badge {
    background: #FFD700;
    color: #0B3D91;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ========== PESERTA (SISWA/TIM) ========== */
.prestasi-peserta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f0f9ff, #e6f3ff);
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
    border-left: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.prestasi-card:hover .prestasi-peserta {
    background: linear-gradient(135deg, #e6f3ff, #d4ecff);
    transform: translateX(3px);
}

.prestasi-peserta i {
    font-size: 1rem;
    color: #FFD700;
    width: 24px;
    text-align: center;
}

.prestasi-peserta-label {
    font-weight: 700;
    color: #0B3D91;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(11, 61, 145, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.prestasi-peserta-nama {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    flex: 1;
    word-break: break-word;
}

/* ========== TINGKAT ========== */
.prestasi-tingkat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f4ff;
    color: #0B3D91;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(11, 61, 145, 0.1);
}

.prestasi-tingkat i {
    color: #FFD700;
}

/* ========== PENYELENGGARA ========== */
.prestasi-penyelenggara {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff9e6;
    color: #b45f06;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.prestasi-penyelenggara i {
    color: #FFD700;
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state p {
    color: #718096;
    font-size: 1.1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .prestasi-stats {
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 25px;
        min-width: 220px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .prestasi-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .prestasi-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .stat-card {
        min-width: auto;
        padding: 18px 20px;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .prestasi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prestasi-gambar {
        height: 180px;
    }
    
    .prestasi-content {
        padding: 18px;
    }
    
    .prestasi-nama {
        font-size: 1.1rem;
    }
    
    .prestasi-tahun-juara {
        gap: 8px;
    }
    
    .prestasi-tahun-badge,
    .prestasi-juara-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .prestasi-peserta {
        padding: 8px 12px;
    }
    
    .prestasi-peserta i {
        width: 20px;
        font-size: 0.9rem;
    }
    
    .prestasi-peserta-label {
        font-size: 0.7rem;
    }
    
    .prestasi-peserta-nama {
        font-size: 0.8rem;
    }
    
    .prestasi-tingkat,
    .prestasi-penyelenggara {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .prestasi-gambar {
        height: 160px;
    }
    
    .prestasi-content {
        padding: 15px;
    }
    
    .prestasi-nama {
        font-size: 1rem;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
    
    .prestasi-tahun-juara {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .prestasi-tahun-badge,
    .prestasi-juara-badge {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .prestasi-peserta {
        gap: 6px;
        padding: 6px 10px;
        margin-bottom: 10px;
    }
    
    .prestasi-peserta i {
        width: 18px;
        font-size: 0.8rem;
    }
    
    .prestasi-peserta-label {
        font-size: 0.65rem;
    }
    
    .prestasi-peserta-nama {
        font-size: 0.75rem;
    }
    
    .prestasi-tingkat,
    .prestasi-penyelenggara {
        padding: 5px 10px;
        font-size: 0.7rem;
        margin-bottom: 8px;
        gap: 6px;
    }
    
    .empty-state {
        padding: 50px 20px;
    }
    
    .empty-state i {
        font-size: 3rem;
    }
    
    .empty-state p {
        font-size: 0.9rem;
    }
}

/* ========== ANIMASI UNTUK FILTER ========== */
.prestasi-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prestasi-card[style*="display: none"] {
    display: none !important;
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.prestasi-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.prestasi-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.eks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0 70px;
}

.eks-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.eks-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0B3D91, #FFD700, #0B3D91);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.eks-card:hover::before {
    opacity: 1;
}

.eks-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 61, 145, 0.15);
    border-color: transparent;
}

.eks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #0B3D91, #1e4ca0);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 30px rgba(11, 61, 145, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.eks-card:hover .eks-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(145deg, #FFD700, #f0b700);
    color: #0B3D91;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.eks-nama {
    color: #0B3D91;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
}

.eks-nama::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0B3D91, #FFD700);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.eks-card:hover .eks-nama::after {
    width: 120px;
}

.eks-pembina {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
    color: #0B3D91;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(11, 61, 145, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(11, 61, 145, 0.05);
}

.eks-card:hover .eks-pembina {
    background: linear-gradient(135deg, #0B3D91, #1e4ca0);
    color: white;
    border-color: #FFD700;
    transform: translateX(5px);
    box-shadow: 0 8px 15px rgba(11, 61, 145, 0.2);
}

.eks-pembina i {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D91;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.eks-card:hover .eks-pembina i {
    background: #FFD700;
    color: #0B3D91;
    transform: rotate(360deg);
}

.eks-pembina span {
    flex: 1;
}

.eks-jadwal {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff9e6, #fff2cc);
    color: #b45f06;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.1);
}

.eks-card:hover .eks-jadwal {
    background: linear-gradient(135deg, #FFD700, #f0b700);
    color: #0B3D91;
    border-color: #0B3D91;
    transform: translateX(5px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.eks-jadwal i {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45f06;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.eks-card:hover .eks-jadwal i {
    background: #0B3D91;
    color: #FFD700;
    transform: rotate(360deg);
}

.eks-jadwal span {
    flex: 1;
}

.eks-deskripsi {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    margin: 15px 0 10px;
    padding: 20px 15px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-align: left;
}

.eks-card:hover .eks-deskripsi {
    background: white;
    border-left-color: #0B3D91;
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.1);
    transform: scale(1.02);
}

.eks-deskripsi::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: serif;
    z-index: -1;
}

.eks-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(11, 61, 145, 0.1);
    color: #0B3D91;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid rgba(11, 61, 145, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    z-index: 2;
}

.eks-card:hover .eks-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}


/* ==============================================
   PPDB PAGE - PUBLIC STYLES (COMPLETE)
============================================== */

.ppdb-page {
    padding: 0 0 60px;
    background: #f8fafc;
}

.section-title,
.section-title-top {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2,
.section-title-top h2 {
    font-size: 2rem;
    color: #0B3D91;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after,
.section-title-top h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
}

.section-title p,
.section-title-top p {
    color: #64748b;
    font-size: 1rem;
    max-width: 650px;
    margin: 15px auto 0;
}

/* Hero Section */
.ppdb-hero {
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.ppdb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.08), transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ppdb-hero .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,215,0,0.2);
    color: #FFD700;
    padding: 8px 25px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,215,0,0.4);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    max-width: 550px;
}

.hero-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-year {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 40px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Countdown */
.hero-countdown {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 25px 30px;
    border: 1px solid rgba(255,215,0,0.3);
    min-width: 350px;
}

.countdown-wrapper {
    text-align: center;
}

.countdown-label {
    color: #FFD700;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 10px 15px;
    border-radius: 12px;
    min-width: 65px;
}

.countdown-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.countdown-item .countdown-label {
    font-size: 0.7rem;
    margin-top: 5px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 1.5rem;
    color: #0B3D91;
}

.info-card h3 {
    font-size: 1.1rem;
    color: #0B3D91;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ==============================================
   SYARAT PENDAFTARAN - SIMPLE CLEAN
   ============================================== */

.syarat-wrapper {
    margin-bottom: 80px;
}

.syarat-container {
    max-width: 750px;
    margin: 0 auto;
}

.syarat-box {
    background: white;
    border-radius: 16px;
    padding: 10px 0;
    margin-bottom: 25px;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.syarat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.syarat-item:last-child {
    border-bottom: none;
}

.syarat-item.sub {
    padding-left: 50px;
}

.syarat-item.info {
    background: #f8fafc;
    margin: 5px 0;
}

.syarat-number {
    width: 26px;
    height: 26px;
    background: #0B3D91;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.syarat-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    margin-left: 9px;
    flex-shrink: 0;
}

.syarat-text {
    flex: 1;
    color: #334155;
    font-size: 1rem;
    line-height: 1.5;
}

/* Catatan Box - Style seperti info card */
.catatan-box {
    background: #fff9e6;
    border-radius: 16px;
    border-left: 5px solid #f59e0b;
    padding: 20px 25px;
}

.catatan-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.catatan-item:first-child {
    padding-top: 0;
}

.catatan-item:last-child {
    padding-bottom: 0;
}

.catatan-bullet {
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    flex-shrink: 0;
}

.catatan-text {
    flex: 1;
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Fasilitas */
.fasilitas-wrapper {
    margin-bottom: 80px;
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.fasilitas-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.fasilitas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

.fasilitas-icon {
    width: 70px;
    height: 70px;
    background: #0B3D91;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFD700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.fasilitas-card:hover .fasilitas-icon {
    transform: scale(1.05);
    background: #FFD700;
    color: #0B3D91;
}

.fasilitas-card h4 {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0 0 10px;
}

.fasilitas-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Mengapa Memilih Kami */
.mengapa-wrapper {
    margin-bottom: 80px;
}

.mengapa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.mengapa-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mengapa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

.mengapa-icon {
    width: 70px;
    height: 70px;
    background: #0B3D91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFD700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.mengapa-card:hover .mengapa-icon {
    transform: scale(1.05);
    background: #FFD700;
    color: #0B3D91;
}

.mengapa-card h4 {
    font-size: 1.1rem;
    color: #0B3D91;
    margin-bottom: 10px;
    font-weight: 600;
}

.mengapa-card p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Pendaftaran Wrapper */
.pendaftaran-wrapper {
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    border-radius: 20px;
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.pendaftaran-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

.pendaftaran-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 30px;
}

.pendaftaran-left {
    flex: 1;
}

.pendaftaran-left h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.pendaftaran-left p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-daftar {
    display: inline-block;
    background: #FFD700;
    color: #0B3D91;
    padding: 12px 35px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-daftar:hover {
    transform: scale(1.02);
    background: #ffed4a;
}

.pendaftaran-right {
    text-align: center;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 3px solid #FFD700;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.qr-code i {
    font-size: 3rem;
    color: #0B3D91;
}

.pendaftaran-right p {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
}

/* ==============================================
   PPDB PAGE - KONTAK SECTION (TIDAK MEMPENGARUHI KONTAK ASLI)
   ============================================== */

/* Kontak section di PPDB page - hanya berlaku di dalam .ppdb-page */
.ppdb-page .kontak-wrapper {
    background: linear-gradient(135deg, #FFD700, #f0b700);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.ppdb-page .kontak-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 40px;
    flex-wrap: wrap;
}

.ppdb-page .kontak-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0B3D91;
}

.ppdb-page .kontak-info {
    flex: 1;
}

.ppdb-page .kontak-info h3 {
    font-size: 1.3rem;
    color: #0B3D91;
    margin-bottom: 8px;
    font-weight: 700;
}

.ppdb-page .kontak-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 5px;
}

.ppdb-page .kontak-person {
    color: rgba(11,61,145,0.8);
    font-size: 0.9rem;
}

.ppdb-page .kontak-keterangan {
    color: rgba(11,61,145,0.7);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Responsive PPDB kontak section */
@media (max-width: 768px) {
    .ppdb-page .kontak-content {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .ppdb-page .kontak-info h3 {
        font-size: 1.1rem;
    }
    
    .ppdb-page .kontak-phone {
        font-size: 1.1rem;
    }
}

/* Catatan */
.catatan-wrapper {
    background: #fff9e6;
    border-radius: 16px;
    border-left: 4px solid #FFD700;
    margin-bottom: 20px;
}

.catatan-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
}

.catatan-content i {
    font-size: 1.5rem;
    color: #FFD700;
}

.catatan-content p {
    color: #b45f06;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .syarat-dual-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-countdown {
        min-width: 100%;
        padding: 20px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 8px 12px;
        min-width: 55px;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
    
    .pendaftaran-content {
        padding: 30px 25px;
        text-align: center;
        flex-direction: column;
    }
    
    .kontak-content {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .catatan-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fasilitas-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .mengapa-grid {
        grid-template-columns: 1fr;
    }
    
    .syarat-item {
        padding: 12px 18px;
    }
    
    .syarat-item.sub {
        padding-left: 38px;
    }
    
    .syarat-text {
        font-size: 0.9rem;
    }
    
    .catatan-box {
        padding: 15px 18px;
    }
    
    .catatan-text {
        font-size: 0.85rem;
    }
    
    .section-title h2,
    .section-title-top h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fasilitas-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .fasilitas-card h4 {
        font-size: 0.85rem;
    }
    
    .mengapa-card {
        padding: 20px;
    }
    
    .kontak-phone {
        font-size: 1.1rem;
    }
}

/* ==============================================
   11. HALAMAN KONTAK
============================================== */
body.kontak-page main {
    padding-top: 0 !important;
}

body.kontak-page .kontak-container {
    padding-top: 80px;
    margin-top: 0;
    min-height: 100vh;
    background: #f8fafc;
}

body.kontak-page .page-header {
    margin: 0 !important;
    padding: 60px 20px;
    width: 100%;
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 40px !important;
}

body.kontak-page .page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: white;
}

body.kontak-page .page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 4px;
}

body.kontak-page .page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

body.kontak-page .kontak-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 0 60px;
}

body.kontak-page .lokasi-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

body.kontak-page .lokasi-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

body.kontak-page .section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.kontak-page .section-title::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.4rem;
    color: #FFD700;
}

body.kontak-page .sub-title {
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eef2f6;
}

body.kontak-page .maps-container {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

body.kontak-page .maps-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

body.kontak-page .kontak-info-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

body.kontak-page .kontak-info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

body.kontak-page .kontak-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

body.kontak-page .kontak-item:hover {
    transform: translateX(5px);
    background: white;
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

body.kontak-page .kontak-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

body.kontak-page .email-icon {
    background: linear-gradient(135deg, #0B3D91, #1e4ca0);
    color: white;
}

body.kontak-page .address-icon {
    background: linear-gradient(135deg, #0B3D91, #2a5ab5);
    color: white;
}

body.kontak-page .phone-icon {
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    color: white;
}

body.kontak-page .hours-icon {
    background: linear-gradient(135deg, #0B3D91, #041e45);
    color: white;
}

body.kontak-page .kontak-item:hover .kontak-icon {
    transform: scale(1.05);
    background: #FFD700;
    color: #0B3D91;
}

body.kontak-page .kontak-detail {
    flex: 1;
}

body.kontak-page .kontak-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 5px;
}

body.kontak-page .kontak-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.5;
}

body.kontak-page .social-media-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed #e2e8f0;
}

body.kontak-page .social-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.kontak-page .social-title::before {
    content: '\f09a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: #FFD700;
}

body.kontak-page .social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.kontak-page .social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: #f8fafc;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

body.kontak-page .social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

body.kontak-page .social-item.instagram::before {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

body.kontak-page .social-item.youtube::before {
    background: #ff0000;
}

body.kontak-page .social-item.tiktok::before {
    background: #000000;
}

body.kontak-page .social-item.facebook::before {
    background: #3b5998;
}

body.kontak-page .social-item:hover::before {
    opacity: 1;
}

body.kontak-page .social-item:hover {
    transform: translateX(5px);
    border-color: transparent;
}

body.kontak-page .social-item-icon {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

body.kontak-page .social-item.instagram .social-item-icon {
    color: #d62976;
}

body.kontak-page .social-item.youtube .social-item-icon {
    color: #ff0000;
}

body.kontak-page .social-item.tiktok .social-item-icon {
    color: #000000;
}

body.kontak-page .social-item.facebook .social-item-icon {
    color: #3b5998;
}

body.kontak-page .social-item:hover .social-item-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255,255,255,0.2);
    color: white;
}

body.kontak-page .social-item-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

body.kontak-page .social-item-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

body.kontak-page .social-item-username {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    transition: color 0.3s ease;
}

body.kontak-page .social-item:hover .social-item-name,
body.kontak-page .social-item:hover .social-item-username {
    color: white;
}

/* ==============================================
   FORM KRITIK & SARAN + TESTIMONI - LAYOUT 2 KOLOM
   ============================================= */

/* Container utama untuk kedua section */
.kontak-testimoni-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* ==============================================
   FORM KRITIK & SARAN (KOLOM KIRI)
   ============================================= */

.form-testimoni-section {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.form-testimoni-section .section-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-testimoni-section .section-tag {
    display: inline-block;
    background: #0B3D91;
    color: #FFD700;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-testimoni-section .section-title {
    font-size: 1.5rem;
    color: #0B3D91;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-testimoni-section .section-title::after {
    display: none;
}

.form-testimoni-section .section-subtitle {
    color: #64748b;
    font-size: 0.85rem;
}

.testimoni-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.testimoni-form-wrapper .form-group {
    margin-bottom: 15px;
}

.testimoni-form-wrapper .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.8rem;
}

.testimoni-form-wrapper .form-group label i {
    color: #FFD700;
    margin-right: 5px;
}

.testimoni-form-wrapper .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.testimoni-form-wrapper .form-control:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: white;
}

.testimoni-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.testimoni-form-wrapper select.form-control {
    cursor: pointer;
}

.testimoni-form-wrapper small {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 3px;
}

.testimoni-form-wrapper .form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.testimoni-form-wrapper .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #0B3D91, #1e4ca0);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimoni-form-wrapper .btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #f0b700);
    color: #0B3D91;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Alert */
.alert {
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    font-size: 1rem;
}

/* ==============================================
   TESTIMONI (KOLOM KANAN)
   ============================================= */

.testimoni-section {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    max-height: 550px;
    overflow-y: auto;
}

.testimoni-section .section-header {
    text-align: center;
    margin-bottom: 25px;
}

.testimoni-section .section-tag {
    display: inline-block;
    background: #0B3D91;
    color: #FFD700;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimoni-section .section-title {
    font-size: 1.5rem;
    color: #0B3D91;
    margin-bottom: 8px;
    font-weight: 700;
}

.testimoni-section .section-title::after {
    display: none;
}

.testimoni-section .section-subtitle {
    color: #64748b;
    font-size: 0.85rem;
}

.testimoni-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimoni-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s ease;
    border-left: 4px solid #FFD700;
}

.testimoni-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(11, 61, 145, 0.1);
}

.testimoni-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimoni-avatar i {
    font-size: 2rem;
    color: #0B3D91;
}

.testimoni-info h4 {
    margin: 0 0 3px 0;
    color: #0B3D91;
    font-size: 0.95rem;
}

.testimoni-rating {
    color: #FFD700;
    font-size: 0.7rem;
}

.testimoni-rating i {
    margin-right: 2px;
}

.testimoni-body {
    position: relative;
}

.testimoni-body i {
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.2);
    position: absolute;
    top: -5px;
    left: -5px;
}

.testimoni-body p {
    margin: 0;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    padding-left: 15px;
}

.testimoni-empty {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

.testimoni-empty i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Scrollbar untuk testimoni */
.testimoni-section::-webkit-scrollbar {
    width: 5px;
}

.testimoni-section::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.testimoni-section::-webkit-scrollbar-thumb {
    background: #0B3D91;
    border-radius: 10px;
}

/* ==============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 992px) {
    .kontak-testimoni-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimoni-section {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .form-testimoni-section {
        padding: 20px;
    }
    
    .testimoni-section {
        padding: 20px;
    }
    
    .testimoni-form-wrapper .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .testimoni-card {
        padding: 15px;
    }
    
    .testimoni-avatar i {
        font-size: 1.8rem;
    }
    
    .testimoni-info h4 {
        font-size: 0.9rem;
    }
    
    .testimoni-body p {
        font-size: 0.8rem;
        padding-left: 12px;
    }
    
    .testimoni-body i {
        font-size: 1.2rem;
    }
}

/* ==============================================
   12. RESPONSIVE DESIGN (SEMUA MEDIA QUERY DIKUMPULKAN)
============================================== */
@media (max-width: 992px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header .section-tag {
        padding: 5px 20px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .section-header .section-title::after {
        width: 55px;
        margin-top: 12px;
    }
    
    .section-header .section-subtitle {
        font-size: 0.95rem;
    }
    
    .slide-title { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .visi-misi-wrapper { grid-template-columns: 1fr; max-width: 700px; }
    .pembiasaan-grid { grid-template-columns: repeat(2, 1fr); }
    .sambutan-wrapper { flex-direction: column; }
    .sambutan-image { min-height: 350px; }
    .section-title { font-size: 2rem; }
    .berita-section,
    .sambutan-section,
    .stats-section,
    .prestasi-section,
    .pembiasaan-section,
    .eks-section,
    .agenda-section,
    .galeri-section,
    .sarana-section,
    .visi-misi-section {
        padding: 50px 0;
    }
    
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { font-size: 1rem; }
    .hero-countdown { min-width: 320px; padding: 25px 30px; }
    .countdown-item { min-width: 70px; padding: 12px 15px; }
    .countdown-value { font-size: 1.6rem; }
    .syarat-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .pendaftaran-content { padding: 40px 35px; flex-direction: column; text-align: center; }
    .pendaftaran-right { margin-top: 20px; }
    .section-title h2,
    .section-title-top h2 { font-size: 2rem; }
    
    body.kontak-page .kontak-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .agenda-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guru-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .sarana-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .prestasi-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .eks-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .berita-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
    
    .galeri-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .mengapa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-play {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .video-play::before {
        width: 60px;
        height: 60px;
    }
    
    .guru-foto {
        width: 140px;
        height: 140px;
    }
    
    .guru-nama {
        font-size: 1.3rem;
    }
    
    .sarana-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .sarana-nama {
        font-size: 1.2rem;
    }
    
    .eks-icon {
        width: 90px;
        height: 90px;
        font-size: 2.7rem;
    }
    
    .eks-nama {
        font-size: 1.5rem;
    }
    
    .card-judul {
        font-size: 1.8rem;
    }
    
    .sejarah-cta h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .sejarah-wrapper {
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .prestasi-stats .stat-card {
        min-width: 220px;
        padding: 20px 25px;
    }
    
    .prestasi-stats .stat-number {
        font-size: 2rem;
    }
    
    .agenda-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    .detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .detail-gambar {
        height: 300px;
    }
    
    .pengumuman-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .poster-header h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }
    
    .poster-header h2 {
        font-size: 1.4rem;
    }
    
    .poster-header h3 {
        font-size: 1.2rem;
    }
    
    .info-grid,
    .fasilitas-grid,
    .mengapa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .countdown-section {
        flex-direction: column;
        text-align: center;
        border-radius: 40px;
    }
    
    .daftar-section {
        flex-direction: column;
        text-align: center;
        border-radius: 50px;
    }
    
    .contact-section {
        flex-direction: column;
        text-align: center;
        border-radius: 50px;
    }
    
    .page-header {
        padding: 70px 20px 50px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header .section-tag {
        padding: 4px 16px;
        font-size: 0.75rem;
        margin-bottom: 14px;
    }
    
    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .section-header .section-title::after {
        width: 50px;
        height: 2px;
        margin-top: 10px;
    }
    
    .section-header .section-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .slide-title { font-size: 2rem; }
    .slide-subtitle { font-size: 1rem; }
    .slide-badge { font-size: 0.75rem; padding: 6px 20px; }
    .btn-large { padding: 12px 28px; font-size: 0.9rem; }
    .slider-nav button { width: 45px; height: 45px; font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; max-width: 350px; }
    .berita-grid,
    .prestasi-grid,
    .eks-grid,
    .sarana-grid { grid-template-columns: 1fr; max-width: 400px; margin: 30px auto; }
    .pembiasaan-grid { grid-template-columns: 1fr; max-width: 350px; }
    .galeri-grid { grid-template-columns: 1fr; max-width: 350px; }
    .agenda-item { flex-direction: column; align-items: flex-start; }
    .agenda-date { width: 70px; height: 70px; }
    .agenda-date .day { font-size: 1.5rem; }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.9rem; }
    .sambutan-content { padding: 30px 25px; }
    .sambutan-content h3 { font-size: 1.6rem; }
    .visi-card, .misi-card { padding: 30px 25px; }
    .visi-card h3, .misi-card h3 { font-size: 1.5rem; }
    .floating-buttons { bottom: 20px; right: 20px; }
    .float-wa, .float-ppdb { padding: 10px 20px; font-size: 0.85rem; }
    .berita-section,
    .sambutan-section,
    .stats-section,
    .prestasi-section,
    .pembiasaan-section,
    .eks-section,
    .agenda-section,
    .galeri-section,
    .sarana-section,
    .visi-misi-section {
        padding: 40px 0;
    }
    .section-header { margin-bottom: 30px; }
    
    .ppdb-page { padding: 0 0 40px; }
    .ppdb-hero { padding: 40px 0; margin-bottom: 30px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 0.95rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-info { justify-content: center; }
    .hero-countdown { width: 100%; min-width: auto; }
    .countdown-timer { gap: 12px; }
    .countdown-item { min-width: 60px; padding: 10px 12px; }
    .countdown-value { font-size: 1.3rem; }
    .section-title h2,
    .section-title-top h2 { font-size: 1.6rem; }
    .info-cards { gap: 20px; margin-bottom: 40px; }
    .syarat-grid { grid-template-columns: 1fr; gap: 20px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .syarat-card { padding: 25px 20px; }
    .fasilitas-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .fasilitas-card { padding: 25px 15px; }
    .fasilitas-icon { width: 65px; height: 65px; font-size: 1.8rem; }
    .mengapa-grid { gap: 20px; }
    .kontak-content { flex-direction: column; text-align: center; padding: 30px 25px; }
    .kontak-phone { font-size: 1.3rem; }
    .kontak-icon { width: 70px; height: 70px; font-size: 2.2rem; }
    .syarat-note { padding: 15px 20px; }
    .note-icon { width: 35px; height: 35px; }
    .note-icon i { font-size: 1rem; }
    
    body.kontak-page .kontak-container {
        padding-top: 70px;
    }
    
    body.kontak-page .page-header {
        padding: 50px 20px;
    }
    
    body.kontak-page .page-header h1 {
        font-size: 2rem;
    }
    
    body.kontak-page .page-header p {
        font-size: 1rem;
    }
    
    body.kontak-page .lokasi-section,
    body.kontak-page .kontak-info-section {
        padding: 25px;
    }
    
    body.kontak-page .section-title {
        font-size: 1.4rem;
    }
    
    body.kontak-page .maps-container {
        height: 280px;
    }
    
    body.kontak-page .kontak-item {
        padding: 12px;
        gap: 15px;
    }
    
    body.kontak-page .kontak-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    header {
        flex-direction: column;
        padding: 12px 5%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li ul {
        position: static;
        display: none;
        box-shadow: none;
        background: #f5f5f5;
        margin-top: 5px;
    }
    
    nav ul li:hover ul {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-map {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .copyright-wrapper {
        justify-content: center;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .page-header {
        padding: 60px 15px 45px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header h1::after {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }
    
    .page-breadcrumb {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .page-badge {
        padding: 5px 16px;
        font-size: 0.85rem;
    }
    
    .guru-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
        margin: 40px 0 60px;
    }
    
    .guru-card-inner {
        padding: 25px 20px 20px;
    }
    
    .guru-foto {
        width: 130px;
        height: 130px;
    }
    
    .guru-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .guru-nama {
        font-size: 1.2rem;
    }
    
    .guru-jabatan,
    .guru-mapel {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .sarana-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
        margin: 40px 0 60px;
    }
    
    .sarana-card {
        padding: 25px 15px;
    }
    
    .sarana-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .sarana-nama {
        font-size: 1.1rem;
    }
    
    .sarana-keterangan {
        font-size: 0.9rem;
    }
    
    .prestasi-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .prestasi-stats .stat-card {
        width: 100%;
        max-width: 300px;
    }
    
    .prestasi-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .prestasi-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .prestasi-gambar {
        height: 180px;
    }
    
    .prestasi-nama {
        font-size: 1.2rem;
    }
    
    .eks-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin: 40px 0 60px;
    }
    
    .eks-card {
        padding: 30px 20px 25px;
    }
    
    .eks-icon {
        width: 80px;
        height: 80px;
        font-size: 2.4rem;
    }
    
    .eks-nama {
        font-size: 1.4rem;
        padding-bottom: 12px;
    }
    
    .eks-pembina,
    .eks-jadwal {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .eks-deskripsi {
        padding: 15px 12px;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .berita-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-header-small h1 {
        font-size: 1.6rem;
    }
    
    .header-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .detail-content {
        padding: 25px;
    }
    
    .detail-gambar {
        margin: -25px -25px 20px -25px;
        height: 250px;
    }
    
    .detail-isi {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .galeri-filter {
        gap: 8px;
    }
    
    .galeri-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .lightbox-content img {
        max-width: 95%;
    }
    
    .lightbox-caption {
        bottom: -50px;
        font-size: 0.85rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin: 40px 0 60px;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .video-description {
        font-size: 0.85rem;
        max-height: 2.6em;
    }
    
    .video-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .video-modal-footer p {
        font-size: 0.9rem;
    }
    
    .pembiasaan-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mengapa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mengapa-item {
        padding: 20px 15px;
    }
    
    .mengapa-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 8px 12px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .section-header h4 {
        font-size: 1.3rem;
    }
    
    .contact-phone {
        font-size: 1.6rem;
    }
    
    .kontak-container {
        padding-top: calc(var(--header-height) + 10px);
    }
    
    .kontak-container .page-header {
        padding: 50px 20px;
    }
    
    .kontak-container .page-header h1 {
        font-size: 2rem;
    }
    
    .kontak-container .page-header p {
        font-size: 1rem;
    }
    
    .kontak-info-section,
    .lokasi-section {
        padding: 25px;
    }
    
    .kontak-item {
        padding: 12px;
        gap: 15px;
    }
    
    .kontak-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-item {
        padding: 12px 15px;
    }
    
    .social-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .poster-header {
        padding: 25px 15px 30px;
    }
    
    .poster-header h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .poster-header h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .poster-header h3 {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 5px 20px;
    }
    
    .content {
        padding: 30px 25px;
        border-radius: 40px;
    }
    
    .info-grid,
    .fasilitas-grid {
        grid-template-columns: 1fr;
    }
    
    .agenda-stats {
        grid-template-columns: 1fr;
    }
    
    .agenda-grid {
        grid-template-columns: 1fr;
    }
    
    .agenda-card {
        flex-direction: column;
    }
    
    .agenda-date-badge {
        width: 100%;
        flex-direction: row;
        gap: 5px;
        padding: 10px;
    }
    
    .agenda-date-badge .date-day,
    .agenda-date-badge .date-month {
        display: inline-block;
    }
    
    .detail-date {
        flex-direction: column;
        gap: 10px;
    }
    
    .date-separator {
        transform: rotate(90deg);
    }
    
    .detail-info-grid {
        grid-template-columns: 1fr;
    }
    
    .sejarah-wrapper {
        grid-template-columns: 1fr;
        margin: 30px 0 40px;
    }
    
    .sejarah-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .timeline-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
        padding: 0 20px 20px;
    }
    
    .timeline-item {
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 10px 10px 0 0;
        padding: 12px 15px;
    }
    
    .timeline-item:hover,
    .timeline-item.active {
        border-left-color: transparent;
        border-bottom-color: #FFD700;
    }
    
    .sejarah-card {
        padding: 25px;
    }
    
    .card-judul {
        font-size: 1.6rem;
    }
    
    .card-gambar {
        max-height: 250px;
    }
    
    .sejarah-cta {
        padding: 50px 15px;
    }
    
    .sejarah-cta h2 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 30px 15px 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .visi-misi-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px auto 40px;
        max-width: 600px;
    }
    
    .visi-card,
    .misi-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .section-footer {
        text-align: right !important;
    }
    
    .btn-more {
        padding: 6px 20px !important;
        font-size: 0.8rem !important;
    }
    
    .btn-more i {
        font-size: 0.75rem !important;
    }
    
    .berita-card .btn-baca,
    .berita-card .read-more,
    .berita-card .btn-more-link,
    .berita-card .btn-read-more,
    .berita-card a:last-child,
    .berita-footer a {
        padding: 6px 18px !important;
        font-size: 0.8rem !important;
    }
    
    .berita-card .btn-baca i,
    .berita-card .read-more i,
    .berita-card .btn-more-link i,
    .berita-card .btn-read-more i,
    .berita-card a:last-child i,
    .berita-footer a i {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header .section-tag {
        padding: 4px 14px;
        font-size: 0.7rem;
        margin-bottom: 12px;
    }
    
    .section-header .section-title {
        font-size: 1.5rem;
    }
    
    .section-header .section-title::after {
        width: 45px;
        margin-top: 8px;
    }
    
    .section-header .section-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .slide-title { font-size: 1.5rem; }
    .slide-badge { font-size: 0.7rem; padding: 4px 15px; margin-bottom: 15px; }
    .slide-buttons { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; justify-content: center; }
    .slider-nav button { width: 38px; height: 38px; font-size: 0.9rem; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .stat-number { font-size: 2rem; }
    .berita-gambar, .prestasi-gambar { height: 180px; }
    .sambutan-image { min-height: 250px; }
    .sambutan-quote-icon { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .agenda-date { width: 60px; height: 60px; }
    .agenda-date .day { font-size: 1.3rem; }
    .agenda-date .month { font-size: 0.7rem; }
    .agenda-content h3 { font-size: 1rem; }
    .agenda-meta { font-size: 0.75rem; gap: 10px; }
    .berita-section,
    .sambutan-section,
    .stats-section,
    .prestasi-section,
    .pembiasaan-section,
    .eks-section,
    .agenda-section,
    .galeri-section,
    .sarana-section,
    .visi-misi-section {
        padding: 30px 0;
    }
    .section-title { font-size: 1.4rem; }
    .section-title::after { width: 50px; bottom: -8px; }
    
    .hero-text h1 { font-size: 1.6rem; }
    .hero-badge { font-size: 0.7rem; padding: 5px 18px; margin-bottom: 15px; }
    .hero-year { font-size: 0.75rem; padding: 6px 15px; }
    .countdown-item { min-width: 50px; padding: 8px 10px; }
    .countdown-value { font-size: 1.1rem; }
    .countdown-item .countdown-label { font-size: 0.55rem; }
    .info-card { padding: 25px 20px; }
    .syarat-card { flex-direction: column; align-items: center; text-align: center; padding: 25px 20px; }
    .syarat-card-icon { width: 65px; height: 65px; min-width: 65px; margin-bottom: 15px; }
    .syarat-card-icon i { font-size: 1.8rem; }
    .syarat-badge { display: inline-block; }
    .syarat-options { justify-content: center; }
    .option-badge { width: 100%; justify-content: center; }
    .berkas-list li { justify-content: center; }
    .fasilitas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .fasilitas-card { padding: 20px 12px; }
    .fasilitas-icon { width: 55px; height: 55px; font-size: 1.5rem; }
    .fasilitas-card h4 { font-size: 0.85rem; }
    .mengapa-card { padding: 25px 20px; }
    .mengapa-icon { width: 65px; height: 65px; font-size: 1.8rem; }
    .mengapa-card h4 { font-size: 1rem; }
    .btn-daftar { padding: 12px 25px; font-size: 0.9rem; }
    .catatan-content { flex-direction: column; text-align: center; padding: 20px; }
    .syarat-note { flex-direction: column; align-items: center; text-align: center; }
    
    body.kontak-page .kontak-container {
        padding-top: 60px;
    }
    
    body.kontak-page .page-header {
        padding: 40px 15px;
    }
    
    body.kontak-page .page-header h1 {
        font-size: 1.8rem;
    }
    
    body.kontak-page .page-header p {
        font-size: 0.9rem;
    }
    
    body.kontak-page .kontak-wrapper {
        padding: 0 15px 40px;
        gap: 25px;
    }
    
    body.kontak-page .lokasi-section,
    body.kontak-page .kontak-info-section {
        padding: 20px;
    }
    
    body.kontak-page .section-title {
        font-size: 1.3rem;
    }
    
    body.kontak-page .maps-container {
        height: 250px;
    }
    
    body.kontak-page .kontak-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    body.kontak-page .kontak-icon {
        width: 50px;
        height: 50px;
    }
    
    body.kontak-page .social-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    body.kontak-page .social-item:hover {
        transform: translateY(-3px);
    }
    
    body.kontak-page .social-item-icon {
        width: 45px;
        height: 45px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .eks-grid,
    .prestasi-grid,
    .sarana-grid,
    .berita-grid,
    .galeri-grid,
    .guru-grid,
    .sarana-grid,
    .pembiasaan-grid,
    .mengapa-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .header-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .timeline-list {
        grid-template-columns: 1fr;
    }
    
    .sejarah-card {
        padding: 20px;
    }
    
    .card-judul {
        font-size: 1.4rem;
    }
    
    .card-tahun span {
        font-size: 0.9rem;
        padding: 5px 15px;
    }
    
    .card-isi {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .footer-info {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .sejarah-cta h2 {
        font-size: 1.5rem;
    }
    
    .sejarah-cta p {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .visi-misi-wrapper {
        max-width: 100%;
    }
    
    .visi-card,
    .misi-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
        padding-bottom: 8px;
    }
    
    .card-title::after {
        width: 50px;
        height: 2px;
    }
    
    .card-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .text-muted {
        padding: 30px 15px;
        font-size: 0.95rem;
    }
    
    .guru-card {
        margin-bottom: 10px;
    }
    
    .guru-foto {
        width: 150px;
        height: 150px;
    }
    
    .empty-state {
        padding: 50px 20px;
    }
    
    .empty-state i {
        font-size: 4rem;
    }
    
    .empty-state p {
        font-size: 1.1rem;
    }
    
    .sarana-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .prestasi-stats .stat-card {
        max-width: 100%;
    }
    
    .prestasi-content {
        padding: 20px;
    }
    
    .prestasi-deskripsi {
        font-size: 0.9rem;
    }
    
    .eks-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .eks-nama {
        font-size: 1.3rem;
    }
    
    .eks-pembina,
    .eks-jadwal {
        font-size: 0.9rem;
    }
    
    .eks-deskripsi {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .pengumuman-gambar {
        height: 180px;
    }
    
    .pengumuman-judul {
        font-size: 1.2rem;
    }
    
    .pengumuman-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-link {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .page-link.prev,
    .page-link.next {
        padding: 0 12px;
    }
    
    .detail-gambar {
        height: 200px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .galeri-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-play {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .video-play::before {
        width: 55px;
        height: 55px;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-header {
        padding: 15px 20px;
    }
    
    .video-modal-footer {
        padding: 15px 20px;
    }
    
    .pembiasaan-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mengapa-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 6px 10px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .qr-mini {
        width: 100px;
        height: 100px;
    }
    
    .btn-daftar {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
    
    .contact-phone {
        font-size: 1.3rem;
    }
    
    .note-section {
        flex-direction: column;
        text-align: center;
    }
    
    .kontak-container {
        padding-top: calc(var(--header-height) + 15px);
    }
    
    .kontak-container .page-header h1 {
        font-size: 1.8rem;
    }
    
    .kontak-container .page-header p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sub-title {
        font-size: 1.2rem;
    }
    
    .maps-container {
        height: 250px;
    }
    
    .kontak-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .kontak-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .social-item {
        gap: 12px;
    }
    
    .poster-header h1 {
        font-size: 2.2rem;
    }
    
    .poster-header h2 {
        font-size: 1rem;
    }
    
    .poster-header h3 {
        font-size: 0.9rem;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .page-header {
        padding: 50px 15px 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
        margin-top: 20px;
    }
    
    .page-breadcrumb {
        flex-wrap: wrap;
    }
    
    .page-badge {
        padding: 4px 14px;
        font-size: 0.8rem;
    }
}

/* Mobile Kecil (max-width: 375px) */
@media (max-width: 375px) {
    .guru-foto {
        width: 130px;
        height: 130px;
    }
    
    .guru-nama {
        font-size: 1.1rem;
    }
    
    .guru-detail {
        gap: 5px;
    }
    
    .guru-jabatan,
    .guru-mapel {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}

/* ==============================================
   13. ANIMATIONS GLOBAL
============================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to { transform: scaleX(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.3)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.5)); }
}

/* Animations untuk elemen tertentu */
.info-card,
.fasilitas-item,
.mengapa-item,
.guru-card,
.sarana-card,
.prestasi-card,
.eks-card,
.berita-card,
.galeri-item,
.pembiasaan-card,
.sejarah-card,
.kontak-item,
.social-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

.guru-card:nth-child(1) { animation-delay: 0.1s; }
.guru-card:nth-child(2) { animation-delay: 0.2s; }
.guru-card:nth-child(3) { animation-delay: 0.3s; }
.guru-card:nth-child(4) { animation-delay: 0.4s; }

.sarana-card:nth-child(1) { animation-delay: 0.1s; }
.sarana-card:nth-child(2) { animation-delay: 0.2s; }
.sarana-card:nth-child(3) { animation-delay: 0.3s; }
.sarana-card:nth-child(4) { animation-delay: 0.4s; }

.prestasi-card:nth-child(1) { animation-delay: 0.1s; }
.prestasi-card:nth-child(2) { animation-delay: 0.2s; }
.prestasi-card:nth-child(3) { animation-delay: 0.3s; }
.prestasi-card:nth-child(4) { animation-delay: 0.4s; }

.eks-card:nth-child(1) { animation-delay: 0.1s; }
.eks-card:nth-child(2) { animation-delay: 0.2s; }
.eks-card:nth-child(3) { animation-delay: 0.3s; }
.eks-card:nth-child(4) { animation-delay: 0.4s; }

.berita-card:nth-child(1) { animation-delay: 0.1s; }
.berita-card:nth-child(2) { animation-delay: 0.2s; }
.berita-card:nth-child(3) { animation-delay: 0.3s; }

.galeri-item:nth-child(1) { animation-delay: 0.1s; }
.galeri-item:nth-child(2) { animation-delay: 0.2s; }
.galeri-item:nth-child(3) { animation-delay: 0.3s; }
.galeri-item:nth-child(4) { animation-delay: 0.4s; }
.galeri-item:nth-child(5) { animation-delay: 0.5s; }
.galeri-item:nth-child(6) { animation-delay: 0.6s; }

.pembiasaan-card:nth-child(1) { animation-delay: 0.1s; }
.pembiasaan-card:nth-child(2) { animation-delay: 0.2s; }
.pembiasaan-card:nth-child(3) { animation-delay: 0.3s; }
.pembiasaan-card:nth-child(4) { animation-delay: 0.4s; }

.sejarah-card:nth-child(1) { animation-delay: 0.1s; }
.sejarah-card:nth-child(2) { animation-delay: 0.2s; }
.sejarah-card:nth-child(3) { animation-delay: 0.3s; }
.sejarah-card:nth-child(4) { animation-delay: 0.4s; }

.kontak-item:nth-child(1) { animation-delay: 0.1s; }
.kontak-item:nth-child(2) { animation-delay: 0.2s; }
.kontak-item:nth-child(3) { animation-delay: 0.3s; }
.kontak-item:nth-child(4) { animation-delay: 0.4s; }

.social-item:nth-child(1) { animation-delay: 0.5s; }
.social-item:nth-child(2) { animation-delay: 0.6s; }
.social-item:nth-child(3) { animation-delay: 0.7s; }
.social-item:nth-child(4) { animation-delay: 0.8s; }

body.kontak-page .lokasi-section,
body.kontak-page .kontak-info-section {
    animation: fadeInUp 0.5s ease backwards;
}

body.kontak-page .lokasi-section {
    animation-delay: 0.1s;
}

body.kontak-page .kontak-info-section {
    animation-delay: 0.2s;
}

/* ==============================================
   PAGE HEADER GLOBAL - UNTUK SEMUA HALAMAN
   Desain: Modern, Clean, Konsisten
   Warna: Biru Tua (#0B3D91) dengan aksen emas (#FFD700)
============================================== */

/* Container untuk semua halaman */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #0B3D91 0%, #082e6b 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin: 0 0 50px 0;
    overflow: hidden;
}

/* Background Pattern - Lebih subtle */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,215,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,215,0,0.08) 0%, transparent 50%);
    z-index: 0;
}

/* Garis dekoratif halus di atas */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFD700, #FFD700, transparent);
    z-index: 1;
}

/* Container dalam header */
.page-header .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb - Modern dan rapi */
.page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    flex-wrap: wrap;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 30px;
}

.page-breadcrumb a:hover {
    color: #FFD700;
    background: rgba(255,255,255,0.1);
}

.page-breadcrumb .separator {
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
}

.page-breadcrumb .current {
    color: #FFD700;
    font-weight: 500;
    background: rgba(255,215,0,0.15);
    padding: 4px 12px;
    border-radius: 30px;
}

/* Badge - Modern dengan efek blur */
.page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.page-badge i {
    color: #FFD700;
    font-size: 0.85rem;
}

/* Judul Utama */
.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 auto 15px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
    max-width: 800px;
    letter-spacing: -0.02em;
}

/* Garis bawah judul - Center sempurna */
.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
}

/* Subtitle/Deskripsi */
.page-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 25px auto 0;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

/* ==============================================
   RESPONSIVE PAGE HEADER
============================================== */
@media (max-width: 992px) {
    .page-header {
        padding: 50px 20px;
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 45px 15px;
        margin-bottom: 35px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1::after {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }
    
    .page-breadcrumb {
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .page-badge {
        padding: 5px 14px;
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .page-header p {
        font-size: 0.9rem;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 40px 15px;
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
        margin-top: 18px;
    }
    
    .page-breadcrumb {
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .page-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
}

/* ==============================================
   HEADER MOBILE - HAMBURGER MENU
============================================== */

/* Tombol Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* ==============================================
   HERO SLIDER MOBILE - PERBAIKAN
============================================== */

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
        margin-top: -70px;
    }
    
    .slide-title {
        font-size: 1.8rem !important;
    }
    
    .slide-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
    }
    
    .slide-badge {
        font-size: 0.7rem;
        padding: 5px 18px;
        margin-bottom: 15px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-large {
        width: 80%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots .dot.active {
        width: 25px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        margin-top: -60px;
    }
    
    .slide-title {
        font-size: 1.4rem !important;
    }
    
    .slide-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 15px;
    }
    
    .btn-large {
        width: 90%;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .slider-nav button {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ==============================================
   FOOTER MOBILE - PERBAIKAN
============================================== */

@media (max-width: 768px) {
    .modern-footer {
        margin-top: 40px;
    }
    
    .footer-wave {
        top: -25px;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-map {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .copyright-wrapper {
        justify-content: center;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* ==============================================
   KONTAK PAGE MOBILE - PERBAIKAN
============================================== */

@media (max-width: 768px) {
    body.kontak-page main {
        padding-top: 0 !important;
    }
    
    body.kontak-page .kontak-container {
        padding-top: 70px;
    }
    
    body.kontak-page .kontak-wrapper {
        padding: 0 15px 40px;
        gap: 25px;
    }
    
    body.kontak-page .lokasi-section,
    body.kontak-page .kontak-info-section {
        padding: 20px;
    }
    
    body.kontak-page .maps-container {
        height: 250px;
    }
    
    body.kontak-page .kontak-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    body.kontak-page .kontak-icon {
        width: 50px;
        height: 50px;
    }
    
    body.kontak-page .social-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    body.kontak-page .social-item:hover {
        transform: translateY(-3px);
    }
}
/* ==============================================
   GRID LAYOUT MOBILE - PERBAIKAN
============================================== */

@media (max-width: 768px) {
    .berita-grid,
    .prestasi-grid,
    .eks-grid,
    .sarana-grid,
    .guru-grid,
    .galeri-grid,
    .pembiasaan-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .visi-misi-wrapper {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .syarat-grid {
        grid-template-columns: 1fr !important;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .syarat-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
    
    .syarat-card-icon {
        margin-bottom: 15px;
    }
    
    .syarat-options {
        justify-content: center;
    }
    
    .option-badge {
        width: 100%;
        justify-content: center;
    }
    
    .berkas-list li {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .fasilitas-card {
        padding: 20px 12px;
    }
    
    .fasilitas-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .fasilitas-card h4 {
        font-size: 0.85rem;
    }
    
    .mengapa-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header .section-title {
        font-size: 1.6rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .berita-section,
    .sambutan-section,
    .stats-section,
    .prestasi-section,
    .pembiasaan-section,
    .eks-section,
    .agenda-section,
    .galeri-section,
    .sarana-section,
    .visi-misi-section {
        padding: 40px 0;
    }
}

/* ==============================================
   HEADER - TAMPILAN DESKTOP TETAP SEPERTI SEMULA
============================================== */
header {
    background: #0B3D91;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo di kiri (desktop) */
header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

header .logo img {
    height: 45px;
    width: auto;
}

header .logo-text h1 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

header .logo-text h1 span {
    color: #FFD700;
}

/* HAMBURGER HANYA UNTUK MOBILE - DEFAULT HIDDEN */
.hamburger {
    display: none;
}

/* ==============================================
   NAVIGASI DESKTOP - TETAP SEPERTI SEMULA
============================================== */
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-menu ul li a:hover {
    background: rgba(255,215,0,0.2);
    color: #FFD700;
}

.nav-menu ul li a i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* PPDB MENU - SAMA PERSIS SEPERTI MENU LAIN */
.nav-menu ul li a.btn-ppdb {
    background: transparent;
    color: white;
    font-weight: 500;
    border: none;
    padding: 10px 16px;
}

.nav-menu ul li a.btn-ppdb i {
    display: none;
}

.nav-menu ul li a.btn-ppdb:hover {
    background: rgba(255,215,0,0.2);
    color: #FFD700;
    transform: none;
}

/* Dropdown Desktop */
.nav-menu .dropdown .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown .dropdown-content li {
    width: 100%;
    border-bottom: none;
}

.nav-menu .dropdown .dropdown-content li a {
    color: #333;
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 0;
}

.nav-menu .dropdown .dropdown-content li a:hover {
    background: #f0f7ff;
    color: #0B3D91;
    padding-left: 28px;
}

/* ==============================================
   RESPONSIVE MOBILE - HAMBURGER DI KIRI
============================================== */
@media (max-width: 992px) {
    
    /* Header mobile */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #0B3D91;
        padding: 12px 5%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    /* HAMBURGER MENU - SEDERHANA & ELEGAN */
    .hamburger {
        display: flex !important;
        position: absolute !important;
        left: 5% !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        background: rgba(255,255,255,0.2);
    }
    
    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Animasi hamburger menjadi X - SEDERHANA */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Logo di tengah */
    header .logo {
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    /* Ubah navigasi menjadi menu slide dari KIRI */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #0B3D91;
        box-shadow: 5px 0 20px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Ubah list menjadi vertikal */
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Menu item */
    .nav-menu ul li a {
        color: white;
        padding: 14px 20px;
        font-size: 0.9rem;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
    }
    
    .nav-menu ul li a i {
        color: rgba(255,255,255,0.6);
        transition: transform 0.3s ease;
    }
    
    .nav-menu ul li a:hover {
        background: rgba(255,215,0,0.15);
        color: #FFD700;
    }
    
    /* PPDB MENU DI MOBILE */
    .nav-menu ul li a.btn-ppdb {
        background: transparent;
        color: white;
        margin: 0;
        border-radius: 0;
        justify-content: space-between;
        border: none;
        padding: 14px 20px;
    }
    
    .nav-menu ul li a.btn-ppdb i {
        display: inline-block;
        color: rgba(255,255,255,0.6);
    }
    
    .nav-menu ul li a.btn-ppdb:hover {
        background: rgba(255,215,0,0.15);
        color: #FFD700;
    }
    
    /* DROPDOWN DI MOBILE */
    .nav-menu .dropdown .dropdown-content {
        display: none !important;
        background: rgba(255,255,255,0.05);
        padding: 0;
        margin: 0;
        width: 100%;
        position: static !important;
    }
    
    .nav-menu .dropdown .dropdown-content.active {
        display: block !important;
    }
    
    .nav-menu .dropdown .dropdown-content li a {
        padding: 12px 20px 12px 35px;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.8);
        background: transparent;
    }
    
    .nav-menu .dropdown .dropdown-content li a:hover {
        background: rgba(255,215,0,0.15);
        color: #FFD700;
        padding-left: 40px;
    }
    
    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Ukuran lebih kecil */
@media (max-width: 576px) {
    header .logo img {
        height: 38px;
    }
    
    header .logo-text h1 {
        font-size: 0.85rem;
    }
    
    .hamburger {
        width: 38px !important;
        height: 38px !important;
        left: 4% !important;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        width: 260px;
    }
}

/* ==============================================
   FOOTER RESPONSIVE - MOBILE FIX
============================================== */

/* Untuk tablet dan mobile (max-width: 992px) */
@media (max-width: 992px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Footer bottom mobile */
    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .copyright-wrapper {
        justify-content: center;
    }
    
    /* Pastikan icon login admin tetap terlihat di mobile */
    .admin-login-icon {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 32px;
        height: 32px;
        background: rgba(255, 215, 0, 0.2);
        color: #FFD700;
        border: 1px solid rgba(255, 215, 0, 0.5);
    }
    
    .admin-login-icon i {
        font-size: 0.85rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
    }
    
    .footer-bottom .credit {
        font-size: 0.75rem;
    }
}

/* Untuk mobile kecil (max-width: 576px) */
@media (max-width: 576px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li a:hover {
        transform: translateX(0);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    /* Footer bottom mobile kecil */
    .copyright-wrapper {
        gap: 8px;
    }
    
    .copyright-text {
        font-size: 0.75rem;
    }
    
    .admin-login-icon {
        width: 28px;
        height: 28px;
    }
    
    .admin-login-icon i {
        font-size: 0.75rem;
    }
    
    .footer-bottom .credit {
        font-size: 0.7rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Untuk memastikan icon login tidak ter-override */
.admin-login-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hilangkan kemungkinan overflow yang menyembunyikan icon */
.footer-bottom {
    overflow: visible !important;
}

.footer-bottom .container {
    overflow: visible !important;
}

.copyright-wrapper {
    overflow: visible !important;
}

/* ==============================================
   MOBILE SIDEBAR - PUBLIC VERSION (FIXED)
   ============================================== */

/* HAPUS BAGIAN .hamburger DI SINI - JANGAN DUPLIKAT */

/* Langsung mulai dari Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1003;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

/* ... sisanya tetap sama ... */
/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1003;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

/* Header Sidebar */
.mobile-sidebar .sidebar-header {
    background: linear-gradient(135deg, #0B3D91, #082e6b);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #FFD700;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-sidebar .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-sidebar .sidebar-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 5px;
}

.mobile-sidebar .sidebar-logo-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.mobile-sidebar .sidebar-logo-text small {
    font-size: 0.65rem;
    color: #FFD700;
    font-weight: 500;
}

.mobile-sidebar .sidebar-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar .sidebar-close:hover {
    background: #FFD700;
    color: #0B3D91;
    transform: rotate(90deg);
}

/* Menu Sidebar */
.mobile-sidebar .sidebar-menu {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
}

.mobile-sidebar .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-sidebar .sidebar-nav > li {
    border-bottom: 1px solid rgba(11, 61, 145, 0.08);
}

.mobile-sidebar .sidebar-nav > li > a {
    display: block;
    padding: 14px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-sidebar .sidebar-nav > li > a:hover {
    background: rgba(11, 61, 145, 0.05);
    color: #0B3D91;
    padding-left: 25px;
}

/* Dropdown di Sidebar */
.mobile-sidebar .dropdown {
    position: relative;
}

.mobile-sidebar .dropdown-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-sidebar .dropdown-link {
    flex: 1;
    padding: 14px 20px;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-sidebar .dropdown-link:hover {
    background: rgba(11, 61, 145, 0.05);
    color: #0B3D91;
}

.mobile-sidebar .dropdown-toggle {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D91;
    transition: all 0.3s ease;
}

.mobile-sidebar .dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-sidebar .dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Submenu */
.mobile-sidebar .dropdown-content {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(11, 61, 145, 0.03);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-sidebar .dropdown.open .dropdown-content {
    max-height: 500px;
}

.mobile-sidebar .dropdown-content li {
    border-bottom: none;
}

.mobile-sidebar .dropdown-content li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-sidebar .dropdown-content li a::before {
    content: '→';
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FFD700;
}

.mobile-sidebar .dropdown-content li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #0B3D91;
    padding-left: 48px;
}

.mobile-sidebar .dropdown-content li a:hover::before {
    opacity: 1;
    left: 28px;
}

/* Footer Sidebar - HANYA HUBUNGI KAMI */
.mobile-sidebar .sidebar-footer {
    background: #f1f5f9;
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.mobile-sidebar .sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.mobile-sidebar .sidebar-contact .sidebar-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    border: none;
}

.mobile-sidebar .sidebar-contact .sidebar-wa i {
    font-size: 1.2rem;
}

.mobile-sidebar .sidebar-contact .sidebar-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.mobile-sidebar .sidebar-copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.mobile-sidebar .sidebar-copyright small {
    color: #64748b;
    font-size: 0.7rem;
}

/* Animasi */
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-sidebar.active {
    animation: slideInLeft 0.3s ease forwards;
}

.mobile-overlay.active {
    animation: fadeIn 0.3s ease forwards;
}

/* Scrollbar */
.mobile-sidebar::-webkit-scrollbar {
    width: 4px;
}

.mobile-sidebar::-webkit-scrollbar-track {
    background: #e2e8f0;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: #0B3D91;
    border-radius: 4px;
}

/* Prevent body scroll saat sidebar open */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ==============================================
   RESPONSIVE MOBILE
   ============================================== */
@media (max-width: 992px) {
    /* Tampilkan hamburger */
    .hamburger {
        display: flex !important;
    }
    
    /* Sembunyikan nav menu asli */
    header .nav-menu {
        display: none !important;
    }
    
    /* Logo di tengah */
    header {
        justify-content: center !important;
    }
    
    header .logo {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .mobile-sidebar {
        width: 85%;
        max-width: 280px;
    }
    
    .mobile-sidebar .sidebar-header {
        padding: 15px;
    }
    
    .mobile-sidebar .sidebar-logo img {
        width: 38px;
        height: 38px;
    }
    
    .mobile-sidebar .sidebar-nav > li > a,
    .mobile-sidebar .dropdown-link {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .hamburger {
        left: 4% !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .hamburger span {
        width: 20px !important;
    }
}

/* Matikan style yang tidak diperlukan */
.admin-sidebar,
#adminSidebar,
.sidebar-overlay,
.mobile-menu-btn {
    display: none !important;
}

/* ==============================================
   PERBAIKAN UKURAN LOGO HEADER (SAMA DENGAN FOOTER)
   ============================================= */

/* --- STYLE UNTUK LOGO DI HEADER --- */
header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* MEMBUAT KONTAINER LOGO DI HEADER SAMA PERSIS DENGAN FOOTER */
header .logo .logo-img {
    width: 50px;      /* Sama dengan .footer-logo (50px) */
    height: 50px;     /* Sama dengan .footer-logo (50px) */
    background: white;
    border-radius: 10px; /* Sama dengan border-radius di footer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;     /* Sama dengan padding di footer */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Sama dengan shadow di footer */
    transition: all 0.3s ease;
}

/* Efek hover agar lebih hidup (opsional) */
header .logo .logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Mengatur gambar di dalam kontainer agar pas */
header .logo .logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 'contain' lebih aman agar logo tidak terpotong */
    display: block;
}

/* Teks logo tetap seperti semula */
header .logo .logo-text h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

header .logo .logo-text h1 span {
    color: #FFD700;
}

/* --- PENYESUAIAN UNTUK MODAL / RESPONSIVE (OPSIONAL) --- */
@media (max-width: 768px) {
    header .logo .logo-img {
        width: 42px;
        height: 42px;
    }
    
    header .logo .logo-text h1 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    header .logo .logo-img {
        width: 38px;
        height: 38px;
    }
    
    header .logo .logo-text h1 {
        font-size: 0.85rem;
    }
}

