* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #eaeaea;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 420px;
  background: white;
  min-height: 100vh;
}

/* LOADING */
/* ================= LOADING FB STYLE (FIX TOTAL) ================= */
.loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;

  display: flex;
  justify-content: center;
}

/* isi tetap dalam frame HP */
.loading-box {
  width: 100%;
  max-width: 420px;
  padding: 15px;
}

/* skeleton dasar */
.sk {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 400% 100%;
  animation: shimmer 1.3s infinite;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* animasi */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* ukuran sesuai layout */
.sk-header {
  height: 45px;
}

.sk-school {
  height: 60px;
}

.sk-slider {
  height: 180px;
  border-radius: 15px;
}

.sk-running {
  height: 45px;
}

.sk-menu {
  height: 120px;
}

.sk-card {
  height: 80px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.text-blue { color: #1e5bb8; }
.text-red { color: #e53935; }

.login {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 12px;
  background: white;
  cursor: pointer;
}

/* SEKOLAH */
.school {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
}

.logo {
  width: 55px;
}

.school-text h1 {
  font-size: 18px;
  margin-bottom: 2px;
}

.school-text p {
  font-size: 13px;
  color: #555;
}

/* SLIDER */
.slider img {
  width: 100%;
  border-radius: 15px;
  padding: 0 10px;
}

/* RUNNING TEXT */
.running-text {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 10px 15px;
  padding: 10px 12px;

  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;

  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

  overflow: hidden;
}

.running-text i {
  font-size: 16px;
  background: rgba(255,255,255,0.2);
  padding: 8px;
  border-radius: 50%;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
  font-size: 12px;
  color: white;
}
.running-text:hover {
  opacity: 0.95;
  transition: 0.3s;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* MENU */
/* MENU */
.menu {
  padding: 15px;
}

.menu h3{
  margin-bottom: 15px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ITEM MENU TANPA LATAR */
.menu-item {
  text-align: center;
  text-decoration: none;
  color: #333;

  padding: 10px 5px;
  border-radius: 16px;

  transition: .3s ease;
}

/* ICON */
.menu-item i {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
  margin-bottom: 8px;

  font-size: 22px;

  border-radius: 18px;

  background: rgba(30, 91, 184, 0.08);
  color: #1e5bb8;
}

/* TEXT */
.menu-item p {
  font-size: 11px;
  font-weight: 500;
}

/* HOVER */
.menu-item:hover {
  transform: translateY(-4px);
}

/* WARNA ICON */
.blue i {
  color: #1e5bb8;
  background: rgba(30,91,184,.10);
}

.yellow i {
  color: #f4b400;
  background: rgba(244,180,0,.12);
}

.red i {
  color: #e53935;
  background: rgba(229,57,53,.10);
}

/* HOVER */
.menu-item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* BERITA */
.news {
  padding: 15px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.news-header a {
  text-decoration: none;
  font-size: 12px;
  color: #1e5bb8;
}

.card {
  display: flex;
  gap: 10px;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card img {
  width: 80px;
  border-radius: 10px;
}

.card-body h4 {
  font-size: 14px;
}

.card-body p {
  font-size: 12px;
  color: #555;
}

.card-body small {
  font-size: 11px;
  color: #888;
}

/* BADGE */
.badge {
  background: #f4b400;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 5px;
}

.red-badge {
  background: #e53935;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  color: #666;
}

.sosmed {
  margin-top: 8px;
}

.sosmed a {
  margin: 0 8px;
  font-size: 18px;
  color: #1e5bb8;
  transition: 0.3s;
}

.sosmed a:hover {
  color: #e53935;
}

/* ================= FLOATING LAYANAN ================= */

.fab-wrapper{
    position: fixed;
    left: 50%;
    bottom: 70px;

    z-index: 999;

    /* posisi kanan frame HP */
    transform: translateX(145px);
}

/* BUTTON */
.fab-layanan{
    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
}

/* ICON BULAT */
.fab-layanan i{
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #ff9800,
        #f57c00
    );

    color: #fff;
    font-size: 23px;

    box-shadow: 0 8px 20px rgba(0,0,0,.18);

    animation: pulse 2s infinite;
}

/* TEXT DI BAWAH */
.fab-layanan span{
    margin-top: 6px;

    font-size: 12px;
    font-weight: 600;
    color: #555;

    background: rgba(255,255,255,.95);
    padding: 4px 10px;

    border-radius: 999px;

    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* TEXT DI BAWAH ICON */
.fab-text{
    margin-top: 6px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: rgba(255,255,255,.95);
    padding: 5px 10px;

    border-radius: 16px;

    box-shadow: 0 2px 8px rgba(0,0,0,.08);

    line-height: 1.2;
}

.fab-text{
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

.fab-text small{
    font-size: 10px;
    font-weight: 500;
    color: #777;
}

/* HOVER */
.fab-layanan:hover i{
    transform: translateY(-2px);
}

/* KLIK */
.fab-layanan:active i{
    transform: scale(.95);
}

/* PULSE */
@keyframes pulse{
    0%{
        box-shadow:
        0 0 0 0 rgba(255,152,0,.5);
    }

    70%{
        box-shadow:
        0 0 0 12px rgba(255,152,0,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(255,152,0,0);
    }
}

/* menu profil */
/* ================= HEADER APP ================= */

.page-header{
    position: sticky;
    top: 0;
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 16px;

    background: #fff;
    border-bottom: 1px solid #eee;

    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.page-header h2{
  font-size: 18px;
  font-weight: 600;
}

/* TOMBOL KEMBALI */
.back-btn{
  width: 42px;
  height: 42px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #333;

  background: #f5f5f5;
  transition: .3s;
}

.back-btn:hover{
  background: #ececec;
}

/* ================= MENU HP ================= */

.menu-page{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.smart-menu{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;

  padding: 14px;
  border-radius: 22px;

  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.05);

  transition: .25s ease;
}

.smart-menu:hover{
  transform: translateY(-3px);
}

.smart-menu:active{
  transform: scale(.98);
}

/* ICON */
.smart-left{
  width: 56px;
  height: 56px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.smart-left i{
  font-size: 22px;
}

/* BODY */
.smart-body{
  flex: 1;
  margin-left: 14px;
}

.smart-body h4{
  font-size: 15px;
  margin-bottom: 3px;
}

.smart-body p{
  font-size: 12px;
  color: #777;
}

/* PANAH */
.arrow{
  color: #bbb;
  font-size: 14px;
}

/* WARNA */
.blue{
  background: rgba(30,91,184,.12);
  color: #1e5bb8;
}

.yellow{
  background: rgba(244,180,0,.12);
  color: #f4b400;
}

.red{
  background: rgba(229,57,53,.12);
  color: #e53935;
}

/* ================= HALAMAN SAMBUTAN ================= */

.sambutan-page{
  padding: 16px;
}

/* FOTO KEPSEK */
.kepsek-box{
  text-align: center;
  margin-bottom: 20px;
}

.kepsek-img{
  width: 100%;
  max-width: 320px; /* lebih lebar */
  height: 340px;

  object-fit: cover;

  border-radius: 18px;
  border: 4px solid #fff;

  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.kepsek-box h3{
  margin-top: 12px;
  font-size: 18px;
}

.kepsek-box p{
  font-size: 14px;
  color: #666;
}

/* CARD */
.sambutan-card{
  background: #fff;
  padding: 22px;
  border-radius: 24px;

  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.sambutan-card h2{
  font-size: 20px;
  margin-bottom: 18px;
  color: #1e5bb8;
}

.sambutan-card p{
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
  margin-bottom: 14px;
}

/* TTD */
.ttd-kepsek{
  margin-top: 30px;
  text-align: right;
}

.ttd-kepsek span{
  display: block;
  font-size: 14px;
  color: #777;
}

.ttd-kepsek h4{
  font-size: 18px;
  margin-top: 8px;
  color: #111;
}

/* ================= VISI MISI ================= */

.visi-page{
  padding: 16px;
}

.visi-card{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CARD */
.visi-box,
.misi-box{
  background: #fff;
  border-radius: 24px;
  padding: 22px;

  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

/* TITLE */
.title-section{
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;
}

.title-section i{
  width: 50px;
  height: 50px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  background: rgba(30,91,184,.10);
  color: #1e5bb8;
}

.title-section h3{
  font-size: 20px;
  font-weight: 600;
}

/* CONTENT */
.content-box p{
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}

.content-box ol{
  padding-left: 18px;
}

.content-box li{
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 10px;
}

/* ================= STRUKTUR ================= */

.struktur-page{
  padding: 16px;
}

/* CARD */
.struktur-card{
  background: #fff;
  border-radius: 26px;
  padding: 20px;

  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

/* TITLE */
.struktur-title{
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;
}

.struktur-title i{
  width: 52px;
  height: 52px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  background: rgba(30,91,184,.10);
  color: #1e5bb8;
}

.struktur-title h3{
  font-size: 18px;
  font-weight: 600;
}

/* WRAP IMAGE */
.struktur-img-wrap{
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 20px;
}

/* IMAGE */
.struktur-img{
  width: 100%;
  display: block;
  border-radius: 22px;

  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* DESKRIPSI */
.struktur-desc p{
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
  margin-bottom: 14px;
}

/* ================= BERITA ================= */

.berita-page{
    padding: 16px;
}

.berita-card{
    display: block;
    text-decoration: none;
    color: #222;

    background: #fff;
    border-radius: 24px;

    overflow: hidden;
    margin-bottom: 20px;

    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: .3s;
}

.berita-card:hover{
    transform: translateY(-3px);
}

.berita-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.berita-body{
    padding: 18px;
}

/* KATEGORI */
.kategori{
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 14px;
    font-weight: 500;
}

.berita{
    background: rgba(30,91,184,.1);
    color: #1e5bb8;
}

.pengumuman{
    background: rgba(229,57,53,.1);
    color: #e53935;
}

/* META */
.meta-berita{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.meta-berita span{
    font-size: 12px;
    color: #777;
}

.meta-berita i{
    margin-right: 5px;
}

/* JUDUL */
.berita-body h3{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ISI */
.berita-body p{
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* ================= DETAIL BERITA ================= */

.detail-page{
    padding-bottom: 30px;
}

.detail-img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.detail-body{
    padding: 20px;
}

.detail-body h1{
    font-size: 24px;
    line-height: 1.5;
    margin: 14px 0;
}

.detail-body p{
    font-size: 14px;
    line-height: 2;
    color: #444;
    text-align: justify;
    margin-bottom: 14px;
}

/* ================= BACA JUGA ================= */

.baca-juga{
    display: block;
    position: relative;

    text-decoration: none;
    color: #222;

    background: rgba(30,91,184,.06);
    border-left: 5px solid #1e5bb8;

    padding: 16px 50px 16px 18px;
    margin: 24px 0;

    border-radius: 18px;

    transition: .3s ease;
}

.baca-juga small{
    display: block;
    color: #1e5bb8;
    font-size: 12px;
    margin-bottom: 6px;
    font-weight: 600;
}

.baca-juga h4{
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.baca-juga i{
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #1e5bb8;
    font-size: 16px;
}

.baca-juga:hover{
    transform: translateY(-2px);
    background: rgba(30,91,184,.09);
}

/* ================= DATA GURU MODERN ================= */

.guru-page{
    padding: 16px;
}

.guru-card{
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;

    background: #fff;
    border-radius: 22px;

    padding: 14px;
    margin-bottom: 16px;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);

    transition: .25s ease;
}

.guru-img{
    width: 82px;
    height: 96px;

    object-fit: cover;
    flex-shrink: 0;

    border-radius: 18px;
}

.guru-body{
    flex: 1;
    min-width: 0;
}

.guru-body h3{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;

    word-break: break-word;
}

.jabatan{
    display: inline-block;

    padding: 6px 12px;
    margin-bottom: 10px;

    border-radius: 999px;

    background: rgba(30,91,184,.10);
    color: #1e5bb8;

    font-size: 12px;
    font-weight: 500;
}

.guru-mapel{
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    color: #666;
}

.guru-mapel i{
    color: #f4b400;
    font-size: 14px;
}

/* desktop tetap sama seperti hp */
@media (min-width:768px){

    .guru-card:hover,
    .smart-menu:hover,
    .berita-card:hover,
    .baca-juga:hover,
    .menu-item:hover{
        transform: none;
    }

}

/* ================= DATA SISWA ================= */

.siswa-page{
    padding: 16px;
}

/* CARD */
.siswa-card{
    background: #fff;
    border-radius: 24px;

    padding: 18px;
    margin-bottom: 16px;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}

/* HEADER */
.siswa-header{
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
    margin-bottom: 18px;
}

.siswa-header h3{
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* STATUS */
.status{
    padding: 6px 12px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;
}

.aktif{
    background: rgba(52,199,89,.12);
    color: #16a34a;
}

.alumni{
    background: rgba(229,57,53,.12);
    color: #e53935;
}

/* GRID INFO */
.siswa-info{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.info-item{
    background: #f8f9fb;
    padding: 14px;
    border-radius: 18px;
}

.info-item small{
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.info-item p{
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

/* ================= SEARCH & FILTER SISWA ================= */

.filter-box{
    margin-bottom: 18px;
}

/* SEARCH */
.search-box{
    position: relative;
    margin-bottom: 14px;
}

.search-box i{
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-box input{
    width: 100%;
    height: 54px;

    border: none;
    outline: none;

    border-radius: 20px;
    background: #fff;

    padding: 0 18px 0 50px;

    font-size: 14px;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}

/* FILTER */
.filter-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.filter-grid select{
    width: 100%;
    height: 50px;

    border: none;
    outline: none;

    border-radius: 18px;
    background: #fff;

    padding: 0 14px;

    font-size: 13px;
    color: #444;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}

/* ================= EKSKUL ================= */

.ekskul-page{
    padding: 16px;
}

/* CARD */
.ekskul-card{
    background: #fff;
    border-radius: 26px;

    overflow: hidden;
    margin-bottom: 20px;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);

    transition: .3s ease;
}

.ekskul-card:hover{
    transform: translateY(-3px);
}

/* IMAGE */
.ekskul-img{
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/* BODY */
.ekskul-body{
    padding: 18px;
}

/* BADGE */
.badge-ekskul{
    display: inline-block;

    padding: 7px 14px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 12px;
}

/* WARNA */
.olahraga{
    background: rgba(52,199,89,.12);
    color: #16a34a;
}

.akademik{
    background: rgba(30,91,184,.12);
    color: #1e5bb8;
}

.seni{
    background: rgba(244,180,0,.12);
    color: #f4b400;
}

/* TITLE */
.ekskul-body h3{
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

/* DESC */
.ekskul-body p{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* desktop tetap seperti hp */
@media (min-width:768px){
    .ekskul-card:hover{
        transform: none;
    }
}
/* TOP INFO */
.ekskul-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;
}

/* BADGE */
.badge-ekskul{
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;

    flex-shrink: 0;
}

/* TANGGAL */
.ekskul-date{
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
    color: #777;
}

.ekskul-date i{
    color: #1e5bb8;
    font-size: 13px;
}

/* ================= GALERI ================= */

.galeri-page{
    padding: 16px;
}

/* CARD */
.galeri-card{
    display: block;
    text-decoration: none;
    color: #222;

    background: #fff;
    border-radius: 28px;

    overflow: hidden;
    margin-bottom: 20px;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);

    transition: .25s ease;
}

/* IMAGE */
.galeri-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* BODY */
.galeri-body{
    padding: 18px;
}

/* TOP */
.galeri-top{
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
    margin-bottom: 14px;
}

/* BADGE */
.badge-galeri{
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;
}

/* WARNA */
.kegiatan{
    background: rgba(30,91,184,.12);
    color: #1e5bb8;
}

.olahraga{
    background: rgba(52,199,89,.12);
    color: #16a34a;
}

.seni{
    background: rgba(244,180,0,.12);
    color: #f4b400;
}

/* DATE */
.galeri-date{
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
    color: #777;
}

.galeri-date i{
    color: #1e5bb8;
}

/* TITLE */
.galeri-body h3{
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* DESC */
.galeri-body p{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* desktop tetap hp */
@media (min-width:768px){
    .galeri-card:hover{
        transform: none;
    }
}

/* ================= INFO PENDAFTARAN MODERN ================= */

.spmb-page{
    padding: 16px;
}

/* INFO */
.spmb-info{
    margin-bottom: 18px;
}

.spmb-info h3{
    font-size: 22px;
    margin-bottom: 6px;
    color: #222;
}

.spmb-info p{
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* CARD */
.panitia-card{
    background: #fff;
    border-radius: 28px;

    padding: 18px;
    margin-bottom: 18px;

    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    border: 1px solid #f1f1f1;
}

/* HEADER CARD */
.panitia-header{
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;
}

/* ICON */
.panitia-icon{
    width: 68px;
    height: 68px;
    flex-shrink: 0;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(30,91,184,.10);
    color: #1e5bb8;

    font-size: 28px;
}

/* BODY */
.panitia-body{
    flex: 1;
}

.badge-panitia{
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 12px;
    margin-bottom: 8px;

    border-radius: 999px;

    background: rgba(30,91,184,.10);
    color: #1e5bb8;

    font-size: 11px;
    font-weight: 600;
}

.panitia-body h3{
    font-size: 19px;
    margin-bottom: 4px;
    color: #222;
}

.panitia-body p{
    font-size: 13px;
    color: #777;
}

/* CONTACT BOX */
.panitia-contact{
    background: #f8f9fb;
    border-radius: 22px;

    padding: 14px 16px;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    gap: 14px;
}

.panitia-contact i{
    width: 50px;
    height: 50px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(37,211,102,.12);
    color: #25D366;

    font-size: 22px;
}

.panitia-contact small{
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 3px;
}

.panitia-contact h4{
    font-size: 16px;
    color: #222;
}

/* BUTTON */
.btn-wa{
    width: 100%;
    height: 54px;

    border-radius: 20px;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background: linear-gradient(
        135deg,
        #25D366,
        #16a34a
    );

    color: #fff;
    font-size: 14px;
    font-weight: 600;

    transition: .25s;
}

.btn-wa:active{
    transform: scale(.98);
}

.btn-wa i{
    font-size: 18px;
}

/* ================= SYARAT PENDAFTARAN ================= */

.syarat-page{
    padding: 16px;
}

/* HERO */
.syarat-hero{
    position: relative;
    overflow: hidden;

    border-radius: 28px;
    margin-bottom: 20px;

    height: 240px;
}

.syarat-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay */
.hero-overlay{
    position: absolute;
    inset: 0;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: end;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.72),
        rgba(0,0,0,.08)
    );

    color: #fff;
}

.badge-syarat{
    width: fit-content;

    padding: 7px 14px;
    margin-bottom: 10px;

    border-radius: 999px;

    background: rgba(255,255,255,.18);
    backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 600;
}

.hero-overlay h3{
    font-size: 26px;
    margin-bottom: 8px;
}

.hero-overlay p{
    font-size: 13px;
    line-height: 1.7;
    opacity: .95;
}

/* CARD */
.syarat-card{
    background: #fff;
    border-radius: 28px;

    padding: 22px;

    box-shadow: 0 5px 16px rgba(0,0,0,.06);
}

.syarat-card h3{
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    margin-bottom: 18px;
    color: #222;
}

.syarat-card h3 i{
    color: #1e5bb8;
}

/* LIST */
.syarat-list{
    padding-left: 22px;
}

.syarat-list li{
    font-size: 14px;
    line-height: 1.9;
    color: #444;

    margin-bottom: 14px;
    padding-bottom: 14px;

    border-bottom: 1px solid #eee;
}

.syarat-list li:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

/* ================= DOWNLOAD FORMULIR ================= */

.download-page{
    padding: 16px;
}

/* HERO */
.download-hero{
    background: linear-gradient(
        135deg,
        #1e5bb8,
        #2f7cf4
    );

    border-radius: 30px;

    padding: 28px 22px;
    margin-bottom: 20px;

    text-align: center;
    color: #fff;
}

.download-icon{
    width: 90px;
    height: 90px;

    margin: auto;
    margin-bottom: 18px;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.18);

    font-size: 40px;
}

.download-hero h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.download-hero p{
    font-size: 14px;
    line-height: 1.8;
    opacity: .95;
}

/* CARD */
.download-card{
    background: #fff;
    border-radius: 28px;

    padding: 18px;

    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

/* FILE INFO */
.download-info{
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;

    padding: 14px;
    border-radius: 22px;

    background: #f8f9fb;
}

.file-icon{
    width: 62px;
    height: 62px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(229,57,53,.12);
    color: #e53935;

    font-size: 28px;
}

.file-body{
    flex: 1;
}

.file-body h4{
    font-size: 16px;
    margin-bottom: 4px;
}

.file-body p{
    font-size: 12px;
    color: #777;
}

/* BUTTON */
.btn-download{
    width: 100%;
    height: 56px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-decoration: none;

    background: linear-gradient(
        135deg,
        #ff9800,
        #f57c00
    );

    color: white;
    font-size: 15px;
    font-weight: 600;

    transition: .25s ease;
}

.btn-download:active{
    transform: scale(.98);
}

.btn-download i{
    font-size: 18px;
}

/* ================= KONTAK ================= */

.kontak-page{
    padding: 16px;
}

/* HERO */
.kontak-hero{
    text-align: center;
    margin-bottom: 20px;
}

.kontak-logo{
    width: 90px;
    height: 90px;

    margin: auto auto 14px;

    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(30,91,184,.10);
    color: #1e5bb8;

    font-size: 38px;
}

.kontak-hero h3{
    font-size: 24px;
    margin-bottom: 5px;
}

.kontak-hero p{
    color: #777;
}

/* CARD */
.kontak-card{
    background: #fff;
    border-radius: 28px;
    padding: 18px;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}

.kontak-item{
    display: flex;
    gap: 14px;
    align-items: flex-start;

    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.kontak-item:last-child{
    border-bottom: none;
}

.kontak-icon{
    width: 54px;
    height: 54px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.kontak-icon i{
    font-size: 20px;
}

.blue-bg{
    background: rgba(30,91,184,.12);
    color: #1e5bb8;
}

.yellow-bg{
    background: rgba(255,193,7,.15);
    color: #ff9800;
}

.green-bg{
    background: rgba(37,211,102,.15);
    color: #25D366;
}

.kontak-item small{
    color: #888;
    font-size: 12px;
}

.kontak-item h4{
    font-size: 15px;
    margin-top: 4px;
    line-height: 1.6;
}

/* BUTTON */
.kontak-action{
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.btn-kontak{
    flex: 1;
    height: 54px;

    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: white;
    font-weight: 600;
}

.wa{
    background: #25D366;
}

.maps{
    background: #1e5bb8;
}

/* ================= LAYANAN BELAJAR ================= */
.layanan-page{
    height: calc(100vh - 72px);
}

.layanan-frame{
    width: 100%;
    height: 100%;

    border: none;
    background: #fff;
}