
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif; /* Font default untuk teks biasa */
  font-weight: 400;

}


/* ================= FONT FIXXXXXXXX ================= */
/* Menargetkan semua judul section utama */
.section-title, 
.hotline-title, 
.calendar-header h3,
.visi-section h2,
.misi-section h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Ukuran responsif */
  color: #193deb; /* Sesuaikan dengan warna identitas BEM */
  letter-spacing: -0.5px;
  text-transform: none; /* Biar tidak otomatis kapital semua */
}

/* Menargetkan sub-judul dan deskripsi di bawah judul utama */
.section-subtitle,
.hotline-desc,
.company-desc p,
.misi-card p {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 400; /* Regular untuk deskripsi agar tidak berat */
  line-height: 1.8;
  color: #000000;
}

/* Khusus untuk teks di dalam Visi/Misi yang butuh sedikit penekanan */
.visi-box p {
  font-weight: 500;
  font-size: 1.2rem;
}

.misi-card p {
  font-weight: 600;
  font-size: 1rem;
}

/* ================= NAVBAR ================= */
header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.08);
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== KIRI ===== */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

#navbarLogo {
  width: 48px;
  height: auto;
}

/* ===== TEKS ===== */
.nav-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-title {
  font-size: 18px;
  font-weight: 800;
  color: #193deb;
}

.nav-sub {
  font-size: 13px;
  color: #fafafa;
}



/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 16.5px;
  padding: 10px 8px;
  transition: all 0.25s ease;
}

.nav-menu a:hover {
  color: var(--green-dark);
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  font-size: 16px;
}

/* ================= NAVBAR & DROPDOWN MURNI ================= */

/* --- RESET & DEFAULT (DESKTOP) --- */
.menu-toggle {
    display: none; /* Sembunyikan default (Desktop) */
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* Kotak Dropdown Desktop */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex !important;      /* Paksa Flex */
    flex-direction: column !important; /* Paksa 1 KOLOM */
    width: 220px !important;       /* Kunci Lebar Desktop */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-top: 3px solid #193deb;
    z-index: 1000;
}

/* Hover Desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    text-align: left; /* Rata kiri di desktop */
    color: #0f172a !important;
    font-size: 0.9rem;
    border-bottom: 1px solid #fafafa;
}

/* --- KHUSUS TAMPILAN MOBILE (768px ke bawah) --- */
@media (max-width: 768px) {
    /* Munculkan Hamburger */
    .menu-toggle {
        display: flex; 
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: #193deb;
        border-radius: 2px;
    }

    /* Menu Utama Mobile */
    .nav-menu {
        display: none; /* Sembunyi sebelum diklik bar */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 10px 0;
        text-align: center; /* SEMUA DI TENGAH */
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    /* Dropdown Mobile */
    .dropdown-menu {
        position: static; /* Mendorong menu lain ke bawah */
        display: none !important; /* Sembunyi sebelum diklik */
        width: 100% !important;
        background: #fafafa;
        opacity: 1;       /* Langsung muncul tanpa animasi opacity di mobile */
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
    }

    /* Munculkan sub-menu saat Student Info diklik */
    .dropdown.active .dropdown-menu {
        display: flex !important; 
    }

    .dropdown-menu a {
        text-align: center !important; /* Teks sub-menu di tengah */
        padding: 15px 0 !important;
        background: #fafafa;
    }
}


/* navbar login button */
.nav-login {
  position: relative;
  z-index: 5;
}

.login-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: 18px;

  /* Gradasi Kuning Emas */
  background: linear-gradient(135deg, #ff9900, #ffcc00);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important; /* Paksa hapus underline */
  border-bottom: none !important;    /* Paksa hapus underline */

  box-shadow: 0 10px 22px rgba(255, 153, 0, 0.45);
  transition: transform .25s ease, box-shadow .25s ease;

  overflow: hidden;        /* Kunci agar kilatan tidak keluar area */
  isolation: isolate;      /* Kunci agar kilatan tidak menimpa elemen lain */
}

/* HILANGKAN EFEK NAV UNDERLINE */
.login-btn::after {
  display: none !important;
}

/* SHINE EFFECT (Kilatan Cahaya) */
.login-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.4),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .6s ease;
  z-index: -1;
}

