/* --- Modul: 404-error-section.css --- */
/* 404 Error Section */

.error-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.error-404-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.error-404-text {
  flex: 1;
  text-align: left;
}

.error-404-text h1 {
  font-size: 120px;
  font-weight: 700;
  color: #d9534f;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.error-404-text h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.error-404-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.error-404-image {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-image img,
.error-404-image svg {
  max-width: 100%;
  height: auto;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: #d9534f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  background: #c9302c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 83, 79, 0.3);
}

/* Mobile responsive - GAMBAR DI ATAS */
@media (max-width: 992px) {
  .error-404-section .error-404-content {
    flex-direction: column !important;
    text-align: center !important;
  }

  .error-404-section .error-404-text {
    text-align: center !important;
    order: 2 !important;
    /* Text di bawah */
    width: 100% !important;
  }

  .error-404-section .error-404-text h1 {
    font-size: 80px !important;
  }

  .error-404-section .error-404-text h2 {
    font-size: 28px !important;
  }

  .error-404-section .error-404-image {
    order: 1 !important;
    /* Image di atas */
    flex: 0 0 350px !important;
    max-width: 350px !important;
    margin: 0 auto 30px auto !important;
  }
}

@media (max-width: 576px) {
  .error-404-section .error-404-text h1 {
    font-size: 60px !important;
  }

  .error-404-section .error-404-text h2 {
    font-size: 24px !important;
  }

  .error-404-section .error-404-text p {
    font-size: 16px !important;
  }

  .error-404-section .error-404-image {
    flex: 0 0 280px !important;
    max-width: 280px !important;
  }
}



/* --- Modul: about-section.css --- */
/* About Section */

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}



/* --- Modul: beranda.css --- */
/* =========================================
   BAGIAN HERO (HERO SECTION)
   ========================================= */
.beranda-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #333333;
    /* Abu-abu gelap agar teks tetap terbaca */
    background-image: url('../../img/MKgedung.JPEG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* Tata Letak: Menarik konten ke Tengah-Kiri */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Tarik ke Kiri */
    padding-left: 8%;
    /* Jarak bernapas dari layar kiri */
}

/* Lapisan gelap (Overlay) seimbang agar gedung tetap terlihat jelas dan teks terbaca */
.hero-lapisan-gelap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Canvas Partikel Animasi Jaringan Data (Constellation) */
.hero-canvas-partikel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* =========================================
   TIPOGRAFI KONTEN HERO
   ========================================= */
