/*
Theme Name: Buka Laundry 24
Theme URI: https://bukalaundry24jam.com/
Author: Laundry 24
Author URI: https://bukalaundry24jam.com/
Description: Themes for Buka Laundry 24 Jam
Version: 1.0
License: Commercial
License URI: https://bukalaundry24jam.com/
Tags: white,blue, yellow
Text Domain: company profile
*/

/* GENERAL */
body {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  color: #000 !important;
  background: #4399e4 !important;
}

a {
  text-decoration: none !important;
  color: #0074e4;
}

a:hover {
  text-decoration: none !important;
  color: #02133e;
  transition: all 0.3s ease !important;
}

:hover {
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

sup {
  font-size: 60%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

small {
  font-size: 12px;
}

.clear {
  clear: both;
}

/* WA FLOATING */
/* --- Styling Container --- */
.wafixed-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

/* --- Styling Tombol Utama --- */
.wafixed {
  background-color: transparent; /* Ubah menjadi transparent jika wa.png sudah punya background hijau sendiri */
  border: none; /* Hilangkan garis putih jika wa.png sudah punya border sendiri */
  width: 65px;
  height: 65px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding: 0;
  box-shadow: none; /* Hilangkan shadow di bungkusnya, pindahkan ke img */
}

.wafixed:hover {
  transform: scale(1.08);
}

.wafixed img {
  width: 100%; /* Agar gambar memenuhi tombol 65x65px */
  height: 100%;
  object-fit: contain;
}

/* --- Styling Kotak Popup --- */
.wa-popup {
  position: absolute;
  bottom: 85px; /* Jarak kotak dari tombol bulat */
  right: 0;
  width: 260px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  overflow: hidden;
}
/* Class ini ditambahkan oleh JavaScript saat tombol ditekan */
.wa-popup.show-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Header Popup --- */
.wa-popup-header {
  background: #25d366;
  color: #ffffff;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.wa-popup-close {
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: color 0.2s;
}
.wa-popup-close:hover {
  color: #e0e0e0;
}

/* --- Daftar List Cabang --- */
.wa-popup-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 250px; /* Jika cabang banyak, otomatis bisa discroll */
  overflow-y: auto;
}
.wa-popup-list li {
  border-bottom: 1px solid #f0f0f0;
  list-style-type: none !important;
}
.wa-popup-list li:last-child {
  border-bottom: none;
}
.wa-popup-list a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.wa-popup-list a:hover {
  background: #f8f9fa; /* Warna background saat disorot */
  color: #25d366;
}
.wa-popup-list svg {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  fill: #25d366;
}

/* --- Responsif untuk Layar HP --- */
@media (max-width: 768px) {
  .wafixed-container {
    bottom: 20px;
    right: 20px;
  }
  .wa-popup {
    bottom: 75px;
    width: 240px;
  }
}

/* =========================================
   WELCOME SCREEN / PRELOADER STYLES
   ========================================= */
#welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000; /* Latar belakang hitam pekat */
  z-index: 99999; /* Pastikan berada paling depan menutupi segalanya */
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease-out,
    visibility 0.6s ease-out;
}

/* Class ini akan ditambahkan oleh JS untuk menghilangkan layar */
#welcome-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  width: 300px; /* Lebar area loading */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Teks Persentase */
.percentage-text {
  position: absolute;
  font-size: 80px; /* Ukuran font besar */
  font-weight: 300; /* Font tipis */
  color: #2a2a2a; /* Warna abu-abu sangat gelap seperti di gambar */
  z-index: 1; /* Memastikan teks berada di atas garis */
  letter-spacing: 2px;
}

/* Garis Latar (Abu-abu gelap) */
.progress-line-container {
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  position: absolute;
  z-index: 2; /* Berada di belakang teks */
}

/* Garis Progres (Merah) */
.progress-line {
  width: 0%; /* Dimulai dari 0 */
  height: 100%;
  background-color: #ffd83a; /* Warna merah */
  transition: width 0.1s linear;
}

/* =========================================
   HEADER BASE
   ========================================= */