.login-btn:hover::before {
  transform: translateX(120%);
}

/* HOVER EFFECT */
.login-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(255, 153, 0, 0.6);
  color: #fff !important;
  text-decoration: none !important;
}

/* Pastikan Ikon Putih */
.login-btn i {
  color: #ffffff;
}


/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center; /* Vertikal tengah */
  justify-content: flex-start; /* Horizontal kiri */
  padding: 0 10%; /* Margin kiri kanan */
  overflow: hidden;
  background-color: #fafafa; /* Warna dasar jika gambar loading */
}

.hero-bg {
  position: absolute;
  top: 0;
  right: -10%; /* Menggeser sedikit ke kanan agar memberi ruang teks di kiri */
  width: auto;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Gradasi dari putih pekat di kiri ke transparan di kanan agar teks terbaca jelas */
  background: linear-gradient(to right, rgba(255,255,255,1) 30%, rgba(255,255,255,0.5) 60%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left; /* Teks rata kiri */
  max-width: 800px;
}

/* ===== BADGE WELCOME ===== */
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(to right, #193deb, #9400d3); /* Warna biru tua elegan */
  color: #fafafa;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: slideUpFade 1s ease forwards;
}

/* ===== TULISAN UTAMA (SERIF) ===== */
.hero-main {
  display: block;
  font-family: 'Playfair Display', serif; /* Font Serif Elegan */
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -1px; /* Serif lebih bagus jika sedikit rapat */
  animation: zoomInTitle 1.4s ease forwards;
}

.hero-sub {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  color: #000000;
  margin-top: 5px;
  opacity: 0;
  animation: slideUpFade 1s ease forwards;
  animation-delay: 0.8s;
}

/* ===== DESKRIPSI ===== */
.hero-desc {
  margin-top: 25px;
  font-family: 'Plus Jakarta Sans', sans-serif; /* Deskripsi pakai sans-serif agar mudah dibaca */
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: #000000;
  max-width: 600px; /* Agar teks tidak terlalu panjang ke kanan */
  opacity: 0;
  animation: fadeOnly 1s ease forwards;
  animation-delay: 1.6s;
}

/* Keyframes agar animasi bekerja */
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomInTitle {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOnly {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes zoomInTitle {
  0% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUpFade {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================= VISI MISI ================= */
.visi-misi {
  padding: 80px 20px;
  background-color: white
}

.vm-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column; /* ATAS - BAWAH */
  gap: 30px;
}

.vm-box {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.vm-box:hover {
  transform: translateY(-8px);
}

.vm-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--green-dark);
}

.vm-box p,
.vm-box li {
  font-size: 16px;
  line-height: 1.7;
}

.vm-box ul {
  padding-left: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-title span {
    font-size: 22px;
  }

  .vm-container {
    grid-template-columns: 1fr;
  }
}
section {
  position: relative;
  z-index: 1;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.dropdown-menu {
  z-index: 2000;
}

/* INTRO LOGO TRANSPARAN */
#intro-logo {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent; /* ❗ TANPA WARNA */
  z-index: 9999;
  pointer-events: none; /* biar tidak ganggu klik */
}

#intro-logo img {
  width: 60vw;
  max-width: 420px;

  transition:
    transform 1.8s ease-in-out,
    opacity 1.8s ease-in-out; /* fade */
}
/* Logo navbar awalnya hilang */
.home #navbarLogo {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.unit-hero {
  padding: 80px 20px;
  text-align: center;
  background: #193deb;
  color: white;
}

.unit-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.unit-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.unit-content h2 {
  color: #1e7f43;
  margin-top: 40px;
}



/* ================= COMPANY PROFILE ================= */
.company-profile {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fafafa, #fafafa);
}

.company-profile .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #193deb;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 60px;
  color: #000000;
  font-size: 1.1rem;
}