.hero-teks-tengah {
    position: absolute;
    top: 11%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-subjudul {
    font-family: var(--font-judul), 'Playfair Display', serif !important;
    font-size: 50px !important;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-konten {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 8%;
    z-index: 4;
    max-width: 650px;
    text-align: justify;
}

.hero-deskripsi {
    font-family: var(--font-utama);
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
    color: #f1f1f1;
}

/* Tombol Jelajahi */
.tombol-jelajahi {
    font-family: var(--font-utama);
    display: inline-block;
    background-color: var(--warna-utama);
    color: var(--warna-teks-putih);
    padding: 16px 56px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(179, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.tombol-jelajahi:hover {
    background-color: var(--warna-utama-gelap);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 0, 0, 0.5);
}

/* =========================================
   WADAH DATA KACA CERAH (GLASSSMORPHISM)
   ========================================= */
.beranda-data-kaca {
    position: absolute;
    bottom: 30px;
    /* Mepet ke bawah layar */
    left: 50%;
    transform: translateX(-50%);
    /* Sentralisasi kotak secara horizontal */
    width: 95%;
    /* Melebar ke samping */
    z-index: 10;
}

.wadah-kaca {
    /* Efek Kaca Transparan ala iOS */
    background: rgba(255, 255, 255, 0.08);
    /* Sangat transparan */
    backdrop-filter: blur(25px);
    /* Efek buram yang sangat kuat */
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* Garis tepi putih tipis */
    border-radius: 24px;
    /* Sudut lebih melengkung */

    max-width: 900px;
    /* Dibuat sedikit lebih ringkas agar rapi */
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    /* Bayangan halus */
}

/* Elemen Internal Statistik */
.item-statistik {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ikon-statistik {
    background-color: rgba(255, 255, 255, 0.2);
    /* Latar ikon transparan */
    color: var(--warna-teks-putih);
    /* Ikon menjadi putih agar serasi */
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.teks-statistik h3 {
    font-family: var(--font-utama);
    color: var(--warna-teks-putih);
    /* Angka putih bersih */
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.teks-statistik p {
    font-family: var(--font-utama);
    color: #f8f9fa;
    /* Teks deskripsi putih terang */
    font-size: 0.95rem;
    font-weight: 400;
    margin: 5px 0 0 0;
}

/* Garis Pemisah Antar Item */
.pemisah-garis {
    height: 50px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Garis pemisah transparan */
}

/* =========================================
   KONTEN SOLID BAWAH
   ========================================= */
.beranda-konten-solid {
    position: relative;
    background-color: #f8f9fa;
    z-index: 5;
    padding: 0;
    min-height: 50vh;
}

/* =========================================
   RESPONSIVITAS LAYAR (MEDIA QUERIES)
   ========================================= */

/* Untuk Layar Menengah / Tablet (Maksimal Lebar 992px) */
@media screen and (max-width: 992px) {
    .hero-judul {
        font-size: 3.2rem;
        /* Mengecilkan sedikit */
    }

    .wadah-kaca {
        padding: 20px;
        gap: 15px;
    }

    .teks-statistik h3 {
        font-size: 1.8rem;
    }

    .ikon-statistik {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Untuk Layar Kecil / Smartphone (Maksimal Lebar 768px) */
/* =========================================
   SMARTPHONE
   ========================================= */
@media screen and (max-width: 768px) {
    /* =====================================
       HERO
       ===================================== */
    .beranda-hero {
        position: relative;

        width: 100%;

        /* JANGAN height: 100vh di mobile */
        height: auto;
        min-height: 100svh;

        /* Ubah layout desktop menjadi vertikal */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        padding: 0 16px 30px;
        box-sizing: border-box;

        background-attachment: scroll;
        background-position: center center;
        background-size: cover;

        overflow: hidden;
    }

    /* =====================================
       OVERLAY
       ===================================== */
    .hero-lapisan-gelap {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        background: rgba(0, 0, 0, 0.55);

        z-index: 1;
    }

    /* =====================================
       CANVAS PARTIKEL
       ===================================== */
    .hero-canvas-partikel {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        z-index: 2;
        pointer-events: none;
    }

    /* =====================================
       TEKS "PORTAL SATU DATA..."
       BAGIAN ATAS
       ===================================== */
    .hero-teks-tengah {
        position: relative;

        /* RESET STYLE DESKTOP */
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        transform: none;

        width: 100%;
        max-width: 600px;

        margin: 180px auto 0;

        padding: 0 10px;
        box-sizing: border-box;

        text-align: center;

        z-index: 4;
    }

    .hero-subjudul {
        font-size: clamp(24px, 7vw, 34px) !important;

        line-height: 1.15;

        letter-spacing: 1px;

        white-space: normal;

        text-align: center;

        margin: 0;
    }

    /* =====================================
       KONTEN UTAMA HERO
       ===================================== */
    .hero-konten {
        position: relative;

        /* WAJIB RESET PROPERTY DESKTOP */
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        transform: none;

        width: 100%;
        max-width: 560px;

        margin: 40px auto 0;

        padding: 0 10px;
        box-sizing: border-box;

        text-align: center;

        z-index: 4;
    }

    /* =====================================
       JUDUL BESAR
       ===================================== */
    .hero-judul {
        width: 100%;

        font-size: clamp(2rem, 10vw, 3rem);

        line-height: 1.05;

        letter-spacing: 1px;

        text-align: center;

        margin: 0 auto 20px;

        overflow-wrap: normal;
        word-break: normal;
    }

    /* =====================================
       DESKRIPSI
       ===================================== */
    .hero-deskripsi {
        width: 100%;
        max-width: 520px;

        font-size: 0.95rem;

        line-height: 1.6;

        text-align: center;

        margin: 0 auto 25px;

        padding: 0;

        box-sizing: border-box;
    }

    /* =====================================
       TOMBOL
       ===================================== */
    .tombol-jelajahi {
        display: inline-block;

        padding: 13px 35px;

        font-size: 0.9rem;

        margin: 0 auto;
    }

    /* =====================================
       WRAPPER STATISTIK
       ===================================== */
    .beranda-data-kaca {
        /*
         * JANGAN ABSOLUTE DI MOBILE
         * supaya tidak menindih deskripsi
         */
        position: relative;

        /* RESET DESKTOP */
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        transform: none;

        width: 100%;
        max-width: 600px;

        height: auto;

        margin: 35px auto 0;

        padding: 0;

        box-sizing: border-box;

        z-index: 4;
    }

    /* =====================================
       KACA STATISTIK
       ===================================== */
    .wadah-kaca {
        width: 100%;

        max-width: none;

        margin: 0;

        padding: 18px 8px;

        box-sizing: border-box;

        display: flex;

        /* TIGA STATISTIK SEJAJAR */
        flex-direction: row;

        align-items: stretch;

        justify-content: space-between;

        gap: 0;

        background: rgba(255, 255, 255, 0.12);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border: 1px solid rgba(255, 255, 255, 0.3);

        border-radius: 18px;
    }

    /* =====================================
       ITEM STATISTIK
       ===================================== */
    .item-statistik {
        flex: 1 1 0;

        min-width: 0;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 9px;

        padding: 4px 5px;

        box-sizing: border-box;

        text-align: center;
    }

    /* =====================================
       ICON STATISTIK
       selector aslinya adalah
       .ikon-statistik
       ===================================== */
    .ikon-statistik {
        width: 52px;
        height: 52px;

        min-width: 52px;
        min-height: 52px;

        font-size: 1.25rem;

        margin: 0 auto;

        display: flex;

        align-items: center;
        justify-content: center;
    }

    /* =====================================
       ANGKA
       ===================================== */
    .teks-statistik {
        width: 100%;

        text-align: center;
    }

    .teks-statistik h3 {
        font-size: 1.8rem;

        line-height: 1;

        margin: 3px 0 7px;
    }

    /* =====================================
       LABEL STATISTIK
       ===================================== */
    .teks-statistik p {
        font-size: 0.72rem;

        line-height: 1.25;

        margin: 0;

        text-align: center;

        white-space: normal;
    }

    /* =====================================
       PEMISAH VERTIKAL
       ===================================== */
    .pemisah-garis {
        flex: 0 0 1px;

        width: 1px;
        height: auto;

        min-height: 100px;

        margin: 0 3px;

        background-color:
            rgba(255, 255, 255, 0.3);
    }
}

/* --- Modul: call-to-action-section.css --- */
/* Call To Action Section */

.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}



/* --- Modul: contact-section-redesign-white-floating-card-left-full-bleed-red-right.css --- */
/* Contact Section Redesign (White Floating Card Left + Full-Bleed Red Right) */

.contact-section {
  position: relative;
  overflow: hidden;
  background-color: #CC3334 !important; /* Full-width MKRI Red */
  padding: 30px 0 !important; /* Very compact — reduced from 60px */
}

/* Full-width red background — ::after split panel retired.
   Subtle full-bleed radial accent keeps the red field from looking flat. */
@media (min-width: 992px) {
  /* ::after no longer needed — section bg is already full red */
  .contact-section::after {
    display: none;
  }

  .contact-red-bg-pattern {
    position: absolute;
    inset: 0; /* Full width/height — no longer clipped to 70% */
    background-image: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.10) 0%, transparent 45%),
                      radial-gradient(circle at 88% 80%, rgba(0, 0, 0, 0.07) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
  }

  /* White Card on Desktop — no negative margin needed (bg is uniformly red) */
  .contact-white-card {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    margin-right: 0; /* Removed -45px negative margin */
  }

  /* Red Hubungi MK Content on Desktop (RIGHT) */
  .contact-red-area {
    position: relative;
    z-index: 2;
    padding-left: 65px;
    color: #ffffff;
  }
}

/* Mobile & Tablet Styles (< 992px) */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 20px 0 0 0;
    background-color: var(--color-bg-light, #f8f9fa);
  }

  .contact-section::after {
    display: none;
  }

  .contact-red-bg-pattern {
    display: none;
  }

  .contact-white-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    width: calc(100% - 24px);
    margin: 20px 12px 28px 12px;
    padding: 28px 20px !important;
    position: relative;
    z-index: 2;
  }

  .contact-white-card .contact-card-title {
    font-size: 1.6rem;
  }

  .contact-white-card .contact-card-desc {
    font-size: 0.95rem;
    margin-bottom: 1.25rem !important;
  }

  .contact-red-area {
    background: linear-gradient(135deg, #CC3334 0%, #b32829 100%);
    color: #ffffff;
    padding: 40px 20px 48px 20px;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .contact-red-area .contact-red-title {
    font-size: 1.85rem;
    margin-bottom: 6px !important;
  }

  .contact-red-area .contact-red-sub {
    font-size: 1rem;
    margin-bottom: 20px !important;
  }

  .contact-red-info-row {
    margin-bottom: 14px !important;
  }

  .contact-map-wrap {
    width: min(94%, 520px);
    margin-inline: auto;
    margin-top: 24px !important;
  }

  .contact-map-wrap iframe {
    height: 230px !important;
  }
}

/* White Card Typography (LEFT) */
.contact-eyebrow {
  font-family: var(--font-heading, inherit);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #CC3334;
  text-transform: uppercase;
}

.contact-card-title {
  font-family: var(--font-heading, serif) !important;
  color: var(--color-heading, #1f2937) !important;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.contact-card-desc {
  font-family: var(--font-body, sans-serif) !important;
  color: #4b5563 !important;
  font-size: 1.02rem;
  line-height: 1.65;
}

/* CTA Pill Button (MKRI Red Background + White Text + Fast Pulse Animation) */
.contact-cta-btn {
  background-color: #CC3334 !important;
  color: #ffffff !important;
  font-family: var(--font-body, sans-serif);
  font-weight: 700 !important;
  font-size: 0.95rem;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  box-shadow: 0 4px 15px rgba(204, 51, 52, 0.3);
  transition: all 0.25s ease-in-out !important;
  text-decoration: none !important;
}

.contact-cta-btn:hover {
  background-color: #ba2e2e !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(204, 51, 52, 0.4);
}

/* Fast Pulse Glow Animation */
@keyframes fastPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 51, 52, 0.55);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(204, 51, 52, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 51, 52, 0);
    transform: scale(1);
  }
}

.btn-blink-fast {
  animation: fastPulse 1.2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn-blink-fast {
    animation: none;
  }
}

.contact-security-note {
  font-size: 0.88rem;
  color: #6b7280;
}

/* Red Hubungi MK Content Typography (RIGHT) */
.contact-red-title {
  font-family: var(--font-heading, serif) !important;
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 700;
}

.contact-red-sub {
  font-family: var(--font-body, sans-serif);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.contact-red-info-row {
  margin-bottom: 22px;
}

/* Dedicated Horizontal Entry Keyframes for Contact Section */
@keyframes contactSlideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contactSlideFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Custom AOS Horizontal Converging Animations for Contact Section */
.contact-section [data-aos="fade-right"] {
  transform: translateX(-100px) translateZ(0);
  will-change: transform, opacity;
  opacity: 0;
  transition-property: transform, opacity;
}

.contact-section [data-aos="fade-right"].aos-animate {
  transform: translateX(0) translateZ(0);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section [data-aos="fade-left"] {
  transform: translateX(100px) translateZ(0);
  will-change: transform, opacity;
  opacity: 0;
  transition-property: transform, opacity;
}

.contact-section [data-aos="fade-left"].aos-animate {
  transform: translateX(0) translateZ(0);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reduced movement distance on mobile to prevent horizontal overflow */
@media (max-width: 991px) {
  .contact-section [data-aos="fade-right"] {
    transform: translateX(-50px) translateZ(0);
  }
  .contact-section [data-aos="fade-left"] {
    transform: translateX(50px) translateZ(0);
  }
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .contact-section [data-aos="fade-right"],
  .contact-section [data-aos="fade-left"],
  .contact-section [data-aos="fade-right"].aos-animate,
  .contact-section [data-aos="fade-left"].aos-animate,
  .contact-white-card,
  .contact-red-area {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.contact-red-info-label {
  font-family: var(--font-body, sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.contact-red-info-value {
  font-family: var(--font-body, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.border-white-80 {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.contact-map-wrap iframe {
  border-radius: 12px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}



/* --- Modul: dashboard-gallery-cards.css --- */
/* Dashboard Gallery Cards */
/* Gallery grid spacing */
#tableau-container.row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

/* Gallery card column */
.dash-gallery-col {
  padding: calc(var(--bs-gutter-y, 1.25rem) / 2) calc(var(--bs-gutter-x, 1.25rem) / 2);
}

/* The card itself — image-first thumbnail, no text visible by default */
.dash-gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  aspect-ratio: 16 / 10;
  background-color: #1a1a2e;
  cursor: pointer;
  transition: box-shadow 0.30s ease, transform 0.30s ease;
  display: block;
  text-decoration: none;
  outline: none;
  width: 100%;
}

.dash-gallery-card:hover,
.dash-gallery-card:focus-visible {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.20);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ---- iframe live preview thumbnail ---- */
.dash-gallery-iframe-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  transition: filter 0.30s ease, transform 0.30s ease;
}

.dash-gallery-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: 0 0;
  border: none;
  pointer-events: none;
}

/* ---- Static image thumbnail (if provided) ---- */
.dash-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: filter 0.30s ease, transform 0.30s ease;
  display: block;
}

/* ---- Fallback placeholder — subtle, not error-like ---- */
.dash-gallery-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 0;
  background: linear-gradient(145deg,
      #1e2a3a 0%,
      #243447 40%,
      #1a2535 70%,
      #162030 100%);
  transition: filter 0.30s ease, transform 0.30s ease;
}

.dash-gallery-fallback-icon {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
}

/* ---- Hover: blur + darken the visual layer ---- */
.dash-gallery-card:hover .dash-gallery-iframe-wrap,
.dash-gallery-card:focus-visible .dash-gallery-iframe-wrap {
  filter: blur(3px) brightness(0.55);
  transform: scale(1.03);
}

.dash-gallery-card:hover .dash-gallery-img,
.dash-gallery-card:focus-visible .dash-gallery-img {
  filter: blur(3px) brightness(0.55);
  transform: scale(1.03);
}

.dash-gallery-card:hover .dash-gallery-fallback,
.dash-gallery-card:focus-visible .dash-gallery-fallback {
  filter: blur(2px) brightness(0.65);
  transform: scale(1.03);
}

/* ---- Overlay panel (shown on hover) ---- */
.dash-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px 18px;
  background: linear-gradient(to top,
      rgba(10, 10, 16, 0.85) 0%,
      rgba(10, 10, 16, 0.55) 50%,
      rgba(10, 10, 16, 0.0) 100%);
  opacity: 0;
  transition: opacity 0.30s ease;
  z-index: 2;
  border-radius: inherit;
}

.dash-gallery-card:hover .dash-gallery-overlay,
.dash-gallery-card:focus-visible .dash-gallery-overlay {
  opacity: 1;
}

/* ---- Overlay content — single unified transition, no stagger ---- */
.dash-gallery-title {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #ffffff;
  line-height: 1.35;
  margin: 0 0 7px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.30s ease;
}

.dash-gallery-desc {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--default-font);
  line-height: 1.55;
  margin: 0 0 13px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.30s ease;
}

.dash-gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  background-color: var(--accent-color);
  color: #ffffff !important;
  font-size: 0.70rem;
  font-weight: 600;
  font-family: var(--nav-font);
  letter-spacing: 0.04em;
  border-radius: 6px;
  text-decoration: none !important;
  cursor: pointer;
  align-self: flex-start;
  opacity: 0;
  transition: background-color 0.20s ease, opacity 0.30s ease;
}

.dash-gallery-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 18%);
  color: #ffffff !important;
}

/* Fade in overlay children on card hover — no stagger, no translateY */
.dash-gallery-card:hover .dash-gallery-title,
.dash-gallery-card:focus-visible .dash-gallery-title,
.dash-gallery-card:hover .dash-gallery-desc,
.dash-gallery-card:focus-visible .dash-gallery-desc,
.dash-gallery-card:hover .dash-gallery-cta,
.dash-gallery-card:focus-visible .dash-gallery-cta {
  opacity: 1;
}

/* ---- Touch devices: always show title + desc + cta (no hover available) ---- */
@media (hover: none) and (pointer: coarse) {
  .dash-gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top,
        rgba(10, 10, 16, 0.82) 0%,
        rgba(10, 10, 16, 0.42) 50%,
        rgba(10, 10, 16, 0.0) 100%);
  }

  .dash-gallery-title,
  .dash-gallery-desc,
  .dash-gallery-cta {
    opacity: 1;
  }

  .dash-gallery-card:active .dash-gallery-iframe-wrap,
  .dash-gallery-card:active .dash-gallery-img,
  .dash-gallery-card:active .dash-gallery-fallback {
    filter: blur(2px) brightness(0.6);
  }
}

/* ---- Responsive grid ---- */
@media (max-width: 767px) {
  .dash-gallery-card {
    aspect-ratio: 16 / 9;
  }

  .dash-gallery-desc {
    -webkit-line-clamp: 2;
  }
}

/* ---- Empty / no-result state ---- */
.dash-gallery-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--heading-color);
}

.dash-gallery-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.4;
}

