/* =========================================
GAYA HEADER SPLIT-SCREEN BARU
=========================================
*/

/* Menggantikan style .hero yang lama */
.hero-split {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 700px;
  background-color: #f0f4f8;
  overflow: hidden;
  position: relative;
}

.hero-split-content {
  display: flex;
  flex-grow: 1;
  align-items: center;
  width: 100%;
  padding-top: 80px; /* Memberi ruang agar konten tidak tertimpa navbar */
}

/* PERUBAHAN UTAMA: Menambahkan background pola yang serasi */
.hero-text-panel {
  flex-basis: 50%;
  padding: 2rem 4rem;
  z-index: 10;
  background-color: #f0f4f8; /* Warna dasar terang */
  /* Pola plus (+) yang subtle menggunakan SVG inline */
  background-image: url("");
}

/* PERUBAHAN: Mengembalikan warna teks menjadi gelap */
.hero-text-panel h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2b38;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text-panel p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-image-panel {
  flex-basis: 100%;
  height: 100%;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

/* Navigasi ditempatkan di atas header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  position: absolute; /* Diubah dari fixed menjadi absolute */
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1000;
  transition: background-color 0.4s ease-out;
}

/* =========================================
PERUBAHAN MODERN (GLASSMORPHISM) DI SINI
=========================================
*/
.navbar.scrolled {
  position: fixed; /* Kembali menjadi fixed saat di-scroll */

  /* EFEK GLASSMORPHISM MODERN */
  background-color: rgba(44, 62, 80, 0.85); /* #2c3e50 with 85% opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Support for Safari */
  /* --- */

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* =========================================
AKHIR PERUBAHAN
=========================================
*/

/* Warna logo default (gelap) */
.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333; /* Default color */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s ease; /* Tambah transisi */
}
/* Warna logo saat navbar di-scroll (putih) */
.navbar.scrolled .nav-logo {
  color: #fff;
}
/* Warna logo di inner page (putih) */
.header-inner-page .nav-logo {
  color: #fff; /* Jadikan putih di inner page */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Tambahkan shadow agar terbaca */
}

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  margin-left: 2rem;
}

/* Warna link default (gelap) */
.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 5px;
}
/* Warna link saat navbar di-scroll ATAU di inner page (putih) */
.navbar.scrolled .nav-link,
.header-inner-page .nav-link {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Shadow agar terbaca di inner page */
}

/* Warna hover link default */
.nav-link:hover {
  color: #047d78;
}
/* Warna hover link saat background gelap */
.navbar.scrolled .nav-link:hover,
.header-inner-page .nav-link:hover {
  color: #a7d7c5;
}

.nav-item.dropdown {
  position: relative;
}

/* =========================================
PERUBAHAN DROPDOWN HOVER DESKTOP
=========================================
*/
.dropdown-menu {
  /* display: none; <-- Hapus ini */
  position: absolute;
  top: 150%; /* Mulai dari bawah, akan transisi ke atas */
  left: 50%;
  transform: translateX(-50%);

  /* Background Glassmorphism (sedikit lebih solid dari navbar) */
  background-color: rgba(52, 73, 94, 0.9); /* #34495e with 90% opacity */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* --- */

  padding: 0.5rem 0;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  list-style: none;
  opacity: 0;
  visibility: hidden; /* Sembunyikan sepenuhnya */
  transition: opacity 0.3s ease, top 0.3s ease, visibility 0s linear 0.3s; /* Delay visibility */
  z-index: 1100;
}

/* Tampilkan dropdown saat parent di-hover (HANYA DESKTOP) */
@media (min-width: 769px) {
  /* Pastikan ini hanya berlaku di atas 768px */
  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    top: 100%; /* Posisi akhir saat terlihat */
    visibility: visible;
    transition: opacity 0.3s ease, top 0.3s ease, visibility 0s linear 0s; /* Hapus delay */
  }
}

/* Hapus .dropdown-menu.active karena tidak dipakai JS lagi di desktop */
/* .dropdown-menu.active { ... } */

.dropdown-menu a {
  color: #ecf0f1; /* Warna teks terang agar kontras */
  padding: 0.75rem 1.5rem;
  display: block;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: left;
  white-space: nowrap; /* Agar teks tidak wrap */
}