.company-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* VIDEO */
.company-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.company-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  
}

/* DESKRIPSI */
.company-desc h3 {
  font-size: 1.8rem;
  color: #193deb;
  margin-bottom: 20px;
  
}

.company-desc p {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
  
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .company-content {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.4rem;
  }
}
/* ================= KALENDER BEM ================= */
.bem-calendar {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff, #f4fff9);
}

.calendar-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* HEADER */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.calendar-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #193deb;
}

.calendar-header button {
  background: #193deb;
  color: #fafafa;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

/* HARI */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 30px;
  text-align: center;
  font-weight: 600;
  color: #193deb;
}

/* TANGGAL */
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.calendar-date {
  height: 90px;
  border-radius: 14px;
  padding: 10px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.calendar-date:hover {
  background: #193deb;
  color: #fafafa;
  transform: translateY(-5px);
}

.calendar-date span {
  font-weight: 700;
}

.calendar-date.event::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ff9800;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.calendar-date.today {
  border: 2px solid #193deb;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .calendar-date {
    height: 70px;
  }
}
/* ================= SLIDER BIRO & DEPARTEMEN ================= */

.bem-slider {
  padding: 100px 6%;
  background: #fafafa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #193deb  ;
}

/* CONTAINER = SCROLL ASLI */
.slider-container {
  overflow-x: auto;                    /* ⬅️ KUNCI SWIPE */
  overflow-y: hidden;
  scroll-snap-type: x mandatory;       /* ⬅️ SNAP */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

/* TRACK */
.slider-track {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
}

/* CARD */
.slide-card {
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  scroll-snap-align: center;           /* ⬅️ SNAP ITEM */
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* IMAGE FULL 1 BOX */
.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;                   /* ⬅️ FULL */
  display: block;
}





/* ================= HEADLINE NEWS ================= */
.hotline-news {
  padding: 120px 6%;
  background: linear-gradient(180deg, #fafafa, #fafafa);
}

/* HEADER */
.hotline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.hotline-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #a80a0a;
  color: #fafafa;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hotline-title {
  margin-top: 18px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #193deb;
}

.hotline-desc {
  margin-top: 12px;
  color: #000000;
  font-size: 1rem;
}

/* GRID */
.hotline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.hotline-card {
  position: relative;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
  transition: transform .4s ease, box-shadow .4s ease;
}

.hotline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(0,0,0,.28);
}

.hotline-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hotline-card:hover img {
  transform: scale(1.08);
}


.hotline-overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.hotline-overlay p {
  margin-top: 10px;
  font-size: .95rem;
  line-height: 1.5;
  color: #fafafa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hotline-grid {
    grid-template-columns: 1fr;
  }

  .hotline-card {
    height: 280px;
  }

  .hotline-title {
    font-size: 2rem;
  }
}

/* ================= FONT SECTION (SERIF & SANS) ================= */

/* Semua Judul Utama Section menggunakan Playfair Display (Serif) */
.section-title, 
.hotline-title, 
.company-profile h2, 
.bem-calendar h2, 
.bem-slider h2,
.company-desc h3 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 800 !important;
  color: #193deb; /* Biru Gelap BEM */
}

/* Semua Deskripsi/Sub-judul menggunakan Plus Jakarta Sans */
.section-subtitle, 
.hotline-desc, 
.company-desc p, 
.misi-card p,
.hero-desc {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 400 !important;
  color: #000000;
}


/* ================= HOTLINE BACKGROUND ROLL EFFECT ================= */

#hotlineNews {
  position: relative !important;
  overflow: hidden !important;
  background-color: #193deb !important; /* Background utama putih/terang */
  padding: 100px 0;
}

/* Kontainer Foto Bergerak */
.hotline-bg-roll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0.12; /* Sangat samar agar tidak mengganggu fokus */
  pointer-events: none; /* Supaya cursor bisa menembus foto ke kartu berita */
  transition: opacity 0.5s ease;
}