/* Dataset section: editorial data catalogue */
#dataset, #visualisasi, #publikasi {
  --dataset-paper: #f8f8f6;
  --dataset-ink: #25282d;
  --dataset-muted: #69717a;
  --dataset-line: #e4e6e8;
  position: relative;
  overflow: hidden;
  background: var(--dataset-paper);
}

#dataset::before,
#dataset::after {
  position: absolute;
  z-index: 0;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(204, 51, 52, .09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

#dataset::before {
  top: 72px;
  right: -164px;
}

#dataset::after {
  top: 146px;
  right: -90px;
  width: 110px;
  height: 110px;
}

#dataset>.container {
  position: relative;
  z-index: 1;
}

#dataset>.container:first-child {
  max-width: 1180px;
}

.dataset-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  align-items: center;
  min-height: 330px;
  padding-top: 54px;
  padding-bottom: 42px;
}

.dataset-hero-copy {
  max-width: 700px;
}

.dataset-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-color);
  font-size: clamp(2.7rem, 5.4vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .86;
  text-transform: uppercase;
}

.dataset-hero h2 {
  margin: 0 0 16px;
  color: var(--dataset-ink);
  font-size: clamp(2rem, 3.45vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.dataset-hero p {
  max-width: 590px;
  margin: 0;
  color: var(--dataset-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.dataset-hero-visual {
  position: relative;
  width: 270px;
  height: 230px;
  margin: 0 auto;
}

.dataset-hero-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(204, 51, 52, .22);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(37, 40, 45, .08);
  color: var(--accent-color);
  font-size: 44px;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.dataset-hero-icon::after {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(204, 51, 52, .14);
  border-radius: inherit;
  content: "";
  z-index: -1;
}

.dataset-hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(204, 51, 52, .16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.dataset-hero-orbit-one {
  width: 214px;
  height: 118px;
}

.dataset-hero-orbit-two {
  width: 142px;
  height: 224px;
  transform: translate(-50%, -50%) rotate(28deg);
}

.dataset-hero-data {
  position: absolute;
  color: rgba(204, 51, 52, .58);
  font-family: var(--default-font);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.dataset-hero-data-one {
  top: 15px;
  right: 25px;
}

.dataset-hero-data-two {
  bottom: 24px;
  left: 16px;
}

.dataset-search-row {
  margin-bottom: 30px !important;
}

.dataset-search-wrapper .dataset-search-input {
  height: 62px;
  border: 1px solid var(--dataset-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(37, 40, 45, .035);
  font-size: .95rem;
}

.dataset-search-wrapper .dataset-search-input::placeholder {
  color: #9aa1a8;
}

.dataset-search-wrapper .dataset-search-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(204, 51, 52, .09);
}

.dataset-toolbar {
  margin-bottom: 28px !important;
  padding-top: 18px;
  border-top: 1px solid var(--dataset-line);
}

.dataset-result-count {
  color: var(--dataset-ink);
  font-size: .92rem;
}

.dataset-result-count strong {
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}

.dataset-toolbar-sort label {
  font-size: .82rem;
}

.dataset-sort-select {
  min-height: 42px;
  border: 1px solid var(--dataset-line);
  border-radius: 9px;
  background-color: #fff;
  color: var(--dataset-ink);
}

.dataset-card-column {
  display: flex;
}

.dataset-card {
  border: 1px solid var(--dataset-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(37, 40, 45, .035);
}

.dataset-card:hover {
  border-color: rgba(204, 51, 52, .62);
  box-shadow: 0 16px 30px rgba(37, 40, 45, .1);
  transform: translateY(-5px);
}

.dataset-card-title {
  color: var(--dataset-ink);
  letter-spacing: -.02em;
}

.dataset-card-description {
  color: var(--dataset-muted);
}

.dataset-card-metadata {
  border-color: #eef0f2;
}

.dataset-card-footer {
  border-top: 0;
}

.dataset-card-cta {
  color: var(--dataset-ink);
}

.dataset-card:hover .dataset-card-title,
.dataset-card:hover .dataset-card-cta,
.dataset-card:hover .dataset-card-cta i {
  color: var(--accent-color);
}

.dataset-pagination-row {
  margin-top: 42px !important;
}

#dataset-pagination {
  gap: 5px;
}

#dataset-pagination .page-link {
  min-width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--dataset-muted);
  line-height: 23px;
}

#dataset-pagination .page-link:hover,
#dataset-pagination .page-item.active .page-link {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #fff;
}

/* Dataset hero reference alignment */
#dataset::before,
#dataset::after {
  display: none;
}

.dataset-hero {
  min-height: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.dataset-hero-copy {
  max-width: 720px;
}

.dataset-eyebrow {
  display: none;
}

.dataset-hero h2 {
  margin-bottom: 22px;
  color: #5f667a;
  font-size: clamp(3.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.dataset-hero p {
  max-width: 720px;
  color: #6f7485;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.dataset-hero-visual {
  width: 270px;
  height: 230px;
}

.dataset-hero-icon {
  width: 112px;
  height: 112px;
  border-color: rgba(204, 51, 52, .16);
  border-radius: 22px;
  color: #cc3334;
  font-size: 46px;
  transform: translate(-50%, -50%);
}

.dataset-hero-icon::after {
  display: none;
}

.dataset-hero-orbit {
  border-color: rgba(204, 51, 52, .15);
}

.dataset-hero-data {
  display: none;
}

/* =========================================
   MOBILE DATASET - FINAL OVERRIDE
   ========================================= */
@media screen and (max-width: 768px) {
  /* SECTION */
  #dataset {
    overflow-x: hidden;
  }

  #dataset > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  /* =========================
     HERO DATASET
     ========================= */
  .dataset-hero {
    display: block;

    min-height: 0;

    padding-top: 110px;
    padding-bottom: 36px;

    text-align: left;
  }

  .dataset-hero-copy {
    width: 100%;
    max-width: none;

    margin: 0;
  }

  .dataset-hero h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    word-break: normal;
  }

  .dataset-hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
  }

  /* Kalau visual tidak penting di HP */
  .dataset-hero-visual {
    display: none;
  }

  /* =========================
     SEARCH
     ========================= */
  .dataset-search-row {
    margin-bottom: 22px !important;
  }

  .dataset-search-wrapper .dataset-search-input {
    height: 58px;
    font-size: 0.95rem;
    border-radius: 14px;
    padding-left: 48px;
  }

  /* =========================
     TAB FILTER
     ========================= */
  .dataset-filter-tabs,
  .dataset-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .dataset-filter-tabs::-webkit-scrollbar,
  .dataset-tabs::-webkit-scrollbar {
    display: none;
  }

  .dataset-filter-tabs ul,
  .dataset-tabs ul {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 6px;
  }

  .dataset-filter-tabs a,
  .dataset-tabs a {
    font-size: 0.95rem;
    padding: 12px 10px;
  }

  /* =========================
     TOOLBAR
     ========================= */
  .dataset-toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    gap: 18px;
    margin-bottom: 24px !important;
    padding-top: 20px;
  }

  .dataset-result-count {
    width: 100%;
    font-size: 0.95rem;
  }

  .dataset-result-count strong {
    font-size: 1.3rem;
  }

  .dataset-toolbar-sort {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    gap: 8px;
  }

  .dataset-toolbar-sort label {
    font-size: 0.9rem;
  }

  .dataset-sort-select {
    width: 100%;
    min-height: 50px;
    border-radius: 10px;
    font-size: 1rem;
  }

  /* =========================
     VIEW TOGGLE
     ========================= */
  .dataset-view-toggle {
    align-self: flex-end;
  }

  /* =========================
     CARD
     ========================= */
  .dataset-card-column {
    display: block;
    width: 100%;
  }

  .dataset-card {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .dataset-card .card-body {
    padding: 22px 20px;
  }

  .dataset-card-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .dataset-card-description {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .dataset-card-metadata {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 18px;
  }

  /* =========================
     PAGINATION
     ========================= */
  .dataset-pagination-row {
    margin-top: 24px !important;
  }

  #dataset-pagination {
    justify-content: center;
    flex-wrap: wrap;
  }

}

/* =========================================================================
   Active State Indicator Line for Navmenu
   ========================================================================= */
.navmenu a {
  position: relative;
}

/* Horizontal line under active/hover text in mobile view */
.navmenu a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 20px;
  width: 0;
  height: 2px;
  background-color: var(--nav-hover-color, #CC3334);
  transition: width 0.3s ease;
}

.navmenu a.active::after {
  width: 30px;
  /* fixed underline length for mobile active */
}

/* Desktop Navigation Line Indicator Adjustments */
@media (min-width: 1200px) {
  .navmenu>ul>li>a::after {
    left: 15px;
    /* Aligns with padding-left */
    right: 15px;
    /* Aligns with padding-right */
    width: auto;
    bottom: 8px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  .navmenu>ul>li>a.active::after {
    transform: scaleX(1);
  }

  .navmenu>ul>li:hover>a::after {
    transform: scaleX(1);
  }

  /* Disable active line indicator inside dropdown menu list items */
  .navmenu .dropdown ul a::after {
    display: none;
  }
}

/* =========================================================================
   Interactive Pulse Dot for "Terbuka" (Open Data) Dataset Status
   ========================================================================= */
.status-dot.status-open,
.status-dot.status-open {
  background-color: #10B981 !important;
  position: relative;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: status-open-pulse 2s infinite ease-in-out;
}

@keyframes status-open-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* =========================================================================
   Dataset List View (Kaggle Style Row Card)
   ========================================================================= */
.dataset-row-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 4px solid transparent;
}

.dataset-row-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
  border-left: 4px solid var(--accent-color);
}

.dataset-row-title:hover {
  color: var(--accent-color) !important;
}

/* ==========================================================================
   HERO SECTION - SPLIT SCREEN (OPTION B)
   ========================================================================== */

/* Hero Container */
.hero-split {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px 0;
  /* Extra padding bottom for metric strip */
}

/* Badge Pill Pulse */
.badge-pill-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(204, 51, 52, 0.08);
  /* Primary brand color with opacity */
  border: 1px solid rgba(204, 51, 52, 0.2);
  color: #CC3334;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #CC3334;
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

/* Typography & Headline */
.hero-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  opacity: 0.85;
  text-align: justify !important;
}