#header {
  transition: all 0.3s;
  z-index: 997;
  padding: 0 !important;
  background: rgba(0, 0, 0, 1); /* Background transparan awal */
  display: flex;
  flex-direction: column;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 1); /* Menjadi hitam solid saat discroll */
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

#header .logo img {
  width: 120px;
}

#header .logo a {
  color: #fff;
}

/* =========================================
   DESKTOP NAVIGATION (Layar > 991px)
   ========================================= */
@media (min-width: 992px) {
  .main-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .main-menu > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .main-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none; /* Hilangkan underline bawaan link */
  }

  .main-menu a:hover,
  .main-menu .active > a,
  .main-menu li:hover > a {
    color: #ffbd29 !important;
  }

  /* --- Pengaturan Submenu Desktop --- */
  .main-menu ul {
    border-radius: 0px;
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #000;
    box-shadow: 0px 5px 30px rgba(127, 137, 161, 0.15);
    transition: 0.3s;
    min-width: 180px;
    margin: 0;
    list-style: none;
  }

  /* Tampilkan Submenu saat di-hover */
  .main-menu li:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .main-menu ul li {
    position: relative;
    padding: 0;
  }

  .main-menu ul a {
    padding: 10px 20px;
    font-size: 12px;
    text-transform: none;
    color: #fff; /* Disesuaikan agar terbaca di background #000 */
    white-space: normal;
  }

  .main-menu ul a:hover,
  .main-menu ul .active > a,
  .main-menu ul li:hover > a {
    color: #4399e4;
    background-color: rgba(0, 116, 228, 0.05);
    text-transform: uppercase;
  }

  /* Submenu tingkat 3 */
  .main-menu ul ul {
    top: 0;
    left: calc(100% - 30px);
  }

  .main-menu ul li:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }

  @media (max-width: 1366px) {
    .main-menu ul ul {
      left: -90%;
    }
    .main-menu ul li:hover > ul {
      left: -100%;
    }
  }
}

/* =========================================
   MOBILE NAVIGATION (Layar < 992px)
   ========================================= */
@media (max-width: 991.98px) {
  /* Styling Ikon Hamburger agar putih */
  .navbar-toggler {
    border: none;
    padding: 0;
  }

  .navbar-toggler:focus {
    box-shadow: none; /* Hilangkan border biru saat diklik */
  }

  /* Area Navigasi Mobile */
  .navbar-collapse {
    background-color: rgba(
      0,
      0,
      0,
      0.98
    ); /* Dibuat hitam agar menyatu dengan header */
    padding: 10px 20px 20px 20px;
    margin-top: 0; /* [UBAH INI] Hilangkan jarak agar menempel persis di bawah navbar */
    border-radius: 0; /* [UBAH INI] Hilangkan lengkungan sudut */
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0; /* [UBAH INI] Tarik mentok ke sisi kiri layar */
    right: 0; /* [UBAH INI] Tarik mentok ke sisi kanan layar */
    z-index: 999;
    border-top: 1px solid #222; /* Opsional: Garis batas tipis antara header dan menu */
  }

  .main-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  .main-menu > li {
    border-bottom: 1px solid #353535;
  }

  .main-menu > li:last-child {
    border-bottom: none;
  }

  .main-menu a {
    display: block;
    position: relative;
    color: #fff;
    padding: 15px 10px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
  }

  .main-menu a:hover,
  .main-menu .active > a {
    color: #ffbd29;
  }

  /* --- Pengaturan Submenu Mobile --- */
  .main-menu ul {
    display: none;
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border-radius: 5px;
    list-style: none;
  }

  .main-menu li:hover > ul,
  .main-menu li.active > ul {
    display: block; /* Menampilkan submenu di HP */
  }

  .main-menu ul a {
    padding: 10px 15px;
    font-size: 13px;
    text-transform: capitalize;
    color: #ccc;
  }
}

/* =========================================
   IKON PANAH GLOBAL (Desktop & Mobile)
   ========================================= */