/* Konten Berita */
.hotline-content-wrapper {
  position: relative;
  z-index: 10;
}

/* Kartu Berita Utama */
.hotline-card {
  position: relative;
  z-index: 15;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* EFEK INTERAKTIF: Saat kursor mengenai kartu berita */
.hotline-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  z-index: 20;
}

/* Saat kartu disentuh, background roll semakin menghilang (fokus ke berita) */
#hotlineNews:has(.hotline-card:hover) .hotline-bg-roll {
  opacity: 0.03;
}

/* Animasi Roll */
.roll-row { display: flex; width: 100%; }
.roll-track { display: flex; gap: 20px; width: max-content; }
.roll-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  filter: grayscale(100%); /* Hitam putih agar elegan sebagai latar */
  border-radius: 12px;
}

.to-left .roll-track { animation: scrollLeftBg 45s linear infinite; }
.to-right .roll-track { animation: scrollRightBg 45s linear infinite; }

@keyframes scrollLeftBg {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRightBg {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}





/* ================= TATA LETAK BACKGROUND HOTLINE ================= */

#hotlineNews {
    position: relative !important; /* Wajib ada agar background tidak lari keluar box */
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden; /* Sembunyikan foto yang meluncur keluar layar */
}

.hotline-bg-roll {
    position: absolute; /* Membuat foto menumpuk, bukan berurutan */
    inset: 0; /* Menarik background ke seluruh sisi box (atas, bawah, kiri, kanan) */
    z-index: 1; /* Layer paling bawah */
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.12; /* Samar agar tidak mengganggu bacaan */
    pointer-events: none; /* Klik kursor akan tembus ke kartu berita */
}

.hotline-overlay-mask {
    position: absolute;
    inset: 0;
    z-index: 2; /* Layer tengah */
    background: linear-gradient(to bottom, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.4) 50%, 
        rgba(255,255,255,1) 100%);
    pointer-events: none;
}

.hotline-content-wrapper {
    position: relative; /* Menarik konten ke depan */
    z-index: 10; /* Layer paling atas */
}

/* --- ANIMASI & UKURAN FOTO --- */
.roll-track img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 10px;
    margin-right: 15px;
}

.to-left .roll-track { animation: scrollLeftBg 40s linear infinite; }
.to-right .roll-track { animation: scrollRightBg 40s linear infinite; }

@keyframes scrollLeftBg {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRightBg {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ================= PENYESUAIAN FONT SECTION (TAMBAHAN) ================= */

/* Judul Section Utama - Serif */
.section-title, 
.hotline-title, 
.company-profile h2, 
.bem-calendar h2, 
.bem-slider h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 800 !important;
  color: #193deb; /* Warna default */
}

/* Judul di dalam Company Profile & Misi - Serif */
.company-desc h3, .misi-card span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
}

/* Sub-judul & Deskripsi - Sans Serif */
.section-subtitle, 
.hotline-desc, 
.company-desc p, 
.misi-card p,
.hero-desc {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 400 !important;
}


.visi-box p {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 500 !important;
}


/* ================= VISI MISI SLIDER ================= */

.visi-misi-slider {
  padding: 100px 6%;
  background: linear-gradient(180deg, #ffffff, #ffffff1e);
}



/* MISI */
.misi-section {
  margin-top: 100px;
}

.misi-card {
  min-width: 300px;
  max-width: 300px;
  background: linear-gradient( 150deg, #193deb, #9400d3, #fafafa);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0);
  position: relative;
  transition: transform .4s ease;
}

.misi-card:hover {
  transform: translateY(-10px);
}

.misi-card span {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(158, 13, 32, 0.12);
}

.misi-card p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  color: #000000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }

  .visi-box {
    padding: 36px;
  }
}
/* ================= VISI FIXXXXXX================= */

.visi-box {
  margin: 40px auto 0;
  max-width: 1100px;
  padding: 70px 90px;
  border-radius: 40px;

  background: linear-gradient(
    135deg,
    #9400d3,
    #193deb,
    #fafafa
  );

  color: #fafafa;
  box-shadow:
    0 40px 90px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.15);

  position: relative;
  overflow: hidden;
}