/* CTA Button Shimmer */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  background: #CC3334;
  color: white;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.btn-shimmer:hover {
  background: #a82728;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(204, 51, 52, 0.25);
}

.btn-shimmer:hover::after {
  animation: shimmerSweep 1.5s ease;
}

.icon-shift {
  transition: transform 0.3s ease;
}

.btn-shimmer:hover .icon-shift {
  transform: translateX(4px);
}

/* Floating Hero Image */
.floating-hero {
  animation: heroFloat 4s ease-in-out infinite;
  max-width: 90%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
}

/* Bottom Metric Strip */

.stat-card-horizontal:hover .stat-icon {
  transform: scale(1.1);
  background: #CC3334;
  color: white;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.2;
}

.stat-content p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin: 0;
  opacity: 0.8;
  font-weight: 500;
}

/* Keyframes */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 51, 52, 0.6);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(204, 51, 52, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(204, 51, 52, 0);
  }
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes shimmerSweep {
  100% {
    left: 100%;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-metric-strip {
    position: relative;
    box-shadow: none;
    border-top: none;
    margin-top: 30px;
    padding: 10px 0;
  }

  .hero-split {
    padding: 60px 0 20px 0;
  }

  .hero-headline {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   Data & Informasi Terbaru Section (Homepage)
   ========================================================================== */

.latest-info {
  background-color: var(--color-bg-light);
  padding: 80px 0;
}

.latest-info .container {
  max-width: 1140px !important;
}

.latest-info-title {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.latest-info-accent,
.title-accent,
.subtitle-accent,
.page-title-accent,
.title-divider,
.section-title-accent {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.dataset-hero-copy::after,
.page-title::after,
.section-title h2::after,
.latest-info-header-wrap h2::after {
  content: none !important;
  display: none !important;
}

/* Header layout & vertical rhythm refinement */
.page-title {
  padding: 16px 0 10px 0 !important;
}

.services.section {
  padding-top: 16px !important;
}

.dataset-hero,
.dataset-hero {
  display: block !important;
  grid-template-columns: 1fr !important;
  min-height: 0 !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.dataset-hero-copy,
.dataset-hero-copy {
  max-width: 100% !important;
}

.dataset-hero-visual,
.dataset-hero-visual {
  display: none !important;
}

.latest-info-desc {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
  white-space: nowrap !important;
}

@media (max-width: 991px) {
  .latest-info-desc {
    white-space: normal !important;
  }
}

.latest-content-section {
  margin-bottom: 56px;
}

/* Ghost span inside latest-info-header-wrap should not be distracting */
.latest-info-header-wrap {
  padding-bottom: 0;
  margin-bottom: 60px !important;
  text-align: left !important;
}

/* Section-title h2 has margin-bottom: 20px by default;
   for the latest-info section the accent line sits directly below heading */
.latest-info-header-wrap h2 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: left !important;
}

/* Hide decorative ghost background span */
.latest-info-header-wrap span {
  display: none !important;
}

/* Scoped Heading Typography Rules */
.hero-headline,
.why-us-title,
.latest-info-header-wrap h2,
.latest-content-header,
.section-title h2,
.footer h4 {
  font-family: var(--font-heading) !important;
}

/* Scoped Body (Figtree) Typography Rules */
body,
p,
.card,
.card-title,
.dataset-card-title,
.visualization-card-title,
.publication-card-title,
.latest-info-desc,
.card-date,
.meta-label,
.visualization-cta-text,
.hero-desc,
.metric-counter,
.feature-desc,
.navmenu ul li a {
  font-family: var(--font-body) !important;
}

/* Section Header styling */
.latest-info-header-wrap h2 {
  color: var(--color-heading) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.latest-info-desc {
  color: var(--color-text) !important;
}

.section-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.section-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.latest-content-section:hover .section-icon {
  transform: scale(1.06);
}

.latest-content-header {
  font-size: calc(1.25rem - 5px) !important;
  font-weight: 700 !important;
  color: var(--color-heading) !important;
  letter-spacing: 0.5px !important;
}

.latest-content-subtitle {
  font-family: var(--font-body) !important;
  font-size: 0.925rem !important;
  color: var(--color-muted) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.latest-content-link {
  color: var(--color-primary) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
}

.latest-content-link:hover {
  color: #a02525 !important;
}

.latest-content-link:hover i {
  transform: translateX(4px);
}

.latest-content-link i {
  transition: transform 0.2s ease;
}

/* Cards Divider Line */
.card-footer-info {
  border-top: 1px solid var(--color-border) !important;
  padding-top: 16px !important;
}

/* ========================================================
   Shared Latest Content Card Base — white card shell
   Applied to all three card types: dataset, visualization, publication
   ======================================================== */
.latest-content-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.latest-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #374151;
}

/* ------------------------------------------------------------------
   Card Thumbnail Strip
   Compact visual header added to Visualisasi & Publikasi cards only.
   Height: 120px — tall enough to register, short enough to stay lean.
   ------------------------------------------------------------------ */
.card-thumb {
  width: calc(100% + 44px); /* Bleed past card's 22px side padding on each side */
  margin: -20px -22px 18px -22px; /* Pull flush to top/sides, push content below */
  height: 120px;
  border-radius: 10px 10px 0 0; /* Match card top corners */
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

/* Visualisasi — matching Publikasi thumbnail fit & container ratio */
.card-thumb--viz {
  width: calc(100% + 44px);
  margin: -20px -22px 18px -22px;
  height: auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
  padding: 16px 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viz-thumb-inner {
  width: calc(100% / 1.5);
  height: 180px;
  background: linear-gradient(135deg, #BA2E2E 0%, #8C1D1D 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(186, 46, 46, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visualization-card:hover .viz-thumb-inner {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(186, 46, 46, 0.25);
}

.card-thumb-icon {
  width: 56px;
  height: 56px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

/* Publikasi — full natural-size cover image, no fixed crop box */
.card-thumb--pub {
  width: calc(100% + 44px);
  margin: -20px -22px 18px -22px;
  height: auto; /* Let the image dictate height */
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
}

.card-thumb-img {
  width: calc(100% / 1.5); /* 1.5× smaller than full width */
  height: auto;
  display: block;
  margin: 0 auto; /* center horizontally */
}

/* Fallback when image missing/fails — subtle branded placeholder */
.card-thumb--fallback {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-thumb--fallback::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CC3334' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l5 5v13a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cline x1='9' y1='12' x2='15' y2='12'/%3E%3Cline x1='9' y1='16' x2='13' y2='16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.55;
}



/* ========================================================
   Content Card Design System (Publication, Dataset, Visualization)
   ======================================================== */
.publication-card,
.dataset-card,
.visualization-card {
  background: #FFFFFF !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 12px !important;
  padding: 20px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  position: relative !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: var(--color-text) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}


.publication-card:hover,
.dataset-card:hover,
.visualization-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04) !important;
  border-color: var(--color-border) !important;
}

.publication-card .publication-card-title,
.publication-card .card-title,
.dataset-card .dataset-card-title,
.visualization-card-title {
  font-family: var(--font-body) !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  line-height: 1.45 !important;
  text-align: left !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 12px !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  white-space: normal !important;
  text-overflow: clip !important;
  display: block !important;
  -webkit-line-clamp: none !important;
  overflow: visible !important;
  flex-grow: 1 !important;
  transition: color 0.2s ease !important;
}

.publication-card:hover .publication-card-title,
.publication-card:hover .card-title,
.dataset-card:hover .dataset-card-title,
.visualization-card:hover .visualization-card-title {
  color: var(--color-primary) !important;
}

.publication-card .card-date,
.dataset-card .card-date {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--color-muted) !important;
}

.publication-card .action-icon,
.dataset-card .action-icon {
  color: var(--color-muted) !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.publication-card:hover .action-icon,
.dataset-card:hover .action-icon {
  color: var(--color-primary) !important;
  transform: translateX(6px) !important;
}

/* Unique Dataset Card Elements */
.dataset-card .meta-label {
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: var(--color-muted) !important;
}

.dataset-card .meta-icon.bg-light-red {
  background-color: var(--color-badge) !important;
  color: var(--color-primary) !important;
}

/* Unique Visualization Card Elements */
.visualization-cta-text {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--color-primary) !important;
  transition: color 0.2s ease !important;
}

.visualization-cta-text:hover {
  color: #a02525 !important;
}

.visualization-action-icon {
  color: var(--color-primary) !important;
  font-size: 1.1rem !important;
  transition: transform 0.2s ease !important;
}

.visualization-card:hover .visualization-action-icon {
  transform: translateX(6px) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .latest-info-header-wrap h2 {
    font-size: 26px;
  }

  .latest-info-header-wrap span {
    font-size: 36px;
  }

  .latest-content-header {
    font-size: 1.1rem;
  }

  .latest-content-link {
    font-size: 0.85rem;
  }

  .latest-content-section {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {

  .visualization-card,
  .dataset-card {
    padding: 20px;
  }
}

/* Adjust hero positioning on dataset page */
.service-details-page #dataset.section {
  padding-top: 20px;
}

.service-details-page .dataset-hero {
  padding-top: 15px;
}

/* ========================================================
   Redesigned Premium Footer Scoped Styles
   ======================================================== */
.footer {
  color: #4A5568 !important;
  background-color: #F8FAFC !important;
  font-size: 14px;
  position: relative;
  border-top: 1px solid #E2E8F0 !important;
  padding-bottom: 20px !important;
}

.footer .footer-top {
  padding-top: 60px !important;
}

.footer h4 {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #1A202C !important;
  margin-bottom: 24px !important;
  padding-bottom: 0 !important;
  font-family: var(--font-heading) !important;
}

.footer .footer-about a {
  color: #1A202C !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  font-family: var(--font-heading) !important;
  letter-spacing: -0.02em !important;
  text-decoration: none !important;
}

.footer .footer-about .sitename {
  font-weight: 700 !important;
  color: #1A202C !important;
}

.footer .footer-contact p {
  color: #4A5568 !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  margin-bottom: 8px !important;
}

.footer .footer-contact strong {
  color: #2D3748 !important;
  font-weight: 600 !important;
}

.footer .footer-links {
  margin-bottom: 30px !important;
}

.footer .footer-links ul li {
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
}

.footer .footer-links ul a {
  color: #4A5568 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  line-height: 1.5 !important;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color) !important;
}

.footer .footer-links ul i {
  color: #A0AEC0 !important;
  font-size: 10px !important;
  margin-right: 8px !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.footer .footer-links ul li:hover i {
  color: var(--accent-color) !important;
  transform: translateX(2px) !important;
}

.footer .social-links a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid #E2E8F0 !important;
  background-color: #FFFFFF !important;
  font-size: 15px !important;
  color: #718096 !important;
  margin-right: 12px !important;
  transition: all 0.25s ease !important;
}

.footer .social-links a:hover {
  color: #FFFFFF !important;
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 6px -1px rgba(204, 51, 52, 0.2), 0 2px 4px -1px rgba(204, 51, 52, 0.1) !important;
}

.footer .copyright {
  margin-top: 40px !important;
  padding: 24px 0 !important;
  border-top: 1px solid #E2E8F0 !important;
  font-size: 0.85rem !important;
  color: #718096 !important;
}

.footer .copyright strong {
  font-weight: 600 !important;
  color: #4A5568 !important;
}

/* Mobile Responsive Adjustments for Footer */
@media (max-width: 767.98px) {
  .footer .footer-top {
    padding-top: 36px !important;
  }
  .footer .footer-about {
    padding-right: 6px !important;
  }
  .footer .footer-about a {
    font-size: 1.15rem !important;
  }
  .footer .footer-contact {
    padding-top: 0.5rem !important;
  }
  .footer .footer-contact p {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    margin-bottom: 4px !important;
  }
  .footer .footer-links {
    padding-left: 6px !important;
    margin-bottom: 0 !important;
  }
  .footer .footer-links h4 {
    margin-bottom: 12px !important;
  }
  .footer .footer-links ul li {
    padding: 5px 0 !important;
  }
  .footer .footer-links ul a {
    font-size: 0.82rem !important;
  }
  .footer .footer-social {
    margin-top: 8px !important;
  }
  .footer .copyright {
    margin-top: 24px !important;
    padding: 16px 0 !important;
    font-size: 0.8rem !important;
  }
}


/* ========================================================
   Redesigned Dataset Listing Back Button Styles
   ======================================================== */
.dataset-back-btn {
  display: flex !important;
  width: fit-content !important;
  align-items: center !important;
  gap: 8px !important;
  color: #718096 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  margin-bottom: 15px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-family: var(--font-body) !important;
}

.dataset-back-btn i {
  font-size: 1.1rem !important;
  transition: transform 0.2s ease !important;
}

.dataset-back-btn:hover {
  color: var(--accent-color) !important;
}

.dataset-back-btn:hover i {
  transform: translateX(-4px) !important;
}





/* --- Modul: disable-aos-animation-delay-on-mobile-devices.css --- */
/* Disable aos animation delay on mobile devices */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/* --- Modul: featured-services-section.css --- */
/* Featured Services Section */

.featured-services {
  --surface-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding-top: 0;
}

.featured-services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}



/* --- Modul: global-page-titles-breadcrumbs.css --- */
/* Global Page Titles & Breadcrumbs */

.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/* --- Modul: global-section-titles.css --- */
/* Global Section Titles */

.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}



/* --- Modul: global-sections.css --- */
/* Global Sections */

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}



/* --- Modul: hero-section.css --- */
/* Hero Section */

.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}

/* .hero {
    background-image: url('/assets/img/gradasi.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* atau sesuai kebutuhan */
/*width: 100%;
} */


.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



/* --- Modul: meta.css --- */
/**
* Template Name: eNno
* Template URL: https://bootstrapmade.com/enno-free-simple-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
:root {
  /* Primary Typography System */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;

  /* Aliases to ensure backward compatibility with existing components */
  --default-font: var(--font-body);
  --heading-font: var(--font-heading);
  --nav-font: var(--font-body);

  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  /* Centralized Design Tokens */
  --color-primary: #BA2E2E;
  --color-bg-light: #F9FAFB;
  --color-footer-dark: #111827;
  --color-heading: #111827;
  --color-text: #4B5563;
  --color-muted: #6B7280;
  --color-badge: #FDF2F2;
  --color-border: #E5E7EB;

  /* Mapped Variables */
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: var(--color-text);
  /* Slate grey for default text */
  --heading-color: var(--color-heading);
  /* Navy slate dark for headings */
  --accent-color: var(--color-primary);
  /* Accent color representing MKRI */
  --accent-color-dark: #a02525;
  /* Darker variant for hover */
  --accent-color-light: var(--color-badge);
  /* Lighter variant for soft backgrounds */
  --surface-color: #ffffff;
  --surface-color-dark: var(--color-footer-dark);
  /* Dark navy for stat panel */
  --contrast-color: #ffffff;
  /* Contrast color for text */

  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  --nav-color: #1E293B;
  /* The default color of the main navmenu links */
  --nav-hover-color: #CC3334;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #475569;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #CC3334;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */

  /* Smooth scroll dinonaktifkan secara global karena berkonflik dengan AOS (Animate on Scroll) di Google Chrome, menyebabkan rendering patah-patah (stuttering). */
  /* scroll-behavior: smooth; */
}

/* Mematikan paksa smooth scroll bawaan Bootstrap 5 yang tersembunyi di :root */
html, :root {
  scroll-behavior: auto !important;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #CC3334;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #CC3334;
  --contrast-color: #ffffff;
}



/* --- Modul: navigasi-header.css --- */
/* Global Header */

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


/* --- Modul: navigasi.css --- */
/* =========================================
   VARIABEL GLOBAL (CSS VARIABLES)
   ========================================= */
:root {
    --warna-utama: #b30000;
    --warna-utama-gelap: #8a0000;
    --warna-teks-putih: #ffffff;
    --warna-teks-gelap: #012970;
    --font-utama: 'Inter', sans-serif;
    --font-judul: 'Playfair Display', serif;
}

/* =========================================
   PENGATURAN GLOBAL
   ========================================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Jarak kompensasi untuk fixed header */
}

/* =========================================
   GAYA NAVIGASI (HEADER)
   ========================================= */
.navigasi-utama {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease-in-out;
    background-color: transparent; /* Awal Transparan */
}

/* Modifikasi untuk halaman dalam (selain Home) agar tidak menutupi konten (keluar dari normal flow) */
.navigasi-statis {
    position: sticky;
    padding: 15px 0; /* Padding lebih kecil untuk header statis */
}

/* =========================================
   NAVBAR HALAMAN INTERNAL / 404
   ========================================= */
.navigasi-utama.halaman-internal {
    position: sticky;
    top: 0;

    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

    padding: 12px 0;

    z-index: 1000;
}

/* Teks logo jadi gelap */
.navigasi-utama.halaman-internal .teks-logo {
    color: var(--warna-teks-gelap);
}

/* Menu jadi gelap */
.navigasi-utama.halaman-internal .navigasi-menu a {
    color: var(--warna-teks-gelap);
}

/* Hover / aktif */
.navigasi-utama.halaman-internal .navigasi-menu a:hover,
.navigasi-utama.halaman-internal .navigasi-menu a.aktif {
    color: var(--warna-utama);
    border-bottom-color: var(--warna-utama);
}

/* Hamburger mobile jadi gelap */
.navigasi-utama.halaman-internal .tombol-nav-mobile {
    color: var(--warna-teks-gelap);
}

.navigasi-wadah {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95%; /* Sesuai spesifikasi: wide spread */
    margin: 0 auto;
    padding: 0 20px;
}

/* Bagian Logo (Kiri) */
.navigasi-kiri {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ikon-logo {
    height: 45px; /* Sesuaikan dengan rasio logo Garuda Anda */
    width: auto;
}

.teks-logo {
    font-family: var(--font-judul);
    font-size: 1.4rem; /* Sesuai spesifikasi */
    color: var(--warna-teks-putih);
    transition: color 0.4s ease;
}

/* Menu Navigasi (Kanan) */
.navigasi-menu ul {
    list-style: none;
    display: flex;
    gap: 40px; /* Jarak antar menu sedikit diperlebar agar seimbang */
    margin: 0;
    padding: 0;
}

.navigasi-menu a {
    font-family: var(--font-utama);
    color: var(--warna-teks-putih);
    text-decoration: none;
    font-size: 1rem; /* Ukuran standar */
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.navigasi-menu a:hover,
.navigasi-menu a.aktif {
    color: var(--warna-teks-putih);
    border-bottom: 2px solid var(--warna-utama);
}

/* =========================================
   EFEK SAAT HALAMAN DI-SCROLL
   ========================================= */
.navigasi-tergulir {
    background-color: rgba(255, 255, 255, 0.98); /* Putih Solid */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Bayangan Halus */
    padding: 10px 0; /* Mengecil sedikit saat tergulir */
}

.navigasi-tergulir .teks-logo {
    color: var(--warna-teks-gelap); /* Teks logo gelap saat tergulir */
}

.navigasi-tergulir .navigasi-menu a {
    color: var(--warna-teks-gelap); /* Teks menu gelap saat tergulir */
}

.navigasi-tergulir .navigasi-menu a:hover,
.navigasi-tergulir .navigasi-menu a.aktif {
    color: var(--warna-utama); /* Teks merah saat aktif/hover di state tergulir */
    border-bottom: 2px solid var(--warna-utama);
}

/* =========================================
   RESPONSIVITAS NAVIGASI (MEDIA QUERIES)
   ========================================= */
/*
@media screen and (max-width: 768px) {
    .navigasi-wadah {
        padding: 0 15px;
    }

    .ikon-logo {
        height: 35px; /* Perkecil logo */
/*
    }

    .teks-logo {
        font-size: 1.1rem; /* Perkecil nama institusi */
 /*   }

    .navigasi-menu {
        display: none; /* Sembunyikan menu berjejer pada mobile untuk mencegah layout rusak */
/*    }
}*/

/* =========================================
   TOMBOL MOBILE
   ========================================= */

.tombol-nav-mobile {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;
    outline: 0;
    box-shadow: none;

    background: transparent;

    cursor: pointer;

    position: relative;
    z-index: 10002;
}


.tombol-nav-mobile span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: currentColor;

    border-radius: 5px;

    transition: 0.25s ease;
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 768px) {

    .navigasi-utama {
        padding: 14px 0;
    }


    .navigasi-wadah {
        max-width: 100%;
        padding: 0 18px;
    }


    .ikon-logo {
        height: 34px;
    }


    .teks-logo {
        font-size: 1.05rem;
    }


    /* Hamburger */

    .tombol-nav-mobile {
        display: block;

        color: #ffffff;

        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }


    .navigasi-tergulir .tombol-nav-mobile {
        color: var(--warna-teks-gelap);
    }


    /* =========================
       MENU MOBILE DEFAULT
       ========================= */

    .navigasi-menu > ul {
        display: none;
    }


    /* =========================
       SAAT MENU DIBUKA
       ========================= */

    body.menu-mobile-aktif {
        overflow: hidden;
    }


    body.menu-mobile-aktif .navigasi-menu {
        position: fixed;

        inset: 0;

        width: 100%;
        height: 100dvh;

        background: rgba(20, 24, 30, 0.72);

        z-index: 10000;
    }


    body.menu-mobile-aktif .navigasi-menu > ul {

        display: flex;

        position: absolute;

        top: 85px;
        left: 20px;
        right: 20px;

        margin: 0;
        padding: 20px 0;

        flex-direction: column;
        gap: 0;

        list-style: none;

        background: rgba(255, 255, 255, 0.94);

        border-radius: 14px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.2);

        overflow-y: auto;

        max-height: calc(100dvh - 110px);

        z-index: 10001;
    }


    body.menu-mobile-aktif .navigasi-menu li {
        width: 100%;
    }


    body.menu-mobile-aktif .navigasi-menu a {

        display: block;

        width: 100%;

        padding: 16px 28px;

        color: #5f687b !important;

        font-family: var(--font-utama);

        font-size: 17px;
        font-weight: 600;

        text-decoration: none;

        border: 0 !important;
    }


    body.menu-mobile-aktif .navigasi-menu a:hover,
    body.menu-mobile-aktif .navigasi-menu a.aktif {

        color: var(--warna-utama) !important;

        background: rgba(179, 0, 0, 0.04);
    }


    /* =========================
       HAMBURGER MENJADI X
       ========================= */

    body.menu-mobile-aktif .tombol-nav-mobile {

        position: fixed;

        top: 17px;
        right: 18px;

        color: #ffffff;

        background: transparent !important;

        z-index: 10003;
    }


    body.menu-mobile-aktif
    .tombol-nav-mobile span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);
    }


    body.menu-mobile-aktif
    .tombol-nav-mobile span:nth-child(2) {

        opacity: 0;
    }


    body.menu-mobile-aktif
    .tombol-nav-mobile span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}