.dropdown-menu a:hover {
  background-color: rgba(
    44,
    62,
    80,
    0.7
  ); /* #2c3e50 lebih transparan saat hover */
  color: #ffffff; /* Teks lebih terang saat hover */
}

/* =========================================
AKHIR PERUBAHAN DROPDOWN HOVER
=========================================
*/

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

/* Warna bar default (gelap) */
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}
/* Warna bar saat navbar di-scroll ATAU di inner page (putih) */
.navbar.scrolled .bar,
.header-inner-page .navbar .bar {
  /* <<< Lebih spesifik */
  background-color: #fff;
}

.hero-content {
  /* Style ini tidak lagi digunakan untuk header utama, tapi dipertahankan jika ada halaman lain yang menggunakannya */
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  transition: padding-top 0.3s ease-out;
}

.hero-content h1 {
  font-size: 2.8rem;
  max-width: 800px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: font-size 0.3s ease-out, text-shadow 0.3s ease-out;
}

/* =========================================
   GAYA FOOTER MODERN (BARU)
========================================= */
/* ... (Kode Footer tidak berubah, bisa disalin dari respons sebelumnya) ... */
.new-site-footer {
  background-color: #1f2b38; /* Warna gelap profesional */
  color: #bdc3c7; /* Teks abu-abu terang, enak dibaca */
  padding: 4rem 0 2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.new-site-footer .container {
  max-width: 1200px; /* Sedikit lebih lebar untuk layout modern */
}

.new-footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #34495e; /* Garis pemisah halus */
}

/* Kolom 1: Merek/Logo */
.new-footer-brand {
  flex: 1;
  min-width: 280px;
  max-width: 350px; /* Batasi lebar deskripsi */
}

.new-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
}

.new-footer-logo img {
  height: 45px;
  /* Pastikan path ke logo.webp benar */
  /* filter: brightness(0) invert(1); */ /* Opsional: membuat logo jadi putih */
}

.new-footer-brand p {
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Kolom 2, 3, 4: Link Grid */
.new-footer-links-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  min-width: 300px;
}

.new-footer-links h4 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Garis aksen hijau (warna tema) */
.new-footer-links h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #047d78;
}

.new-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-links li {
  margin-bottom: 0.75rem;
  display: flex; /* Untuk ikon kontak */
  align-items: flex-start;
  gap: 0.75rem;
}