.main-menu .menu-item-has-children > a:after {
  content: "\f282"; /* Unicode bi-chevron-down */
  font-family: "bootstrap-icons";
  padding-left: 5px;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .main-menu ul .menu-item-has-children > a {
    padding-right: 35px;
  }
  .main-menu ul .menu-item-has-children > a:after {
    content: "\f285"; /* Unicode bi-chevron-right */
    position: absolute;
    right: 15px;
  }
  @media (max-width: 1366px) {
    .main-menu ul .menu-item-has-children > a:after {
      content: "\f284";
    }
  }
}

@media (max-width: 991.98px) {
  .main-menu .menu-item-has-children > a:after {
    position: absolute;
    right: 10px;
  }
  .main-menu .active.menu-item-has-children > a:after {
    content: "\f286"; /* Unicode bi-chevron-up */
  }
}

/* =========================================
   PENGATURAN PANAH KE LUAR
   ========================================= */
#carouselTestimoni .carousel-control-prev {
  left: -50px; /* Geser panah ke luar arah kiri */
  width: 40px;
}

#carouselTestimoni .carousel-control-next {
  right: -50px; /* Geser panah ke luar arah kanan */
  width: 40px;
}

/* Memastikan area panah tidak terpotong (overflow) */
#testimoni .container {
  padding-left: 40px;
  padding-right: 40px;
}

/* =========================================
   ANIMASI SLIDE 1 PER 1 (BOOTSTRAP MULTI-ITEM)
   ========================================= */
@media (max-width: 767px) {
  /* Di HP, sembunyikan hasil kloningan agar tetap tampil 1 saja */
  #carouselTestimoni .carousel-inner .carousel-item > div {
    display: none;
  }
  #carouselTestimoni .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex; /* Ubah blok menjadi baris menyamping */
}

@media (min-width: 768px) {
  /* Kecepatan dan besaran pergeseran (33.33% = 1 dari 3 kartu) */
  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(33.333%);
  }
  .carousel-inner .carousel-item-start.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-33.333%);
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/* Sections All */
section {
  padding: 60px 0;
  overflow: hidden;
}

.boxblue {
  background: #02133e;
}

.btn-primary {
  --bs-btn-bg: #4399e4 !important;
}
.bg-primary {
  background-color: #4399e4 !important;
}

/* HERO */
/* =========================================
   PENGATURAN HERO BANNER SLIDER
   ========================================= */

/* 1. Pengaturan Desktop (Fullscreen tapi di bawah Header) */
#heroCarousel {
  /* Mendorong banner ke bawah sejauh tinggi header (Sesuaikan angka 80px ini dengan tinggi header aslimu) */
  margin-top: 73px;
  /* Memaksa banner mengisi sisa layar (100% tinggi layar dikurangi tinggi header) */
  min-height: calc(100vh - 73px) !important;
}

#heroCarousel .carousel-item {
  min-height: calc(100vh - 73px) !important;
}

/* 2. Pengaturan Mobile / HP (Responsif, Gambar Tidak Terpotong) */
@media (max-width: 768px) {
  /* Mengurangi jarak margin-top karena tinggi header di HP biasanya lebih kecil */
  #heroCarousel {
    margin-top: 60px;
  }

  #heroCarousel,
  #heroCarousel .carousel-item {
    /* Menghilangkan paksaan tinggi layar penuh (100vh) di HP */
    min-height: auto !important;

    /* Membuat wadah menyesuaikan proporsi gambar aslimu (Lanskap 16:9) */
    aspect-ratio: 16 / 9;
  }

  #heroCarousel .carousel-item {
    /* !important digunakan untuk menimpa 'cover' dari kode inline HTML kamu.
           100% auto membuat gambar akan tampil 100% lebarnya tanpa ada bagian yang terpotong */
    background-size: 100% auto !important;
    background-position: top center !important;
  }
}
.bg-orange {
  background-color: #4399e4 !important;
}
.hero {
  min-height: calc(100vh); /* Jika navbar tingginya 70px */
}

.hero h1 span {
  padding: 5px 10px;
  background: #fff;
}
.hero p.lead {
  color: #afaaaa;
}
.box-text {
  font-size: 24px;
}
@media (max-width: 768px) {
  .hero h1 span {
    font-size: 1.35rem;
  }
}

.coloryellow {
  color: #fce840;
}