/* --- Modul: navigation-menu.css --- */
/* Navigation Menu */

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: rgba(0, 0, 0, 0.06);
  }

  .navmenu .dropdown:hover>a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile Floating Bubble Menu */
@media (max-width: 1199px) {
  .header {
    position: relative;
  }

  .header .container-fluid {
    position: relative;
  }

  .mobile-nav-toggle {
    color: var(--nav-color, #1A202C);
    font-size: 26px;
    line-height: 1;
    margin-right: 0;
    padding: 4px 6px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10000;
  }

  .mobile-nav-toggle:hover {
    color: var(--color-primary, #CC3334);
  }

  .navmenu {
    position: relative;
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 220px !important;
    max-width: calc(100vw - 24px) !important;
    padding: 8px !important;
    margin: 0 !important;
    border-radius: 16px !important;
    background: #FFFFFF !important;
    border: 1px solid rgba(229, 231, 235, 0.9) !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    z-index: 9999 !important;
    list-style: none !important;
    overflow: hidden !important;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .mobile-nav-active .navmenu ul {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  .navmenu ul li {
    width: 100% !important;
    margin: 2px 0 !important;
    padding: 0 !important;
  }

  .navmenu ul li a,
  .navmenu ul li a:focus {
    color: #374151 !important;
    padding: 10px 14px !important;
    font-family: var(--font-body, sans-serif) !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: background-color 0.18s ease, color 0.18s ease !important;
    background: transparent !important;
    white-space: nowrap !important;
  }

  .navmenu ul li a:hover {
    background-color: rgba(204, 51, 52, 0.07) !important;
    color: var(--color-primary, #CC3334) !important;
  }

  .navmenu ul li a.active,
  .navmenu ul li a.active:focus {
    color: var(--color-primary, #CC3334) !important;
    font-weight: 700 !important;
    background-color: rgba(204, 51, 52, 0.08) !important;
  }

  .navmenu ul li a.active::after {
    display: none !important;
  }

  .navmenu .mobile-nav-arrow {
    font-size: 0.75rem !important;
    opacity: 0.4 !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
  }

  .navmenu ul li a:hover .mobile-nav-arrow,
  .navmenu ul li a.active .mobile-nav-arrow {
    opacity: 1 !important;
    color: var(--color-primary, #CC3334) !important;
    transform: translateX(3px) !important;
  }

  .mobile-nav-active {
    overflow: visible !important;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--color-primary, #CC3334) !important;
    position: relative !important;
    font-size: 26px !important;
    top: auto !important;
    right: auto !important;
    margin-right: 0 !important;
    z-index: 10000 !important;
  }

  .mobile-nav-active .navmenu {
    position: relative !important;
    inset: auto !important;
    background: transparent !important;
  }
}



/* --- Modul: pagination-styles.css --- */
/* Pagination Styles */

.pagination {
  margin-top: 2rem;
}

.pagination .page-link {
  color: var(--accent-color);
  border-color: #dee2e6;
  padding: 0.5rem 0.75rem;
}

.pagination .page-link:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.pagination .page-item.active .page-link {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}



/* --- Modul: portfolio-details-section.css --- */
/* Portfolio Details Section */

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}



/* --- Modul: portfolio-section.css --- */
/* Portfolio Section */

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}



/* --- Modul: preloader.css --- */
/* Preloader */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* --- Modul: publikasi-custom-css.css --- */
/* Publikasi Custom CSS */

@media (min-width: 1200px) {
  .col-xl-20p {
    flex: 0 0 auto;
    width: 20%;
  }
}

.publikasi-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.publikasi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.publikasi-img-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eaeaea;
}

.publikasi-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: none !important;
  transform: none !important;
}

.publikasi-card:hover .publikasi-img-wrapper img {
  transform: none !important;
}

.publikasi-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  background: #CC3334;
  color: white;
}

.publikasi-badge.publikasi-statistik {
  background: #28a745;
}

.publikasi-badge.buku {
  background: #17a2b8;
}

.publikasi-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.publikasi-title {
  font-size: 14px;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0px;
  line-height: 1.4;
  text-align: justify !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.publikasi-title:hover {
  color: #CC3334;
}

.publikasi-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.publikasi-meta {
  padding-top: 5px;
  border-top: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  color: #888;
}

.publikasi-meta i {
  color: #CC3334;
  margin-right: 5px;
}

/* Base Grid View - Hide extra elements */
#publikasi-container:not(.publikasi-list-view) .publikasi-desc,
#publikasi-container:not(.publikasi-list-view) .publikasi-badge,
#publikasi-container:not(.publikasi-list-view) .file-size,
#publikasi-container:not(.publikasi-list-view) .publikasi-meta i {
  display: none;
}

/* List View Modes */
.publikasi-list-view .publikasi-card {
  flex-direction: row;
  height: 100%;
}

.publikasi-list-view .publikasi-img-wrapper {
  width: 250px;
  height: 100%;
  aspect-ratio: auto;
  min-height: 200px;
  border-bottom: none;
  border-right: 1px solid #eaeaea;
}

.publikasi-list-view .publikasi-img-wrapper img {
  object-fit: cover;
}

.publikasi-list-view .publikasi-body {
  width: calc(100% - 250px);
  flex-grow: 1;
  padding: 20px;
}

.publikasi-list-view .publikasi-title {
  margin-bottom: 12px;
  font-size: 18px;
}

.publikasi-list-view .publikasi-meta {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  justify-content: space-between;
  font-size: 13px;
}

.publikasi-list-view .publikasi-meta i {
  display: inline-block;
}

@media (max-width: 768px) {

  /* Mobile List View */
  .publikasi-list-view .publikasi-img-wrapper {
    width: 120px;
    min-height: 140px;
    border-right: 1px solid #eaeaea;
  }

  .publikasi-list-view .publikasi-body {
    width: calc(100% - 120px);
    padding: 15px;
  }

  .publikasi-list-view .publikasi-title {
    font-size: 15px;
    -webkit-line-clamp: 2;
    margin-bottom: 8px;
  }

  .publikasi-list-view .publikasi-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
  }

  .publikasi-list-view .publikasi-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-top: 10px;
    font-size: 11px;
  }

  .publikasi-list-view .publikasi-badge {
    font-size: 9px;
    padding: 4px 8px;
    top: 10px;
    left: 10px;
  }
}