.new-footer-links a,
.new-footer-links span {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

/* Efek hover kekinian */
.new-footer-links a:hover {
  color: #047d78; /* Warna tema */
  padding-left: 5px;
}

/* Ikon di list kontak */
.new-footer-links li i {
  color: #047d78; /* Ikon pakai warna tema */
  font-size: 1rem;
  margin-top: 5px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* Bottom Bar */
.new-footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.new-footer-bottom p {
  margin: 0;
}

.new-footer-bottom .footer-bottom-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.new-footer-bottom .footer-bottom-link:hover {
  color: #047d78;
}

.new-social-icons {
  display: flex;
  gap: 1rem;
}

.new-social-icons a {
  color: #bdc3c7;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.new-social-icons a:hover {
  color: #047d78; /* Warna tema */
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .new-footer-main {
    flex-direction: column;
  }
  .new-footer-brand {
    max-width: 100%;
    text-align: center;
  }
  .new-footer-logo {
    justify-content: center;
  }
  .new-footer-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: center;
  }
  .new-footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .new-footer-bottom {
    flex-direction: column-reverse; /* Ikon sosial di atas copyright */
    gap: 1.5rem;
  }

  .new-footer-bottom p {
    text-align: center;
    width: 100%;
  }
  /* =========================================
   GAYA ACCORDION FOOTER (MOBILE)
========================================= */

  /* Pastikan grid tetap 1 kolom tapi rata kiri */
  .new-footer-links-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  /* Beri garis pemisah antar menu accordion */
  .new-footer-links {
    border-bottom: 1px solid #34495e; /* Warna dari footer bottom */
    margin-bottom: 0;
  }
  .new-footer-links:last-child {
    border-bottom: none;
  }

  /* Jadikan H4 sebagai tombol klik */
  .new-footer-links h4 {
    cursor: pointer;
    padding: 0.75rem 0; /* Area klik yang nyaman */
    margin-bottom: 0;
    position: relative; /* Penting untuk ikon */
    user-select: none; /* Biar teks tidak terseleksi pas di-klik */
  }

  /* Sembunyikan garis aksen hijau di mobile */
  .new-footer-links h4::after {
    display: none;
  }

  /* Tambahkan ikon panah (chevron) */
  .new-footer-links h4::before {
    font-family: "Font Awesome 5 Free"; /* Pastikan pakai FontAwesome 5/6 */
    content: "\f078"; /* Kode ikon fa-chevron-down */
    font-weight: 900;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #047d78; /* Warna tema */
    font-size: 0.9rem;
  }

  /* Sembunyikan daftar link (UL) by default */
  .new-footer-links ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out,
      margin 0.4s ease-out;
    padding: 0 0.5rem;
    margin-top: 0;
    border-top: 1px solid transparent; /* transisi border */
  }

  /* === STYLE SAAT ACCORDION TERBUKA === */

  .new-footer-links.footer-accordion-open h4::before {
    transform: translateY(-50%) rotate(-180deg); /* Putar ikon panah ke atas */
  }

  .new-footer-links.footer-accordion-open ul {
    max-height: 500px; /* Atur tinggi maksimal yang cukup */
    margin-top: 0.5rem;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem; /* Padding saat terbuka */
    border-top: 1px solid #34495e; /* Garis pemisah halus */
  }

  /* Pastikan link di dalam accordion rata kiri */
  .new-footer-links li {
    justify-content: flex-start;
    text-align: left;
  }
  /* Matikan efek hover padding di mobile */
  .new-footer-links li a:hover {
    padding-left: 0;
  }

  /* Aturan untuk bottom bar (copyright & social) tetap sama */
  .new-footer-bottom {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}

/* ================================================================
   GAYA BANNER UNTUK HALAMAN INNER (WARNA NAVIGASI DIPERBAIKI)
   ================================================================ */

.hero-split.header-inner-page {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

/* Warna link dan logo default di inner page (sudah diatur di luar media query) */
/* .hero-split.header-inner-page .nav-link, */
/* .hero-split.header-inner-page .nav-logo { ... } */

/* Warna bar default di inner page (sudah diatur di luar media query) */
/* .hero-split.header-inner-page .bar { ... } */

.hero-split.header-inner-page .hero-image-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: none;
  z-index: 1;
  flex-basis: auto;
}

.hero-split.header-inner-page .hero-image-panel img {
  object-fit: cover;
}

.hero-split.header-inner-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(25, 42, 58, 0.8),
    rgba(64, 224, 208, 0.75)
  );
  z-index: 2;
}

.hero-split.header-inner-page .hero-text-panel {
  position: relative;
  z-index: 3;
  background-color: transparent;
  flex-basis: auto;
  padding: 0 2rem;
  max-width: 700px;
}

.hero-split.header-inner-page .hero-text-panel h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-top: 3px solid #ffffff;
  padding-top: 1rem;
  margin-bottom: 0.5rem;
}

.hero-split.header-inner-page .hero-text-panel p {
  margin-bottom: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  color: #ffffff;
}

/* =========================================
   ANIMASI TAMBAHAN (HERO)
   ========================================= */

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero-cta-button.animated {
  animation: bounce 2s infinite;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #047d78;
  font-size: 2rem;
  z-index: 10;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}

.scroll-down-indicator i {
  display: block;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
}

.hero-split.header-inner-page .scroll-down-indicator {
  display: none;
}

.hero-cta-button:not(.animated) + .scroll-down-indicator {
  display: none;
}

/* =========================================
   ANIMASI SCROLL MOUSE (PENGGANTI TOMBOL HP)
   ========================================= */

.scroll-down-indicator {
  display: none;
  cursor: pointer;
  text-decoration: none;
}

.mouse-scroll {
  width: 28px;
  height: 48px;
  border: 2px solid #047d78;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(4, 125, 120, 0.2);
}