/* LAYANAN  ------------------------------------------------------------------------------------------------- */
/* Judul Layanan */
.layanan-title {
  color: #ffd83a; /* Warna kuning teks */
  font-size: 2.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Subjudul (List Layanan) */
.layanan-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
}

/* Styling Kartu (Cards) */
.layanan-card {
  background-color: #ffd83a; /* Warna latar kartu kuning */
  border-radius: 20px; /* Sudut melengkung luar */
  padding: 15px; /* Jarak antara garis luar dengan gambar/teks */
  color: #000000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.layanan-card:hover {
  transform: translateY(-5px); /* Efek melayang saat kursor diarahkan */
}

/* Gambar di dalam Kartu */
.layanan-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Agar gambar tidak gepeng */
  border-radius: 12px; /* Sudut gambar melengkung */
}

/* Teks di dalam Kartu */
.layanan-card h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.layanan-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Responsif untuk HP --- */
@media (max-width: 768px) {
  .layanan-title {
    font-size: 2rem;
    margin-bottom: 15px !important;
  }
  .layanan-header {
    justify-content: center !important; /* Ketengahin teks di HP */
    text-align: center;
  }
}

/* CABANG */
/* Judul "CABANG KAMI" */
.cabang-title {
  color: #ffd83a; /* Warna teks kuning */
  font-size: 2.8rem;
  letter-spacing: 1px;
}