/* ========================================================
   Back Link (Text Navigation Style)
   ======================================================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--color-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.back-link:hover {
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

.back-link i {
  font-size: 1.1rem !important;
  transition: transform 0.2s ease !important;
}

.back-link:hover i {
  transform: translateX(-3px) !important;
}

/* --- Modul: redesigned-dataset-detail-section-custom-styles.css --- */
/* Redesigned Dataset Detail Section Custom Styles */

#dataset-details .service-box {
  background-color: #ffffff;
  padding: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

#dataset-details .service-box h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2D3748;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

#dataset-details .services-list {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#dataset-details .services-list a {
  color: #ffffff;
  background-color: var(--accent-color, #CC3334);
  border: 1px solid var(--accent-color, #CC3334);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-top: 0;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  /* Tanpa animasi hover */
  transition: none;
  pointer-events: none; /* Bersifat label informasi murni, non-interaktif */
}

#dataset-details .services-list a.active {
  color: var(--contrast-color, #ffffff);
  background-color: var(--accent-color, #CC3334);
  border-color: var(--accent-color, #CC3334);
}

#dataset-details .services-list a:hover {
  background-color: var(--accent-color, #CC3334);
  color: var(--contrast-color, #ffffff);
  border-color: var(--accent-color, #CC3334);
  transform: none;
}

#dataset-details .download-catalog {
  display: flex;
  flex-direction: column;
}

#dataset-details .download-catalog a {
  color: #4A5568;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

#dataset-details .download-catalog a:last-child {
  margin-bottom: 0;
}

#dataset-details .download-catalog a i {
  font-size: 20px;
  margin-right: 12px;
  color: var(--accent-color, #CC3334);
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Animasi hover interaktif untuk Download Catalog & Metadata Statistik */
#dataset-details .download-catalog a:hover {
  color: var(--accent-color, #CC3334);
  background-color: color-mix(in srgb, var(--accent-color, #CC3334), transparent 94%);
  border-color: color-mix(in srgb, var(--accent-color, #CC3334), transparent 85%);
  transform: translateX(5px);
}

#dataset-details .download-catalog a:hover i {
  color: color-mix(in srgb, var(--accent-color, #CC3334), #000 15%);
  transform: scale(1.18);
}

#metadata-toggle-btn {
  color: #718096;
  transition: color 0.2s ease;
}

#metadata-toggle-btn:hover {
  color: var(--accent-color);
}

/* Dataset details title area */
#dataset-title {
  font-size: 28px;
  font-weight: 700;
  color: #2D3748;
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 100%;
  text-align: justify;
}

#dataset-description {
  font-size: 15px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 100%;
  text-align: justify;
}

/* Data Preview Table Redesign */
#dataset-details .dataset-preview {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 32px;
}

#json-table-container {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background-color: #ffffff;
}

#json-table-container .table-header {
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  padding: 14px 20px;
}

#json-table-container .table-header span {
  font-size: 14px;
  font-weight: 600;
  color: #2D3748;
}

#json-table-container .table-header i {
  color: var(--accent-color);
}