/* dekoratif halus */
.visi-box::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -20%;
  width: 520px;
  height: 520px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}

/* TEKS VISI — INI KUNCINYA */
.visi-box p {
  font-size: 1.45rem;
  line-height: 2;
  font-weight: 500;

  text-align: justify;          /* RATA KIRI KANAN */
  text-justify: inter-word;
  hyphens: auto;

  max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .visi-box {
    padding: 50px 36px;
    border-radius: 28px;
  }

  .visi-box p {
    font-size: 1.15rem;
    text-align: left; /* mobile lebih nyaman dibaca */
  }
}
/* ================= HOTLINE NEWS (NORMAL MODE) ================= */

.hotline-news {
  position: relative;
  overflow: hidden;
  background: transparent; /* ⬅️ TIDAK ADA BG */
}

/* BACKGROUND HOVER */
.hotline-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .6s ease, transform 1.2s ease;
  z-index: 1;
  pointer-events: none;
}

/* overlay gelap hanya saat hover */
.hotline-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

/* KONTEN DI ATAS BG */
.hotline-news .container {
  position: relative;
  z-index: 2;
}

/* CARD */
.hotline-card {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.hotline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

/* IMAGE */
.hotline-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* OVERLAY TEKS */
.hotline-overlay {
  position: absolute;
  inset: 0;
  padding: 26px;
  background: linear-gradient(
    to top,
    rgb(0, 29, 90),
    rgba(0,0,0,.15)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* ================= STORE BUTTON FIX ================= */
.nav-store {
  position: relative;
  z-index: 5;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: 18px;

  background: linear-gradient(135deg, #193deb, #750259);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(47,168,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;

  overflow: hidden;        /* ⬅️ PENTING */
  isolation: isolate;      /* ⬅️ PENTING */
}

/* HILANGKAN EFEK NAV UNDERLINE */
.store-btn::after {
  display: none;
}

/* SHINE EFFECT (DIPERKECIL & AMAN) */
.store-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.35),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .6s ease;
  z-index: -1; /* ⬅️ BIAR DI DALAM */
}

.store-btn:hover::before {
  transform: translateX(120%);
}

/* HOVER */
.store-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(17, 0, 255, 0.6);
}



/* ===== NAVBAR DEFAULT (AWAL PAGE) ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  background: hsla(0, 0%, 85%, 0.082); /* PUTIH */
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #f8f8fa85;
}

/* teks default */
.navbar .nav-menu li a,
.navbar .nav-title,
.navbar .nav-sub,
.navbar .menu-toggle {
  color: #0f172a;
}

/* ===== SAAT SCROLL → BLUR KACA ===== */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #061669;
}

/* dropdown ikut glass */
.dropdown-menu {
  background: #ffffff;
  backdrop-filter: blur(12px);
}





/* =====================================================
   SCROLL REVEAL - UNIVERSAL & SAFE
   Prefix: sr- (ANTI TABRAK)
===================================================== */

/* BASE */
.sr {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.sr-show {
  opacity: 1;
  transform: none;
}

/* VARIANTS */
.sr-up {
  transform: translateY(50px);
}

.sr-left {
  transform: translateX(-60px);
}

.sr-right {
  transform: translateX(60px);
}

.sr-zoom {
  transform: scale(0.92);
}

.sr-fade {
  transform: none;
}

/* STAGGER CHILD (OPTIONAL) */
.sr-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.sr-show.sr-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

.sr-show.sr-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.sr-show.sr-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.sr-show.sr-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.sr-show.sr-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.sr-show.sr-stagger > *:nth-child(5) { transition-delay: 0.5s; }


/* Menghilangkan gaya default link pada logo dan teks */
.nav-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none; /* Hilangkan garis bawah */
  color: inherit; /* Ikuti warna teks aslinya */
  cursor: pointer;
}