/* --- Styling Kartu Cabang --- */
.cabang-card {
  background-color: #ffffff;
  border-radius: 25px; /* Lengkungan luar kartu yang besar */
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Teks Judul Cabang di dalam Kartu */
.cabang-name {
  margin-bottom: 18px;
}

/* Memastikan link judul cabang warnanya tetap sama dan tanpa garis bawah */
.cabang-name a {
  color: #559be6; /* Biru muda sesuai background */
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none; /* Menghilangkan garis bawah */
  transition: color 0.3s ease;
}

/* Efek saat judul disorot kursor (opsional, warna jadi sedikit lebih gelap) */
.cabang-name a:hover {
  color: #3b7cbd;
}

/* Foto Cabang */
.cabang-foto {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Agar gambar tidak gepeng */
  border-radius: 12px; /* Lengkungan sudut gambar */
  margin-bottom: 15px;
}

/* Teks Alamat */
.cabang-alamat {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Wadah Peta */
.cabang-peta {
  width: 100%;
  border-radius: 12px;
  overflow: hidden; /* Wajib ada agar iframe maps ikut melengkung di bagian sudutnya */
}

/* Iframe dari Google Maps agar menyesuaikan wadah */
.cabang-peta iframe,
.cabang-peta img {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
  object-fit: cover;
}

/* --- Responsif untuk HP --- */
@media (max-width: 768px) {
  .cabang-title {
    font-size: 2rem;
    text-align: center; /* Menengahkan judul di HP */
  }
  .cabang-card {
    padding: 15px;
    border-radius: 20px;
  }
  .cabang-foto {
    height: 200px;
  }
  .cabang-peta iframe,
  .cabang-peta img {
    height: 180px;
  }
}

/* TENTANG KAMI */
/* Judul "TENTANG KAMI" */
.tentang-title {
  color: #ffd83a; /* Warna teks kuning */
  font-size: 2.8rem;
  letter-spacing: 1px;
}

/* Deskripsi / Teks Paragraf */
.tentang-desc {
  color: #ffffff; /* Warna teks putih */
  font-size: 1.2rem; /* Ukuran teks sedikit diperbesar agar mudah dibaca */
  line-height: 1.6;
  margin-bottom: 0;
}

/* Styling Gambar Maskot */
.maskot-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(
    0px 10px 15px rgba(0, 0, 0, 0.15)
  ); /* Memberikan bayangan halus di belakang maskot */
  animation: floatMaskot 3s ease-in-out infinite; /* Memanggil animasi melayang */
}

/* Animasi Melayang untuk Maskot (Opsional namun disarankan agar lebih interaktif) */
@keyframes floatMaskot {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* --- Responsif untuk HP --- */
@media (max-width: 768px) {
  .tentang-kami {
    padding: 40px 0;
  }
  .tentang-title {
    font-size: 2rem;
    text-align: center; /* Menengahkan teks judul di layar HP */
  }
  .tentang-desc {
    font-size: 1.1rem;
    text-align: center; /* Menengahkan teks paragraf di layar HP */
  }
  .maskot-img {
    max-width: 70%; /* Mengecilkan sedikit ukuran maskot di HP agar proporsional */
    margin-top: 30px;
  }
  /* Memastikan maskot diposisikan di tengah pada layar HP */
  .text-md-end {
    text-align: center !important;
  }
}

/* TESTIMONI */
/* --- Styling Testimoni Grid --- */
.testimoni {
  background-color: #fafafa; /* Opsional: warna latar belakang abu-abu sangat muda */
}

.card-testimoni {
  background-color: #ffffff;
  border: 1px solid #eaeaea; /* Garis tepi tipis abu-abu */
  border-radius: 12px; /* Sudut melengkung */
  padding: 30px;
  display: flex;
  flex-direction: column;
  text-align: left; /* Memastikan teks rata kiri sesuai gambar */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); /* Sedikit bayangan super halus */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-testimoni:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Styling Bintang */
.card-testimoni .bintang {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Styling Teks Kutipan */
.card-testimoni .teks-testimoni {
  font-style: italic; /* Membuat teks miring */
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1; /* Mendorong bagian profil ke bawah agar sejajar meski panjang teks berbeda */
}

/* Styling Avatar Lingkaran (Huruf Awal) */
.card-testimoni .avatar {
  width: 45px;
  height: 45px;
  background-color: #60b765; /* Warna hijau sesuai gambar */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Styling Nama Pelanggan */
.card-testimoni .nama-pelanggan {
  color: #222222;
  font-weight: 500;
  font-size: 1.05rem;
}

/* CTA */
.cta {
  background: #61cdfe;
}
.area-khusus {
  height: 100px;
}

/* HOME */
.pembuka p {
  font-size: 16px;
}

/* INFORMASI*/
section.informasi {
  padding: 20px 10px 10px;
}
section.informasi p {
  font-size: 15px;
  line-height: 28px;
}

/* MAIN */
.mainpage {
  background: #fff;
}
.mainpage .hero {
  min-height: calc(75vh); /* Jika navbar tingginya 70px */
}
section.inner-page {
  padding: 0 0 80px;
  overflow: hidden;
}

.wrap-blog .card-img-top {
  transition: transform 0.4s ease;
  object-fit: cover; /* supaya proporsi gambar tetap bagus */
}

.wrap-blog .card {
  overflow: hidden; /* biar gambar yang zoom tidak keluar kotak */
}

.wrap-blog .card:hover .card-img-top {
  transform: scale(1.1);
}

.breadcrumbs ul {
  list-style: none;
  font-size: 14px;
  font-style: italic;
}

/* MAP */
.map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* rasio 16:9 */
  overflow: hidden;
  border-radius: 10px; /* optional biar lebih smooth */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SINGLE */
.deskripsi-paket {
  padding: 20px;
  background: #f3f3f3;
  border-radius: 5px;
}
.single-paket_londri .info-paket {
  font-size: 12px;
  padding: 10px 0 0;
  background: #fff;
}
.single-paket_londri .related-posts .info-paket {
  font-size: 12px;
  padding: 0;
  background: #fff;
}
.single-paket_londri .blog_desc .accordion-item {
  border: none; /* hilangkan border default */
  margin-bottom: 8px;
  border-radius: 0px !important;
  overflow: hidden;
  padding: 20px 0 0 0;
  background: none;
}

/* Header tombol accordion */
.single-paket_londri .blog_desc .accordion-button {
  background-color: #4399e4; /* warna background header */
  color: #fff; /* warna teks */
  font-weight: 600;
  padding: 12px 16px;
  border: none;
  border-radius: 0px !important;
  box-shadow: none;
}

/* Saat tombol aktif (expanded) */
.single-paket_londri .blog_desc .accordion-button:not(.collapsed) {
  background-color: #000; /* contoh warna tema oranye */
  color: #fff;
  box-shadow: none;
}

/* Icon panah (Bootstrap pakai pseudo-element ::after) */
.single-paket_londri .blog_desc .accordion-button::after {
  filter: brightness(0) invert(1); /* jadikan putih ketika header aktif */
}
.single-paket_londri .blog_desc .accordion-button.collapsed::after {
  /*filter: none; warna default saat collapsed */
  filter: brightness(0) invert(1); /* jadikan putih ketika header aktif */
}

/* Konten body */
.single-paket_londri .blog_desc .accordion-body {
  background-color: #fff;
  color: #000;
  padding: 15px;
}

.info-paket {
  font-size: 14px;
  padding-bottom: 5px;
}

.info-paket h4 {
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: #000;
  color: #ccc;
  padding: 60px 0 25px;
  position: relative;
  overflow: hidden;
}
.footer p {
  font-size: 14px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.footer-about {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer h5 {
  color: #ccc;
  margin-bottom: 25px;
  position: relative;
}

.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 1px;
  background: #777;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links li::marker {
  list-style: none;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffbd29;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Menghilangkan list-style pada menu Quick Links */
ul#menu-bottom-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul#menu-bottom-menu li {
  list-style-type: none;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #333;
  transform: translateY(-3px);
  color: #ffbd29;
}

.footer-newsletter {
  position: relative;
  margin-top: 20px;
}

.footer-newsletter input {
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
  outline: none;
  padding-right: 50px;
}

.footer-newsletter input::placeholder {
  color: #cccccc;
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 40px;
  border-radius: 50%;
  background: #353535;
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #ffbd29;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #cccccc;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: #ffbd29 !important;
}

@media (max-width: 768px) {
  .footer-section {
    margin-bottom: 40px;
  }
}

/* PAGINASI */
.pagination .page-link {
  color: #ffbd29; /* Merah Bootstrap */
  border-color: ffbd29;
}

/* Warna saat hover */
.pagination .page-link:hover {
  background-color: #ffbd29;
  color: #fff;
  border-color: ffbd29;
}

/* Warna untuk halaman aktif */
.pagination .page-item.active .page-link {
  background-color: #ffbd29;
  border-color: #ffbd29;
  color: #fff;
}

/* Tombol Share */
.btn-social {
  padding: 7px 10px;
  margin: 0 10px 10px 0;
  border: 1px solid #888;
  color: #888 !important;
  border-radius: 5px;
  font-size: 12px;
}

.btn-social span {
  font-size: 16px;
}

.btn-social:hover {
  border: 1px solid #666;
  color: #666 !important;
  transition: all 0.3s ease;
}

.sharebutton {
  padding-top: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
  border-top: 1px dashed #ccc;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block;
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff !important;
  margin: 0 0.5em 0.9em 0;
  font-size: 14px;
}

.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 0.5em 0.75em;
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top;
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle;
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none;
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9;
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373;
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--whatsapp {
  background-color: #25d366;
  border-color: #25d366;
}

.resp-sharing-button--whatsapp:hover,
.resp-sharing-button--whatsapp:active {
  background-color: #1da851;
  border-color: #1da851;
}

.resp-sharing-button--telegram {
  background-color: #54a9eb;
}

.resp-sharing-button--telegram:hover {
  background-color: #4b97d1;
}

/* KOMETAR */
.comments-area {
  font-size: 14px;
}

/* Form Komentar */
.img-rescomment {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0px auto;
}

.img-circle {
  border-radius: 50%;
}

textarea {
  border: 1px solid #e4e4e4;
  width: 100%;
}

.commentlist {
  font-size: 14px;
}
.comment-list,
.children {
  list-style: none;
}

ul.children {
  list-style: none;
  padding-left: 0px;
  margin-left: 0px;
}

.comment-form a {
  color: #4399e4;
}

.comment-form a:hover {
  color: #013e4a;
  transition: all 0.3s ease;
}

.comment-wrap {
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
  margin-bottom: 50px;
  position: relative;
}

.comment-wrap .comments-title {
  padding-top: 60px;
}

.comment-wrap .comment-img {
  float: left;
  margin-right: 20px;
  padding-bottom: 25px;
}

.comment-author {
  text-align: left;
}

.comment-reply {
  position: absolute;
  top: 0px;
  right: 0px;
  font-style: italic;
  padding: 5px 5px;
  background: #f5f5f5;
}

.comment-author,
.comment-author a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.comment-date {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
  display: block;
  padding-bottom: 7px;
}

.depth-2 .comment-wrap {
  padding-left: 30px;
}

.depth-3 .comment-wrap {
  padding-left: 60px;
}

.depth-4 .comment-wrap {
  padding-left: 90px;
}

.depth-5 .comment-wrap {
  padding-left: 120px;
}

.depth-6 .comment-wrap {
  padding-left: 150px;
}

.depth-7 .comment-wrap {
  padding-left: 180px;
}

.depth-8 .comment-wrap {
  padding-left: 210px;
}

.depth-9 .comment-wrap {
  padding-left: 240px;
}

.depth-10 .comment-wrap {
  padding-left: 270px;
}

#commentform #comment,
#commentform #author,
#commentform #email,
#commentform #url {
  display: block;
  width: 100%;
  padding: 7px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#commentform input[type="submit"] {
  display: inline-block;
  padding: 8px 25px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #4399e4;
  margin-top: 15px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  border: none;
}

#commentform input[type="submit"]:hover {
  background: #333;
  transition: all 0.3s ease;
}

.title-line {
  border-top: 1px dotted #ccc;
  display: block;
  max-width: 30%;
  margin: 0 auto 25px;
}

/* Widget Sidebar */
.verwidget {
  padding: 30px 20px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
}

.wrap_sidebar .verwidget ul,
.wrap_sidebar #verwidget ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.wrap_sidebar .verwidget ul {
  list-style: square;
}

.wrap_sidebar .verwidget ul li {
  position: relative;
}

.wrap_sidebar .verwidget ol {
  list-style: decimal;
}

.wrap_sidebar .verwidget ul a,
.wrap_sidebar .verwidget ol a,
.side_recent a {
  color: #000;
  transition: all 0.3s ease;
}

.wrap_sidebar .verwidget ul a:hover,
.wrap_sidebar .verwidget ol a:hover,
.side_recent a:hover {
  color: #4399e4;
}

.verwidget h3 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 25px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}

.verwidget h3::after {
  content: "";
  width: 40px;
  height: 1px;
  display: inline-block;
  background: #4399e4;
  margin: 4px 10px;
}

/* Related Posts */
.related_posts #related_posts img {
  width: 100%;
  height: auto;
}