/* #table-content table {
  margin-bottom: 0;
  border: 0;
} */
#table-content table {
  margin-bottom: 0;
  border: 0;
  white-space: nowrap;
}

#table-content .table-responsive {
  max-height: 520px;
  overflow: auto;
}

#table-content table thead th {
  background-color: #F9FAFB;
  color: #4A5568;
  font-weight: 600;
  /* font-size: 13px; */
  font-size: 12px;
  border-bottom: 2px solid #E5E7EB;
  border-top: 0;
  /* padding: 12px 16px; */
  padding: 8px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#table-content table tbody td {
  /* padding: 12px 16px;
  font-size: 13.5px; */
  padding: 7px 10px;
  font-size: 13px;
  color: #4A5568;
  border-color: #F3F4F6;
}

#table-content table tbody tr:hover td {
  background-color: #F9FAFB;
}

#table-content .text-center {
  padding: 40px 20px;
}

#table-content .spinner-border {
  color: var(--accent-color);
}

/* Metadata Dataset Redesign */
#dataset-details .metadata-card {
  border: 0;
  box-shadow: none;
  background-color: transparent;
  margin-top: 32px;
}

#dataset-details .metadata-card .card-header {
  background-color: transparent;
  border-bottom: 1px solid #E5E7EB;
  padding: 0 0 12px 0;
  margin-bottom: 20px;
}

#dataset-details .metadata-card .card-header h5 {
  font-size: 16px;
  font-weight: 700;
  color: #2D3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

#dataset-details .metadata-card .card-header h5 i {
  color: var(--accent-color);
  margin-right: 8px;
}

#dataset-details .metadata-card .card-body {
  padding: 0;
}

#metadata-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}

#metadata-table tbody tr {
  background-color: transparent;
  border-bottom: 1px solid #F3F4F6;
}

#metadata-table tbody tr:hover {
  background-color: #F9FAFB;
}

#metadata-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  border: 0;
  background-color: transparent;
  box-shadow: none;
}

#metadata-table tbody td:first-child {
  width: 30%;
  font-weight: 600;
  color: #4A5568;
  padding-left: 0;
}

#metadata-table tbody td:last-child {
  color: #2D3748;
  padding-right: 0;
}

/* Mobile Stacking Logic using display: contents */
@media (max-width: 991.98px) {
  .dataset-details-row {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important; /* Fix negative margin from bootstrap row overlapping back link */
  }

  .dataset-sidebar-col,
  .dataset-content-col {
    display: contents !important;
  }

  #dataset-title {
    order: 1;
    font-size: 22px !important; /* Smaller on mobile */
    padding: 0 15px; /* Restore column padding lost by display:contents */
    margin-top: 15px;
  }

  #dataset-description {
    order: 2;
    padding: 0 15px;
  }

  /* 3. Format Tersedia */
  .format-box {
    order: 3;

    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px;
  }

  /* 4. Download Dataset */
  .download-box {
    order: 4;

    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px;
  }

  /* 5. Metadata Statistik */
  .meta-stat-box {
    order: 5;

    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
  }

  /* 6. Tabel Data */
  #dataset-details .dataset-preview {
    order: 6;

    width: calc(100% - 30px);

    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 28px;
  }
  /* 7. Metadata Dataset */
  #dataset-details .metadata-card {
    order: 7;

    width: calc(100% - 30px);

    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
  }

  /* Card sidebar */
  #dataset-details .service-box {
    width: auto;

    padding: 20px;

    border-radius: 14px;

    box-sizing: border-box;
  }

  /* Jangan justify di mobile */
  #dataset-title,
  #dataset-description {
    text-align: left !important;
  }

  /* Tabel tetap bisa digeser horizontal */
  #table-content .table-responsive {
    width: 100%;

    overflow-x: auto;
    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
  }

  #table-content table {
    width: max-content;
    min-width: 100%;

    white-space: nowrap;
  }
}

/* =========================================
   DATASET TABLE - COMPACT
   DESKTOP + MOBILE
   ========================================= */

#table-content table {
    width: 100%;
    margin: 0;

    border-collapse: collapse;

    /* Jangan kasih tinggi paksa */
    height: auto !important;
}


/* =========================
   HEADER
   ========================= */

#table-content table thead,
#table-content table thead tr {
    height: auto !important;
    min-height: 0 !important;
}

#table-content table thead th {
    height: auto !important;
    min-height: 0 !important;

    padding: 10px 12px !important;

    font-size: 12px;
    line-height: 1.3;

    vertical-align: middle;

    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================
   BODY
   ========================= */

#table-content table tbody tr {
    height: auto !important;
    min-height: 0 !important;
}

#table-content table tbody td {
    height: auto !important;
    min-height: 0 !important;

    padding: 9px 12px !important;

    font-size: 13px;
    line-height: 1.4;

    vertical-align: top;

    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
}


/* Hilangkan margin elemen dalam cell */
#table-content table th > *,
#table-content table td > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* --- Modul: redesigned-dataset-section-custom-styles.css --- */
/* Redesigned Dataset Section Custom Styles */

.dataset-search-wrapper {
  position: relative;
  width: 100%;
}

.dataset-search-wrapper .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 18px;
  pointer-events: none;
}

.dataset-search-wrapper .dataset-search-input {
  width: 100%;
  height: 54px;
  padding-left: 50px;
  padding-right: 20px;
  font-size: 15px;
  color: #2D3748;
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
}

.dataset-search-wrapper .dataset-search-input:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  background-color: #ffffff;
}

.dataset-result-count {
  font-size: 15px;
  color: #4A5568;
}

.dataset-sort-wrapper {
  position: relative;
  min-width: 130px;
}

.dataset-sort-select {
  font-size: 14px;
  font-weight: 500;
  color: #2D3748;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 6px 36px 6px 12px;
  background-color: #ffffff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%232D3748' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.dataset-sort-select:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  background-color: #ffffff;
}

/* Custom Dataset Card */
.dataset-card {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dataset-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dataset-card-label {
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color, #CC3334);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent !important;
  margin-bottom: 8px;
}

.dataset-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2D3748;
  line-height: 1.3;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.dataset-card-description {
  font-size: 14px;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dataset-card-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 10px;
}

.dataset-card-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease;
}

.dataset-card:hover .dataset-card-logo-img {
  transform: scale(1.06);
}

.dataset-card-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.metadata-chip {
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  color: #4A5568;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
}

.dataset-card-footer {
  margin-top: auto;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
}

.dataset-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.dataset-card-cta-restricted,
.footer-restricted .status-kunci {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: #B45309;
}

.footer-restricted .status-kunci i {
  font-size: 1rem;
}

/* Hover effects */
.dataset-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateY(-3px);
}

.dataset-card:hover .dataset-card-title {
  color: var(--accent-color);
}

.dataset-card:hover .dataset-card-cta {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.dataset-card:hover .dataset-card-cta-restricted {
  color: #92400E;
}

.dataset-card:hover .dataset-card-cta i {
  transform: translateX(4px);
}

.dataset-card:hover .dataset-card-cta-restricted i {
  transform: none;
}

.dataset-card-cta i {
  transition: transform 0.2s ease-in-out;
  display: inline-block;
}

/* Pagination modern styling tweaks */
.pagination .page-item .page-link {
  border-radius: 6px;
  margin: 0 3px;
  border: 1px solid #E5E7EB;
}

/* Empty state design */
.empty-state-wrapper {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Dataset catalog presentation */
#dataset {
  --dataset-border: #e6e8eb;
  --dataset-charcoal: #25282d;
  --dataset-muted: #68717c;
  --dataset-surface: #ffffff;
}

#dataset .dataset-section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

#dataset .dataset-section-heading span {
  color: var(--accent-color);
  letter-spacing: 0.14em;
}

#dataset .dataset-section-heading h2 {
  max-width: 680px;
  color: var(--dataset-charcoal);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
  margin: 10px auto 12px;
}

#dataset .dataset-section-heading p {
  max-width: 620px;
  color: var(--dataset-muted);
  line-height: 1.7;
}

#dataset .dataset-search-row {
  margin-bottom: 26px !important;
}

#dataset .dataset-search-wrapper .dataset-search-input {
  height: 60px;
  padding-left: 54px;
  border-color: var(--dataset-border);
  border-radius: 10px;
  color: var(--dataset-charcoal);
  box-shadow: 0 8px 24px rgba(37, 40, 45, 0.035);
}

#dataset .dataset-search-wrapper .search-icon {
  left: 21px;
  color: #7b838c;
  transition: color 0.2s ease;
}

#dataset .dataset-search-wrapper:focus-within .search-icon {
  color: var(--accent-color);
}

#dataset .dataset-search-wrapper .dataset-search-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(204, 51, 52, 0.1), 0 8px 24px rgba(37, 40, 45, 0.04);
}