.nav-brand-link:hover {
  opacity: 0.9; /* Memberikan feedback visual sedikit saat di-hover */
}


/* ========================================================
   INDICATOR HALAMAN AKTIF (KECUALI STORE)
   ======================================================== */

/* Hanya berikan efek pada link yang BUKAN bagian dari nav-store */
.nav-menu li:not(.nav-store) a {
    position: relative;
    display: inline-block;
}

/* Garis bawah hanya untuk link aktif yang bukan store */
.nav-menu li:not(.nav-store) a.active::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Jarak di bawah teks */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1028a1; /* Warna identitas BEM */
    border-radius: 5px;
    pointer-events: none;
}

/* Efek hover yang sama (opsional, agar konsisten) */
.nav-menu li:not(.nav-store) a:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1028a1;
    opacity: 0.7;
}

/* ========================================================
   ANIMASI UNDERLINE NAVIGASI - BEM FAHUTAN
   ======================================================== */

/* Targetkan link menu kecuali tombol Store */
.nav-menu li:not(.nav-store) a {
    position: relative;
    display: inline-block;
    padding-bottom: 5px; /* Jarak antara teks dan garis */
    text-decoration: none;
    color: inherit;
}

/* Membuat elemen garis (After) */
.nav-menu li:not(.nav-store) a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px; /* Ketebalan garis */
    background-color: #1028a1; /* Warna kuning identitas */
    border-radius: 5px;

    /* Kondisi Awal: Tersembunyi (Menciut ke kiri) */
    transform: scaleX(0);
    transform-origin: left; 
    opacity: 0;
    
    /* Durasi Animasi Halus */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Animasi muncul saat Hover */
.nav-menu li:not(.nav-store) a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Kondisi saat halaman Aktif (Selalu Muncul) */
.nav-menu li:not(.nav-store) a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Pastikan Store tidak ikut terpengaruh */
.nav-menu li.nav-store a::after {
    display: none !important;
}




/* ================= ANIMASI BARUUUU ================= */
/* --- Efek Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variasi: Fade dari kiri */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Delay untuk elemen berurutan (seperti card) */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Menghaluskan scroll seluruh halaman */
html {
  scroll-behavior: smooth;
}

.hero {
  overflow: hidden;
  position: relative;
}