.mouse-scroll .mouse-wheel {
  width: 6px;
  height: 10px;
  background-color: #047d78;
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes scroll-wheel {
  0% {
    top: 8px;
    opacity: 0;
  }
  20% {
    top: 8px;
    opacity: 1;
  }
  60% {
    top: 28px;
    opacity: 1;
  }
  80% {
    top: 28px;
    opacity: 0;
  }
  100% {
    top: 8px;
    opacity: 0;
  }
}

/* ================== */
/* == MEDIA QUERIES == */
/* ================== */

@media (max-width: 991.98px) {
  /* Penyesuaian Hero Split untuk Tablet */
  .hero-text-panel {
    flex-basis: 60%;
    padding: 2rem;
  }
  .hero-image-panel {
    flex-basis: 40%;
  }
  .hero-text-panel h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Tata letak Hero Split menjadi vertikal di mobile */
  .hero-split {
    height: auto;
    min-height: unset;
  }
  .hero-split-content {
    flex-direction: column-reverse; /* Gambar di atas, teks di bawah */
    padding-top: 80px; /* Jarak dari navbar */
  }
  .hero-text-panel {
    flex-basis: auto;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem 3rem 1.5rem;
  }
  .hero-text-panel p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-panel {
    flex-basis: auto;
    width: 100%;
    height: 300px;
    clip-path: none; /* Menghapus clip-path */
  }

  /* Navbar mobile kini transparan saat di atas */
  .navbar {
    padding: 1rem;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.4s ease-out;
  }

  /* Navbar saat di-scroll, background gelap muncul */
  .navbar.scrolled {
    background-color: rgba(
      44,
      62,
      80,
      0.85
    ); /* <-- PERUBAHAN MODERN DI SINI JUGA */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  /* Warna default logo (homepage, not scrolled) */
  .navbar .nav-logo {
    color: #333;
  }
  /* Warna default bar (homepage, not scrolled) */
  .navbar .bar {
    background-color: #333;
  }

  /* Warna logo & bar di inner pages (selalu putih) */
  .header-inner-page .navbar .nav-logo {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  .header-inner-page .navbar .bar {
    background-color: #ffffff;
  }

  /* Warna logo & bar saat navbar di-scroll (selalu putih) */
  .navbar.scrolled .nav-logo {
    color: #ffffff;
  }
  .navbar.scrolled .bar {
    background-color: #ffffff;
  }

  /* =========================================
PERUBAHAN MODERN (GLASSMORPHISM & ALIGNMENT) DI SINI
=========================================
*/
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 65px;
    flex-direction: column;

    /* EFEK GLASSMORPHISM MODERN */
    background-color: rgba(44, 62, 80, 0.95); /* #2c3e50 with 95% opacity */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Support for Safari */
    /* --- */

    width: 100%;
    /* text-align: center;  <<< HAPUS INI untuk rata kiri */
    transition: left 0.3s ease-in-out;
    z-index: 999;
    padding-top: 1rem; /* Tambah padding atas */
    padding-bottom: 2rem; /* Tambah padding bawah */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    /* Hapus padding kiri/kanan di sini jika ingin item full width */
  }

  .nav-item {
    margin: 0.5rem 0; /* Kurangi margin vertikal sedikit */
    margin-left: 0;
    width: 100%; /* Buat item memenuhi lebar menu */
    padding: 0 1.5rem; /* Beri padding kiri kanan pada item */
    box-sizing: border-box; /* Agar padding tidak menambah lebar */
    text-align: left; /* Pastikan teks di dalam item rata kiri */
  }

  /* =========================================
PERUBAHAN WARNA TEKS HOVER/ACTIVE MOBILE
=========================================
*/
  .nav-link {
    padding: 0.75rem 1rem; /* Beri padding vertikal & horizontal pada link */
    color: #fff; /* <-- WARNA DEFAULT PUTIH */
    justify-content: flex-start; /* Ratakan ikon dan teks ke kiri */
    width: 100%; /* Pastikan link memenuhi item */
    box-sizing: border-box;
    border-radius: 6px; /* Tambahkan sedikit lengkungan */
    transition: background-color 0.2s ease, color 0.2s ease; /* Tambah transisi color */
  }
  .nav-link:hover,
  .nav-link:active, /* <-- Tambahkan :active */
  .nav-link:focus {
    /* <-- Tambahkan :focus (opsional tapi bagus) */
    background-color: rgba(255, 255, 255, 0.1); /* Efek hover transparan */
    color: #ffffff !important; /* <<< PASTIKAN WARNA TEKS TETAP PUTIH TERANG SAAT AKTIF/HOVER */
  }
  /* =========================================
AKHIR PERUBAHAN WARNA TEKS
=========================================
*/

  /* =========================================
AKHIR PERUBAHAN MODERN MENU MOBILE
=========================================
*/

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  /* =========================================
PERBAIKAN WARNA IKON X KONSISTEN
=========================================
*/
  /* Default 'X' color (untuk homepage, not scrolled) - Make it BLACK */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #333; /* <<< JADIKAN HITAM (Default) */
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #333; /* <<< JADIKAN HITAM (Default) */
  }

  /* Override 'X' color to WHITE for inner pages OR when scrolled */
  .header-inner-page .hamburger.active .bar:nth-child(1),
  .header-inner-page .hamburger.active .bar:nth-child(3),
  .navbar.scrolled .hamburger.active .bar:nth-child(1),
  .navbar.scrolled .hamburger.active .bar:nth-child(3) {
    background-color: #ffffff; /* <<< JADIKAN PUTIH (Override) */
  }
  /* =========================================
AKHIR PERBAIKAN WARNA X
=========================================
*/

  /* Penyesuaian Dropdown Mobile */
  .dropdown-menu {
    position: static; /* Kembali ke static untuk mobile */
    transform: none;
    min-width: unset;
    box-shadow: none;
    background-color: transparent; /* Transparan, ikut parent */
    padding: 0.5rem 0 0 0;
    max-height: 0; /* Tetap pakai max-height untuk animasi */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    display: block; /* Selalu block agar transisi max-height bekerja */
    opacity: 1; /* Selalu terlihat saat terbuka */
    border-radius: 0;
    width: 100%; /* Submenu selebar item induk */
    margin-top: 0.5rem; /* Jarak dari link induk */
    /* Hapus visibility dan transition visibility */
  }
  /* Style saat dropdown mobile aktif (dikontrol JS) */
  .dropdown-menu.active {
    max-height: 250px; /* Sesuaikan jika perlu lebih tinggi */
    opacity: 1;
    top: auto; /* Tidak relevan lagi */
    padding-bottom: 0.5rem;
    visibility: visible; /* Pastikan terlihat */
  }

  .dropdown-menu li {
    padding: 0; /* Hapus padding dari li jika ada */
  }
  .dropdown-menu a {
    text-align: left; /* <<< PERUBAHAN: Rata kiri */
    padding: 0.75rem 1rem;
    padding-left: 2rem; /* <<< PERUBAHAN: Beri indentasi */
    color: #bdc3c7; /* Warna teks submenu sedikit redup */
    background-color: rgba(
      0,
      0,
      0,
      0.15
    ); /* Background submenu sedikit lebih gelap */
    margin: 2px 0; /* Hapus margin horizontal */
    border-radius: 6px; /* Samakan lengkungan */
    width: 100%; /* Link selebar submenu */
    box-sizing: border-box;
    display: block; /* Pastikan link adalah block */
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, 0.3); /* Hover submenu lebih gelap */
    color: #ffffff; /* Teks hover putih */
  }

  /* Hapus style footer yang tidak relevan di blok ini */
  /* .footer-content { ... } */
  /* .footer-column h4::after { ... } */
}

@media (max-width: 480px) {
  .hero-text-panel h1 {
    font-size: 2rem;
  }
  /* Penyesuaian padding menu mobile untuk layar sangat kecil */
  @media (max-width: 480px) {
    .navbar {
      padding: 1rem 0.75rem; /* Kurangi padding navbar */
    }
    .nav-item {
      padding: 0 1rem; /* Kurangi padding kiri kanan item */
    }
    .nav-link {
      padding: 0.75rem 0.5rem; /* Kurangi padding link */
    }
    .dropdown-menu a {
      padding-left: 1.5rem; /* Kurangi indentasi dropdown */
    }
  }
}

/* Logika di Mobile (Media Query) - DENGAN PERBAIKAN !important */
@media (max-width: 768px) {
  /* Sembunyikan tombol CTA "Jelajahi Layanan" di mobile */
  .hero-text-panel .hero-cta-button {
    display: none !important; /* <-- PERBAIKAN DI SINI */
  }

  /* Tampilkan animasi scroll mouse di mobile */
  .scroll-down-indicator {
    display: inline-block; /* Tampilkan sebagai block */
    margin-top: 1.5rem; /* Jarak dari paragraf di atasnya */
  }
}