#dataset .dataset-toolbar {
  margin-bottom: 28px !important;
}

#dataset .dataset-result-count {
  color: var(--dataset-charcoal);
  font-size: 15px;
}

#dataset .dataset-result-count strong {
  font-size: 18px;
  font-weight: 700;
}

#dataset .dataset-toolbar-sort label {
  color: var(--dataset-muted) !important;
  font-size: 13px;
}

#dataset .dataset-sort-wrapper {
  min-width: 142px;
}

#dataset .dataset-sort-select {
  min-height: 38px;
  border-color: var(--dataset-border);
  border-radius: 8px;
  box-shadow: none;
}

#dataset .dataset-sort-select:hover {
  border-color: #c7ccd2;
}

#dataset .dataset-card-column {
  display: flex;
}

#dataset .dataset-card {
  width: 100%;
  max-width: 380px;
  /* Membatasi lebar maksimal card */
  margin: 0 auto;
  /* Memusatkan card di dalam kolom */
  padding: 20px 20px 18px;
  /* Dikurangi dari 26px */
  border-color: var(--dataset-border);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(37, 40, 45, 0.035);
}

#dataset .dataset-card-body {
  min-width: 0;
}

#dataset .dataset-card-label {
  margin-bottom: 8px;
  /* Dikurangi dari 13px */
  color: var(--accent-color);
  font-size: 10px;
  letter-spacing: 0.16em;
}

#dataset .dataset-card-title {
  margin-bottom: 8px;
  /* Dikurangi dari 12px */
  color: var(--dataset-charcoal);
  font-size: 18px;
  /* Sedikit lebih kecil */
  line-height: 1.25;
}

#dataset .dataset-card-description {
  margin-bottom: 16px;
  /* Dikurangi dari 22px */
  color: var(--dataset-muted);
  line-height: 1.5;
}

#dataset .dataset-card-metadata {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 12px 0;
  /* Dikurangi dari 17px 0 16px */
  border-top: 1px solid #eef0f2;
  border-bottom: 1px solid #eef0f2;
}

#dataset .dataset-card-meta-item {
  min-width: 0;
}

#dataset .dataset-card-meta-label {
  display: block;
  margin-bottom: 6px;
  color: #89919a;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#dataset .dataset-card-meta-value {
  display: block;
  overflow: hidden;
  color: var(--dataset-charcoal);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#dataset .dataset-card-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  white-space: normal;
}

#dataset .metadata-chip {
  padding: 3px 6px;
  border-color: #dfe3e7;
  border-radius: 4px;
  background: #f8f9fa;
  color: #59616b;
  font-size: 10px;
  letter-spacing: 0.03em;
}

#dataset .dataset-card-status {
  margin: 15px 0 0;
}

#dataset .status-dot {
  width: 7px;
  height: 7px;
  background: #8c949d;
}

#dataset .status-dot.status-open {
  background: var(--accent-color);
}

#dataset .status-text {
  color: var(--dataset-muted);
  font-size: 12px;
}

#dataset .dataset-card-footer {
  padding-top: 16px;
  border-top: 0;
}

#dataset .dataset-card-cta {
  justify-content: space-between;
  width: 100%;
  color: var(--dataset-charcoal);
  font-size: 13px;
}

#dataset .dataset-card-cta i {
  color: #7f8790;
  font-size: 17px;
}

#dataset .dataset-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 12px 28px rgba(37, 40, 45, 0.1);
  transform: translateY(-4px);
}

#dataset .dataset-card:hover .dataset-card-title,
#dataset .dataset-card:hover .dataset-card-cta,
#dataset .dataset-card:hover .dataset-card-cta i {
  color: var(--accent-color);
}

#dataset .empty-state-wrapper {
  max-width: 560px;
  padding: 48px 24px;
  border-color: var(--dataset-border);
  box-shadow: none;
}

#dataset .empty-state-icon {
  display: block;
  margin-bottom: 16px;
  color: #a0a7ae;
  font-size: 42px;
}

#dataset .empty-state-title {
  margin-bottom: 8px;
  color: var(--dataset-charcoal);
  font-size: 20px;
}

#dataset .empty-state-copy {
  margin-bottom: 18px;
  color: var(--dataset-muted);
}

#dataset .dataset-empty-action {
  border-radius: 6px;
  font-size: 13px;
}

#dataset #dataset-pagination {
  margin-top: 4px;
}

#dataset #dataset-pagination .page-link {
  min-width: 36px;
  border-color: transparent;
  border-radius: 6px;
  color: var(--dataset-muted);
  text-align: center;
}

#dataset #dataset-pagination .page-link:hover,
#dataset #dataset-pagination .page-item.active .page-link {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #fff;
}

#dataset #dataset-pagination .page-item.disabled .page-link {
  opacity: 0.45;
}

@media (max-width: 767.98px) {
  #dataset .dataset-section-heading {
    margin-bottom: 26px;
  }

  #dataset .dataset-section-heading h2 {
    font-size: 2rem;
  }

  #dataset .dataset-toolbar-sort {
    justify-content: flex-start !important;
  }

  #dataset .dataset-card {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  #dataset .dataset-card-metadata {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #dataset .dataset-card-format-item {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   TAB FILTER DATASET (UNDERLINED TABS - CLEAN & FORMAL)
   ========================================================================== */
.dataset-filter-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.filter-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 4px;
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -1px;
}

.filter-tab:hover {
  color: #0F172A;
}

/* Status Tab Aktif */
.filter-tab.aktif {
  color: var(--accent-color, #CC3334);
  border-bottom-color: var(--accent-color, #CC3334);
  font-weight: 600;
}

/* Badge Angka Counter */
.filter-tab .badge-count {
  background-color: #F1F5F9;
  color: #64748B;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Badge Angka Counter saat Aktif */
.filter-tab.aktif .badge-count {
  background-color: color-mix(in srgb, var(--accent-color, #CC3334), transparent 90%);
  color: var(--accent-color, #CC3334);
}

/* Ikon Gembok pada Tab Terbatas */
.filter-tab i.bi-lock-fill {
  font-size: 0.95rem;
  margin-right: -2px;
}

/* Badges for status in cards */
.status-restricted {
  background-color: #D97706 !important;
}

.status-text-restricted {
  color: #B45309;
  font-weight: 600;
}

/* ==========================================================================
   EFEK BLUR & OVERLAY (CLEAN UI & INSTITUTIONAL STANDARD)
   ========================================================================== */

/* Efek Blur pada Tabel Dummy */
.restricted-blur {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  opacity: 0.6;
}

.tabel-preview-container {
  position: relative;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
}

/* Kartu Overlay di Atas Tabel */
.overlay-splp-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 32px 40px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 500px;
  width: 90%;
  z-index: 10;
}

.overlay-splp-card .icon-kunci {
  font-size: 2rem;
  color: #B45309;
  margin-bottom: 12px;
  display: inline-block;
}

.overlay-splp-card h4 {
  font-family: var(--heading-font, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}

.overlay-splp-card p {
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Tombol Utama SPLP */
.btn-splp-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color, #CC3334);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(204, 51, 52, 0.2);
}

.btn-splp-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color, #CC3334), #000 15%);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(204, 51, 52, 0.3);
}

/* ==========================================================================
   SIDEBAR DOWNLOAD BOX (DATA TERBATAS)
   ========================================================================== */
.sidebar-restricted-box {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 20px;
}

.restricted-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #B45309;
  margin-bottom: 12px;
}

.sidebar-restricted-box p {
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Tombol Outline di Sidebar */
.btn-splp-outline {
  display: block;
  text-align: center;
  border: 1px solid var(--accent-color, #CC3334);
  color: var(--accent-color, #CC3334);
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.2s ease;
}

.btn-splp-outline:hover {
  background-color: var(--accent-color, #CC3334);
  color: #ffffff !important;
}

/* ==========================================================================
   KOREKSI LIST VIEW DATASET (CLEAN UI & INSTITUTIONAL STANDARD)
   ========================================================================== */
.list-dataset-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.list-dataset-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: #CBD5E1;
  transform: translateY(-1px);
}

/* Sisi Kiri: Konten */
.list-content .judul-dataset {
  font-family: var(--heading-font, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 8px 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.list-dataset-item:hover .judul-dataset {
  color: var(--accent-color, #CC3334);
}

.meta-data-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 0.85rem;
  color: #64748B;
}

.meta-data-list .pemisah {
  color: #CBD5E1;
  font-size: 0.85rem;
}

/* Badge Format JSON/XLSX */
.badge-format,
.meta-data-list .metadata-chip {
  background-color: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

/* Sisi Kanan: Status Terbatas Bersih */
.status-terbatas-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: #B45309;
  padding: 8px 16px;
  background-color: #FFFBEB;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.status-terbatas-list:hover {
  background-color: #FEF3C7;
  color: #92400E;
}

.status-terbatas-list i {
  font-size: 1rem;
}

/* Sisi Kanan: Tombol Lihat Dataset Bersih */
.btn-lihat-dataset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--default-font, 'Inter', sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-color, #CC3334);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-lihat-dataset:hover {
  color: color-mix(in srgb, var(--accent-color, #CC3334), #000 15%);
  background-color: rgba(204, 51, 52, 0.05);
}

.btn-lihat-dataset i {
  transition: transform 0.2s ease;
}

.btn-lihat-dataset:hover i {
  transform: translateX(4px);
}

/* --- Modul: scroll-top-button.css --- */
/* Scroll Top Button */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}



/* --- Modul: search-box-styles.css --- */
/* Search Box Styles */

.input-group .form-control {
  border-right: none;
  padding: 12px 15px;
}

.input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.input-group .btn-danger {
  border-left: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.input-group .btn-danger:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.input-group .form-control:focus+.btn-danger {
  border-color: var(--accent-color);
}



/* --- Modul: service-details-section.css --- */
/* Service Details Section */

.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}



/* --- Modul: services-section.css --- */
/* Services Section */

.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}



/* --- Modul: stats-section.css --- */
/* Stats Section */

.stats {
  padding-top: 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}



/* --- Modul: tata-letak-footer.css --- */
/* Global Footer */

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}



/* --- Modul: tata-letak-umum.css --- */
/* General Styling & Shared Classes */

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #CC3334;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/* --- Modul: team-section.css --- */
/* Team Section */

.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}



/* --- Modul: testimonials-section.css --- */
/* Testimonials Section */

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}