.hero-bg {
  width: 100%;
  height: 120%; /* Lebih tinggi untuk efek parallax */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* Animasi zoom pelan saat halaman dimuat */
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* --- Animasi Khusus Visi --- */
.visi-box.reveal {
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.visi-box.reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* --- Animasi Kartu Misi (Staggered) --- */
/* Kita buat misi muncul dari bawah dengan rotasi sedikit agar dinamis */
.misi-card.reveal {
  opacity: 0;
  transform: translateY(50px) rotateX(-15deg);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.misi-card.reveal.active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Mengatur delay otomatis agar kita tidak perlu tulis satu-satu di HTML */
.misi-card:nth-child(1) { transition-delay: 0.1s; }
.misi-card:nth-child(2) { transition-delay: 0.2s; }
.misi-card:nth-child(3) { transition-delay: 0.3s; }
.misi-card:nth-child(4) { transition-delay: 0.4s; }
.misi-card:nth-child(5) { transition-delay: 0.5s; }

/* Efek Glow pada Nomor Misi saat Aktif */
.misi-card.active span {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { text-shadow: 0 0 0px rgba(131, 100, 8, 0); }
  50% { text-shadow: 0 0 15px rgb(91, 93, 243); }
  100% { text-shadow: 0 0 0px rgba(255,193,7,0); }
}

/* Menghilangkan scrollbar pada slider misi agar tidak muncul garis */
#misiSlider {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

#misiSlider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Jika ada garis progress-bar hijau sisa dari template, hapus dengan ini */
.misi-section .slider-track::after, 
.misi-section .progress-line {
    display: none !important;
}


/* Kartu misi akan muncul bergantian */
.misi-card.reveal:nth-child(1) { transition-delay: 0.1s; }
.misi-card.reveal:nth-child(2) { transition-delay: 0.2s; }
.misi-card.reveal:nth-child(3) { transition-delay: 0.3s; }
.misi-card.reveal:nth-child(4) { transition-delay: 0.4s; }
.misi-card.reveal:nth-child(5) { transition-delay: 0.5s; }

/* Animasi Scale Up agar lebih hidup */
.misi-card.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.misi-card.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}




/* ================= FOOTER ================= */
/* ================= MODERN FOOTER ================= */
.modern-footer {
  background: linear-gradient(to right, #9400d3, #061669); /* Deep Navy Gradient */
  color: #ffffff;
  padding-top: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #143deb; /* Garis Hijau Fahutan di atas */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr; /* Pembagian kolom proporsional */
  gap: 40px;
}

/* --- BAGIAN 1: BRAND --- */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}


.brand-img {
  width: 55px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.brand-details {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 5px;
}



/* --- JUDUL SECTION KECIL --- */
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #143deb;
  border-radius: 2px;
}

/* --- BAGIAN 2: QUICK LINKS DENGAN IKON --- */
.nav-links {
  list-style: none;
  padding: 0;
}

.nav-links li {
  margin-bottom: 15px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px; /* Jarak ikon ke teks */
  transition: all 0.3s ease;
}

.nav-links a i {
  color: #ffffff; /* Warna ikon menu */
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
  padding-left: 8px; /* Efek geser saat hover */
}

.nav-links a:hover i {
  transform: scale(1.2); /* Ikon membesar sedikit */
}

/* --- BAGIAN 3: SOCIAL BUTTONS (LOGO APLIKASI) --- */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Kolom kotak */
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05); /* Glass effect */
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn i {
  font-size: 1.4rem;
}

.social-btn span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* HOVER EFFECTS - WARNA ASLI APLIKASI */
.social-btn:hover {
  transform: translateY(-5px);
  background: white;
}

/* LinkedIn Blue */
.social-btn.linkedin:hover {
  color: #0077b5;
  box-shadow: 0 5px 20px rgba(0, 119, 181, 0.4);
}

/* Instagram Gradient (Teks jadi pink/ungu) */
.social-btn.instagram:hover {
  color: #d62976;
  box-shadow: 0 5px 20px rgba(214, 41, 118, 0.4);
}

/* YouTube Red */
.social-btn.youtube:hover {
  color: #ff0000;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

/* Email Green */
.social-btn.email:hover {
  color: #2fa866;
  box-shadow: 0 5px 20px rgba(47, 168, 102, 0.4);
}

/* --- COPYRIGHT BAR --- */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr; /* Jadi 1 kolom ke bawah */
    text-align: center;
    gap: 50px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%); /* Garis judul di tengah */
  }

  .nav-links a {
    justify-content: center; /* Menu rata tengah */
  }

  .social-grid {
    max-width: 400px;
    margin: 0 auto; /* Tombol sosmed rata tengah */
  }
}

/* Keadaan Default Navbar (Transparan) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease; /* Transisi halus */
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* Keadaan Saat Digulir (Scrolled) */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7); /* Putih transparan */
    backdrop-filter: blur(15px); /* EFEK KACA BLUR */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid #193deb; /* BORDER BIRU SESUAI LOGO */
    padding: 10px 0; /* Membuat navbar sedikit lebih ramping saat scroll */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Pastikan teks navbar tetap terlihat jelas di atas efek kaca */
.navbar.scrolled .nav-link, 
.navbar.scrolled .nav-brand-text {
    color: #061669 !important;
}