/* Author */
h4.author_name {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 25px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

.author_bio_section p {
  font-size: 14px;
  line-height: 20px;
  color: #777;
}

.author_bio_section p.author_links a i {
  padding: 0 5px;
}

.author_details img {
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

/* Display Cat Post Home */
.related_posts .kat-posts-home {
  margin-bottom: 0px !important;
}

.kat-posts-home {
  margin-bottom: 60px !important;
}

.kat-posts-home h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}

.kat-posts-home h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #4399e4;
  margin: 4px 10px;
}

.article_list h4 {
  font-size: 16px;
}

.article_list p {
  font-size: 12px;
  line-height: 20px;
}

.article_list a {
  color: #4399e4;
}

.article_list a:hover {
  color: #000;
}

.article_list .regular {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}

.article_list .regular:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.kat-posts-home h3 {
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
}

.kat-posts-home p {
  font-size: 14px;
  line-height: 20px;
}

.kat-posts-home .card {
  border-radius: 10px !important;
  border: none !important;
}

.kat-posts-home .card-image,
.article_list .mask {
  overflow: hidden;
  position: relative;
}

.kat-posts-home img.card-img-top,
.article_list img.card-img-top {
  transition: transform 0.5s;
  border-radius: 7px !important;
}

.kat-posts-home img.card-img-top:hover,
.article_list img.card-img-top:hover {
  transform: scale(1.1);
}

small.incatpost {
  font-size: 70%;
}

small.incatpost a {
  color: #999 !important;
}

.banner-widget {
  width: 100% !important;
  height: auto !important;
}