/* Styling Gambar Persegi Kecil di Tengah Teks */
.mid-article-image {
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mid-article-image img {
  /* Mengatur ukuran kotak persegi kecil */
  width: 250px; 
  height: 250px;
  
  /* Memastikan gambar tetap persegi tanpa gepeng */
  object-fit: cover; 
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: block;
}

.mid-article-image figcaption {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  text-align: center;
  max-width: 250px; /* Lebar teks disamakan dengan lebar gambar */
  line-height: 1.4;
}

/* Penyesuaian Mobile */
@media (max-width: 480px) {
  .mid-article-image img {
    width: 200px;
    height: 200px;
  }
  .mid-article-image figcaption {
    max-width: 200px;
    font-size: 0.8rem;
  }
}

.el-section { padding: 80px 0; background: #fff; overflow: hidden; }

/* Kunci 4:5 Vertikal */
.el-vertical-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 15px;
  overflow: hidden;
  background: #061669;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-vertical-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.el-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  background: #193deb;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 5px;
}

.el-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #061669 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.el-meta h3 { color: #fff; font-size: 1.2rem; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.el-meta p { color: #00f0ff; font-size: 0.8rem; font-weight: 600; }

/* --- CINEMA BLUR LOGIC --- */
/* Saat salah satu card di hover, yang lain blur */
.mySwiperElaborator:hover .swiper-slide:not(:hover) {
  filter: blur(5px) grayscale(0.8);
  opacity: 0.4;
  transform: scale(0.9);
}

.swiper-slide:hover .el-vertical-card {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(6, 22, 105, 0.3);
  z-index: 10;
}


/* ==========================================================================
   ELABORATOR OF THE MONTH (ISOLATED & BULLETPROOF)
   ========================================================================== */
#elaborator-month-isolated {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 5; /* Memastikan dia di atas background yang lain */
}

#elaborator-month-isolated .el-header-isolated {
    text-align: center;
    margin-bottom: 50px;
}

#elaborator-month-isolated .el-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #193deb; /* Biru BEM */
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

#elaborator-month-isolated .el-title .text-blue {
    color: #000000;
}

#elaborator-month-isolated .el-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.6;
}

#elaborator-month-isolated .swiperElaboratorIsolated {
    padding: 20px 10px 60px !important;
}

/* --- KUNCI RASIO 4:5 VERTIKAL --- */
#elaborator-month-isolated .el-card-iso {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5 !important;
    border-radius: 20px;
    overflow: hidden;
    background: #061669;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1); /* Reset transform */
}

#elaborator-month-isolated .el-img-iso {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s ease;
    display: block;
}

/* --- BADGE BULAN --- */
#elaborator-month-isolated .el-badge-iso {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: #193deb;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- OVERLAY TEKS --- */
#elaborator-month-isolated .el-overlay-iso {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 22, 105, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 5;
}

#elaborator-month-isolated .el-meta-iso h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

#elaborator-month-isolated .el-meta-iso p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #00f0ff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

#elaborator-month-isolated .el-line-iso {
    width: 0;
    height: 3px;
    background: #00f0ff;
    transition: width 0.6s ease;
    border-radius: 2px;
}

/* --- INTERACTION: CINEMA BLUR --- */
/* Saat list di-hover, yang tidak di-hover akan blur */
#elaborator-month-isolated .swiper-wrapper:hover .swiper-slide:not(:hover) {
    filter: blur(8px) grayscale(0.6);
    opacity: 0.4;
    transform: scale(0.92);
}

/* Saat card di-hover, dia membesar dan bersinar */
#elaborator-month-isolated .swiper-slide:hover .el-card-iso {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(25, 61, 235, 0.25);
    z-index: 10;
}

#elaborator-month-isolated .swiper-slide:hover .el-img-iso {
    transform: scale(1.1);
}

#elaborator-month-isolated .swiper-slide:hover .el-line-iso {
    width: 60px;
}

/* --- PAGINATION DOTS KUSTOM --- */
#elaborator-month-isolated .swiper-pagination-bullet-active {
    background: #193deb !important;
    width: 25px !important;
    border-radius: 5px !important;
}