/*

TemplateMo 587 Tiya Golf Club

https://templatemo.com/tm-587-tiya-golf-club

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #148c97;
  --secondary-color: #1c2954;
  /* --section-bg-color: #fde0a4; */
  --section-bg-color: #faa52e;
  --section-bg-color-alt: #179ca8;
  --custom-btn-bg-color: #faa52e;
  --custom-btn-bg-hover-color: #d37e14;
  --custom-btn-bg-navy: #1c2954;
  --custom-btn-bg-azura: #0e3151;
  --custom-btn-bg-nav: #07233d;
  --custom-btn-bg-hover-navy: #142c7c;
  --dark-color: #000000;
  --p-color: #4c4c4d;
  --link-hover-color: #faa52e;

  --body-font-family: "DM Sans", sans-serif;

  --h0-font-size: 57px;
  --h1-font-size: 42px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --p-font-size: 18px;
  --menu-font-size: 16px;
  --btn-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --size-header: 2.25rem;
  --size-accordion-title: 1.5rem;
  --size-accordion-content: 1rem;
  --animation-speed: 100;
  --slide-ease: cubic-bezier(0.86, 0, 0.07, 1);
  --slide-duration: calc(400ms * 100 / var(--animation-speed));
  --slide-delay: calc(450ms * 100 / var(--animation-speed));
  --circle-duration: calc(900ms * 100 / var(--animation-speed));
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h0,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
}

h0 {
  font-size: var(--h0-font-size);
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

.pt-6 {
  padding-top: 5.5rem; /* atau 6rem, sesuaikan */
}

.text-navy {
  color: var(--secondary-color);
}

.fs-xl {
  font-size: 3.5rem;
}

/*---------------------------------------
  Preloader Styles           
-----------------------------------------*/

/* Preloader Styles */
#preloader {
  position: fixed; /* Tetap di posisi yang sama saat di-scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* Tampil di atas semua elemen lain */
  background-color: #fff; /* Warna latar belakang loader */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out; /* Efek fade-out */
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Loader Animation (Anda sudah punya ini, pastikan ada di file CSS) */
.pl {
  display: block;
  width: 6.25em;
  height: 6.25em;
}
.pl__ring,
.pl__ball {
  animation: ring 2s ease-out infinite;
}
.pl__ball {
  animation-name: ball;
}

@keyframes ring {
  from {
    stroke-dasharray: 0 257 0 0 1 0 0 258;
  }
  25% {
    stroke-dasharray: 0 0 0 0 257 0 258 0;
  }
  50%,
  to {
    stroke-dasharray: 0 0 0 0 0 515 0 0;
  }
}
@keyframes ball {
  from,
  50% {
    animation-timing-function: ease-in;
    stroke-dashoffset: 1;
  }
  64% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -109;
  }
  78% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -145;
  }
  92% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -157;
  }
  57%,
  71%,
  85%,
  99%,
  to {
    animation-timing-function: ease-out;
    stroke-dashoffset: -163;
  }
}

/*---------------------------------------
  perjalanan teks               
-----------------------------------------*/

.journey-text {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.journey-text.fade-out {
  opacity: 0;
  transform: translateY(-20px) scale(0.98);
  filter: blur(2px);
}

.journey-text.empty-state {
  opacity: 0;
  pointer-events: none;
}

.history-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-top-right-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
}

@media (min-width: 768px) {
  #journeyText {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .fs-xl {
    font-size: 2rem;
  }

  .section-wrapper {
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 1.5rem;
  }

  .section-text-padding {
    padding: 1.5rem !important;
    text-align: center;
  }

  .history-image {
    max-width: 250px;
    max-height: 180px;
    margin: 0 auto;
    border-radius: 1.5rem !important;
  }
}

@media (min-width: 769px) {
  .section-text-padding {
    padding-left: 8rem !important;
  }
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  Modal               
-----------------------------------------*/

.modern-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 3rem;
  background: none;
  border: none;
  color: #333;
  opacity: 0.7;
  z-index: 10;
  transition: all 0.2s ease;
}

.modern-close:hover {
  color: rgb(240, 0, 0);
  opacity: 1;
  transform: scale(1.1);
}

.promo-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden; /* mencegah scroll jika ada kelebihan */
}

.promo-left img {
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .promo-left {
    /* padding-top: 2.5rem; */
  }

  .modern-close {
    position: absolute;

    color: #ccc;
  }
}

.promo-left h5,
.promo-left p,
.promo-left h1,
.promo-left h2 {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.form-wrapper {
  max-width: 420px;
  width: 100%;
}

.custom-form input,
.custom-form textarea {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.swal-wide {
  max-width: 600px !important;
  padding: 2rem;
  border-radius: 16px;
}

.swal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.swal-text {
  font-size: 1.2rem;
  color: #555;
}

/*---------------------------------------
  pidio               
-----------------------------------------*/
.video-carousel-wrapper {
  max-width: 560px;
  position: relative;
}

.custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  z-index: 10;
}

.carousel-control-prev.custom-nav {
  left: -40px;
}

.carousel-control-next.custom-nav {
  right: -40px;
}

/*---------------------------------------
  Gallery Promo               
-----------------------------------------*/

.demo-gallery > ul {
  margin-bottom: 0;
}
.demo-gallery > ul > li {
  float: left;
  margin-bottom: 15px;
  margin-right: 20px;
  width: 250px;
}
.demo-gallery > ul > li a {
  border: 3px solid #fff;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}
.demo-gallery > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}
.demo-gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
  opacity: 1;
}
.demo-gallery > ul > li a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}
.demo-gallery > ul > li a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}
.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}
.demo-gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
  opacity: 1;
}
.demo-gallery .justified-gallery > a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}
.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}
.demo-gallery .video .demo-gallery-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}
.demo-gallery.dark > ul > li a {
  border: 3px solid #04070a;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-bg {
  /* background-color: var(--section-bg-color); */
  background-color: #dcdcdc;
}

.section-bgt {
  background-color: var(--secondary-color);
}

.section-bg-alt {
  background-color: var(--section-bg-color-alt);
}

.section-bg-azura {
  background-color: var(--custom-btn-bg-azura);
}

.section-bg-nav {
  background-color: var(--custom-btn-bg-nav);
}

.section-dov {
  background-color: #205469;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-padding-tp {
  padding-top: 100px;
}
.section-padding-bt {
  padding-bottom: 50px;
}

/* dari bawah */
.section-overlay-second {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/* dari kiri */
.section-overlay {
  background: rgba(0, 0, 0, 0)
    linear-gradient(
      to bottom left,
      rgba(39, 48, 83, 0.01) 0%,
      rgb(39, 48, 83) 100%
    )
    repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1; /* 👈 DITAMBAHKAN agar tidak menutup teks */
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.svg-wrapper {
  width: 100%;
  display: block;
  line-height: 0;
}

.svg-wrapper svg {
  display: block;
  width: 100%;
  height: 100px;
}
.segitiga-mobile {
  display: none;
}

@media (max-width: 600px) {
  .segitiga-desktop {
    display: none;
  }

  .segitiga-mobile {
    display: inline;
  }
}

/*---------------------------------------
News     
-----------------------------------------*/

.news-card-item {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.news-card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card-text {
  /* text-align: justify; */
  text-align: justify;
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.news-card-link {
  margin-top: auto; /* mendorong ke bawah */
  font-weight: bold;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.news-card-date {
  margin-top: 0.25rem;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  display: block;
}

.news-card-img-container {
  overflow: hidden;
}

.news-card-img {
  width: 100%;
  transition: transform 0.4s ease;
}

.news-card-img-container:hover .news-card-img {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.pagination .page-item .page-link {
  border-radius: 6px;
  margin: 0 4px;
  color: #1c2954;
}

.pagination .page-item.active .page-link {
  background-color: #1c2954;
  color: white;
  border-color: #1c2954;
}

/*---------------------------------------
CArousile product details          
-----------------------------------------*/

.map-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.bige {
  font-size: 1.5rem;
}

#denahCarousel .carousel-control-prev-icon,
#denahCarousel .carousel-control-next-icon {
  width: 3rem; /* default-nya 2rem */
  height: 3rem;
  background-size: 100% 100%;
}

/* Ukuran gambar carousel utama properti */
.produk-carousel {
  width: 550px;
}

/* Ukuran ikon kamar/dapur/tamu */
.produk-icon {
  width: 50px;
}

/* Ukuran ikon fasilitas (CCTV, WiFi, dsb) */
.produk-fasilitas-icon {
  width: 70px;
}

/* Ukuran gambar denah properti */
.produk-denah {
  max-height: 500px;
  object-fit: contain;
}

/*---------------------------------------
  Brosure Product - Flexbox Portrait Layout             
-----------------------------------------*/

.demo-brosur > ul {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* Spacing antar item */
  padding: 0;
  list-style: none;
}

.demo-brosur > ul > li {
  /* 4 kolom: (100% - 3 gaps) / 4 */
  flex: 0 0 calc(25% - 6px);
  margin-bottom: 0;
  margin-right: 0;
  width: auto;
}

/* Untuk mobile - tetap 4 kolom */
@media (max-width: 576px) {
  .demo-brosur > ul {
    gap: 4px; /* Gap lebih kecil di mobile */
  }

  .demo-brosur > ul > li {
    flex: 0 0 calc(25% - 3px);
  }
}

/* Extra small mobile */
@media (max-width: 400px) {
  .demo-brosur > ul {
    gap: 2px;
  }

  .demo-brosur > ul > li {
    flex: 0 0 calc(25% - 1.5px);
  }
}

.demo-brosur > ul > li a {
  border: 3px solid #fff;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  /* TIDAK ADA aspect-ratio - biarkan mengikuti tinggi gambar */
}

.demo-brosur > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: auto; /* Tinggi mengikuti ratio asli gambar */
  width: 100%;
  max-width: 100%;
  display: block; /* Hilangkan space bawah gambar */
  /* TIDAK ADA object-fit - biarkan ratio asli */
}

.demo-brosur > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-brosur > ul > li a:hover .demo-brosur-poster > img {
  opacity: 1;
}

.demo-brosur > ul > li a .demo-brosur-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-brosur > ul > li a .demo-brosur-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-brosur > ul > li a:hover .demo-brosur-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Justified Gallery Styles - tetap sama */
.demo-brosur .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-brosur .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-brosur .justified-gallery > a:hover .demo-brosur-poster > img {
  opacity: 1;
}

.demo-brosur .justified-gallery > a .demo-brosur-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-brosur .justified-gallery > a .demo-brosur-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-brosur .justified-gallery > a:hover .demo-brosur-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-brosur .video .demo-brosur-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}

.demo-brosur.dark > ul > li a {
  border: 3px solid #04070a;
}

/*---------------------------------------
filter product           
-----------------------------------------*/
/* Simple Filter Tabs Styling */
.simple-filter-tabs {
  background: #148c97;
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(20, 140, 151, 0.2);
}

.simple-filter-btn {
  margin: 0 8px;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
}

.simple-count-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-left: 6px;
  font-weight: 600;
}

.simple-filter-btn:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.simple-filter-btn.active {
  background: white;
  color: #148c97;
  border-color: white;
  font-weight: 600;
}

.simple-count-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  margin-left: 6px;
  font-weight: 600;
}

.simple-filter-btn.active .simple-count-badge {
  background: #148c97;
  color: white;
}

/* Tag Tipe Product di Pojok Kanan Atas */
.product-type-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #148c97;
  color: white;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(20, 140, 151, 0.3);
}

/* Animasi untuk Product Items */
.product-item {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item.fade-out {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.product-item.fade-in {
  animation: simpleFadeIn 0.5s ease forwards;
}

@keyframes simpleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Simple Empty State */
.simple-empty-state {
  padding: 60px 20px;
  color: #6c757d;
}

.simple-empty-state h4 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #148c97;
}

.simple-empty-state p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-filter-tabs {
    padding: 15px 20px;
  }

  .simple-filter-btn {
    margin: 3px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .simple-count-badge {
    font-size: 0.7rem;
    padding: 1px 6px;
  }
}

@media (max-width: 576px) {
  .simple-filter-btn {
    display: inline-block;
    margin: 2px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .simple-filter-tabs {
    padding: 12px 15px;
  }
}

/*---------------------------------------
CArousile product           
-----------------------------------------*/

.highlight-section {
  background-color: rgba(28, 41, 84, 0.795);
  border-radius: 16px;
  padding: 28px 24px; /* naik dari 24px 20px */
  margin: 30px auto;
  max-width: 1080px; /* naik dari 1000px */
}

.section-heading-container {
  display: flex;
  justify-content: center;
  margin: 0px 0 20px 0;
}

.section-heading-wrapper {
  /* background-color: #1c2954; */
  border-radius: 14px;
  padding: 8px 16px;
  text-align: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); Efek bayangan */
}

.section-heading-wrapper-2 {
  /* background-color: #179ca8; */
  border-radius: 14px;
  padding: 8px 16px;
  text-align: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); Efek bayangan */
}

.section-heading {
  font-size: 28px; /* dari 22px */
  font-weight: 600;
  /* color: #fff; */
  margin: 0;
  letter-spacing: 1px;
}

/* CSS untuk menengahkan item jika jumlahnya sedikit */
.center-items-if-few .owl-wrapper {
  /* 1. Paksa wrapper agar lebarnya sama dengan area terlihat (viewport) */
  width: 100% !important;

  /* 2. Batalkan efek geser/sliding dari JS agar item tetap diam */
  transform: translate3d(0px, 0px, 0px) !important;

  /* 3. Gunakan Flexbox untuk menengahkan item */
  display: flex !important;
  justify-content: center !important;
}

.testimonials-item {
  max-width: 260px;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
}

.testimonials-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%; /* atur seberapa tinggi gradasinya */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 20px 30px;
  color: white;
  text-align: center;
  z-index: 2; /* pastikan ini di atas gradasi */
}

.text-overlay h2 {
  /* margin: 0 0 10px; */
  font-size: 2rem; /* dari 1.8rem */
  font-weight: 700;
  line-height: 1.01;
  color: white;
  text-align: left;
}
.text-overlay p {
  margin: 0;
  font-size: 1rem; /* dari 0.95rem */
  line-height: 1.01; /* sedikit ditingkatkan */
  color: white;
  opacity: 0.9;
  text-align: left;
}

[id^="owl-testimonials-"] .owl-stage-outer {
  display: flex;
  justify-content: center;
}

[id^="owl-testimonials-"] .owl-stage {
  display: flex;
  justify-content: center;
}

[id^="owl-testimonials-"] .owl-item {
  display: flex;
  justify-content: center;
}

.testimonials-item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
}
/* Untuk bullet pagination di bawah carousel */
/* Untuk bullet pagination di bawah carousel */
.owl-theme .owl-controls {
  margin-top: 24px;
  text-align: center;
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 10px; /* dari 8px */
  height: 10px; /* dari 8px */
  margin: 5px 7px; /* sedikit disesuaikan */
  filter: Alpha(Opacity=50);
  opacity: 0.5;
  border-radius: 50%;
  background: #1c2954;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  opacity: 1;
  background: #179ca8; /* warna aktif & hover */
}

/*---------------------------------------
  PRODUCT DETAIL          
-----------------------------------------*/

/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
@media (min-width: 769px) {
  .hero-text h1 {
    font-size: 67px; /* pakai manual, tidak ikut variabel global */
  }

  .hero-text h3 {
    font-size: 39px;
  }

  .hero-text .custom-btn {
    font-size: 18px; /* ukuran teks */
    padding: 14px 28px; /* lebih tebal dan lebar */
    border-radius: 10px; /* biar lebih modern */
  }
  .hero-text .custom-btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--link-hover-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-navy {
  background: var(--custom-btn-bg-navy);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn-navy:hover {
  background: var(--custom-btn-bg-hover-navy);
  color: var(--white-color);
}

.custom-border-btn-navy {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-navy);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn-navy:hover {
  background: var(--custom-btn-bg-navy);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.offcanvas {
  background-color: var(--primary-color);
  padding: 30px;
}

.offcanvas.offcanvas-end {
  border-left: 0;
}

.offcanvas-header .btn-close {
  transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(180deg);
}

.offcanvas svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  /* background-color: rgb(28, 41, 84); */
  background-color: #f7f7f7;
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--dark-color);
  max-width: 180px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--dark-color);
}

.navbar .navbar-brand-image {
  /* filter: brightness(0) invert(1); */
}

.navbar-brand-image {
  width: 180px;
  /* height: 48px; */
}

.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

/* MODIFIKASI BLOK INI */
.navbar-nav .nav-item {
  position: relative; /* Tambahkan ini untuk wadah garis */
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: color 0.3s ease; /* Tambahkan transisi warna */
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #f37c0b; /* Warna teks saat aktif/hover */
}

/* TAMBAHKAN BLOK BARU INI TEPAT DI BAWAHNYA */

/* Membuat elemen garis virtual di bawah setiap nav-link */
/* Membuat elemen garis virtual di bawah setiap nav-link */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;

  /* === UBAH BARIS INI === */
  bottom: 0; /* Letakkan garis di bagian paling bawah dari nav-item */

  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #f37c0b;
  transition: width 0.3s ease-in-out;
}

/* Saat nav-link di-hover atau aktif, lebarkan garisnya */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(
    100% - 20px
  ); /* Lebar garis sesuai padding (10px kiri + 10px kanan) */
}

.navbar .dropdown-menu {
  background: var(--white-color) !important; /* Background putih */
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.1) !important; /* Border tipis */
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

/* segitiga mungil diatas dropdown */
.navbar .dropdown > .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color); /* Arrow putih */
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--dark-color) !important;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding: 10px 30px 10px 20px;
  transition: color 0.3s ease; /* Hanya transisi warna, bukan background */
}

/* Tambahkan garis bawah untuk dropdown item */
.navbar .dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 5px; /* Jarak dari bawah teks */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #f37c0b; /* Orange sama dengan nav-link */
  transition: width 0.3s ease-in-out;
}

/* Hapus background hover dan ganti dengan garis bawah */
.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent !important; /* Hapus background orange */
  color: #f37c0b !important; /* Orange text seperti nav-link */
}

/* Saat dropdown item di-hover, tampilkan garis bawah */
.navbar .dropdown-item:hover::after,
.navbar .dropdown-item.active::after {
  width: calc(100% - 40px); /* Sesuaikan dengan padding horizontal */
}

/* Dropdown submenu styling - disesuaikan dengan template */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%; /* Submenu di sebelah kanan */
  margin-top: -1px;
  border-radius: var(--border-radius-small);
  background: var(--white-color); /* Background putih */
  border: 1px solid rgba(0, 0, 0, 0.1); /* Border tipis */
  min-width: 180px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.dropdown-submenu > .dropdown-item {
  position: relative;
  color: var(--dark-color); /* Teks hitam */
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 10px 30px 10px 20px;
  transition: color 0.3s ease;
  text-decoration: none !important; /* Pastikan tidak ada garis coret */
}

/* Tambahkan garis bawah untuk submenu parent */
.dropdown-submenu > .dropdown-item::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #f37c0b;
  transition: width 0.3s ease-in-out;
}

/* Arrow submenu tetap ada tapi terpisah dari garis bawah */
.dropdown-submenu > .dropdown-item::after {
  content: "\f285"; /* Arrow ke kanan */
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #999;
  transition: color 0.3s;
  /* Pastikan tidak ada styling yang bisa bikin garis */
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: none !important;
  text-decoration: none !important;
}

.dropdown-submenu:hover > .dropdown-item,
.dropdown-submenu > .dropdown-item:hover {
  background: transparent !important; /* Hapus background orange */
  color: #f37c0b !important; /* Orange text */
}

.dropdown-submenu:hover > .dropdown-item::before,
.dropdown-submenu > .dropdown-item:hover::before {
  width: calc(100% - 50px); /* Lebih pendek karena ada arrow */
}

/* Hanya ubah warna arrow, TANPA garis bawah */
.dropdown-submenu:hover > .dropdown-item::after,
.dropdown-submenu > .dropdown-item:hover::after {
  color: #f37c0b !important; /* Orange arrow */
}

/* Sub-dropdown items styling */
.dropdown-submenu .dropdown-menu .dropdown-item {
  padding: 8px 20px;
  font-size: 14px;
  color: var(--dark-color); /* Teks hitam */
  transition: color 0.3s ease;
  position: relative;
}

.dropdown-submenu .dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #f37c0b;
  transition: width 0.3s ease-in-out;
}

.dropdown-submenu .dropdown-menu .dropdown-item:hover {
  background: transparent !important; /* Hapus background orange */
  color: #f37c0b !important; /* Orange text */
}

.dropdown-submenu .dropdown-menu .dropdown-item:hover::after {
  width: calc(100% - 30px);
}

/* Arrow untuk submenu connection - selalu ke kanan */
.dropdown-submenu .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--white-color); /* Arrow dari kiri ke submenu */
  position: absolute;
  top: 15px;
  left: -8px;
}

/* Hover behavior untuk desktop */
@media screen and (min-width: 992px) {
  /* 1. Atur kondisi awal untuk SEMUA level dropdown menu */
  .navbar-nav .dropdown-menu {
    display: block; /* Biarkan 'block' agar transisi berfungsi */
    opacity: 0;
    margin-top: 20px; /* Beri efek turun dari atas */
    pointer-events: none;
    transition: opacity 0.3s ease, margin-top 0.3s ease;
  }

  /* Posisikan submenu (level 2, 3, dst.) di samping kanan */
  .dropdown-menu .dropdown-submenu .dropdown-menu {
    margin-top: -1px; /* Sesuaikan agar sejajar */
    left: 100%;
    top: 0;
  }

  /* 2. Tampilkan HANYA anak LANGSUNG saat di-hover */
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }

  /* 3. (Opsional) Sembunyikan panah mobile di desktop */
  .navbar-collapse .dropdown-arrow-toggle {
    display: none;
  }
}

/* Mobile responsive */
@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    margin-left: 20px; /* Indentasi ke kanan di mobile */
    background: var(--white-color); /* Background putih di mobile */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-small);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .navbar .dropdown > .dropdown-menu::before,
  .dropdown-submenu .dropdown-menu::before {
    display: none;
  }

  .dropdown-submenu > .dropdown-item::after {
    content: "\f282"; /* Arrow down untuk mobile */
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    color: var(--dark-color);
    left: auto;
    right: 15px;
  }

  .dropdown-submenu.open > .dropdown-item::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .dropdown-submenu.open .dropdown-menu {
    display: block;
  }

  .dropdown-submenu .dropdown-item {
    padding-left: 15px;
  }

  .dropdown-submenu .dropdown-menu .dropdown-item {
    padding-left: 25px;
    font-size: 13px;
  }
}

/* Mencegah garis hover muncul di menu dropdown */
/* .navbar-nav .dropdown .nav-link::after {
  display: none !important;
}

.navbar-nav .nav-link.dropdown-toggle::after {
  display: none !important;
} */

/* Override untuk memastikan tidak ada underline di dropdown */
/* .navbar-nav .dropdown > .nav-link::after,
.navbar-nav .dropdown > .nav-link:hover::after,
.navbar-nav .dropdown > .nav-link.active::after {
  width: 0 !important;
  opacity: 0 !important;
  display: none !important;
} */

.navbar .dropdown-item {
  padding: 10px 30px 10px 15px;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*
---------------------------------------------
services
---------------------------------------------
*/

section.services {
  margin-top: 60px;
}

.services .service-item {
  border-radius: 1rem;
  padding: 24px;
  box-shadow: 0px 0px 10px rgba(9, 62, 67, 0.08);
  margin-top: 20px;
  background-color: rgba(255, 255, 255);
  min-height: 200px; /* atur sesuai kebutuhan isi */
}

.services .service-item:hover i {
  transform: translateY(-5px); /* ikon bergerak naik sedikit */
}

.services .service-item i {
  transition: all 0.3s;
  font-size: 45px;
  /* color: var(--secondary-color); */
  color: #205469;
  margin-bottom: 20px;
  margin-right: 20px;
}

.services .service-item img {
  transition: all 0.3s;
  width: 50px; /* ukuran ikon */
  height: auto;
  margin-bottom: 20px;
  margin-right: 20px;
}

.services .service-item:hover img {
  transform: translateY(-5px);
}

.services .service-item h4 {
  font-size: 20px; /* dinaikkan sedikit dari 18px */
  font-weight: 600;
  margin-bottom: 15px;
}

.services .service-item p {
  font-size: 15px; /* diperkecil sedikit dari default biasanya 16px */
  line-height: 1.6;
  margin-bottom: 0;
}

/*---------------------------------------
HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 670px;
  overflow: hidden;
  margin-bottom: -90px;
  position: relative;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .section-overlay {
  background: rgba(0, 0, 0, 0)
    linear-gradient(
      to bottom left,
      rgba(39, 48, 83, 0.01) 0%,
      rgb(39, 48, 83) 100%
    )
    repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.responsive-svg {
  width: 100%;
  height: 7vw;
  display: block;
}

@media (min-width: 1600px) {
  .responsive-svg {
    height: 5vw;
  }
}

@media (max-width: 768px) {
  .responsive-svg {
    height: 10vw;
    display: none; /* baru */
  }
}

.hero-section > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4; /* SVG di atas semua */
}

.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}

.hero-nav button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: none;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-nav button.active {
  opacity: 1;
  background-color: orange;
}

/*
---------------------------------------------
Promo Slidder
---------------------------------------------
*/

.swiper {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 220px; /* ✅ Mobile: diperbesar lagi */
}

.swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: #1c2954;
  opacity: 0.5;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #179ca8;
  opacity: 1;
}

#prev-button:after,
#next-button:after {
  color: #aaa;
  font-size: 20px;
}

@media (min-width: 768px) {
  .swiper {
    max-width: 300px; /* ✅ Desktop tetap seperti sebelumnya */
    gap: 16px;
  }

  #prev-button:after,
  #next-button:after {
    font-size: 26px;
  }
}

/*---------------------------------------
BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.section-bg-image {
  background-image: url("../images/banner01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: -70px;
}

.section-bg-image .container + svg {
  transform: rotate(180deg);
  position: relative;
  bottom: -1px;
}

.section-bg-image-block {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 0px solid rgba(209, 213, 219, 0.3);
  border-radius: var(--border-radius-medium);
  padding: 25px 5px 21px 5px;

  max-width: 1200px; /* ✅ batasi lebar agar konten tidak terlalu lebar */
  margin: 0 auto;
}

.section-bg-image-block .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.section-bg-image-block .input-group-text {
  background-color: transparent;
  border: 0;
}

.section-bg-image-block input[type="email"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.section-bg-image-block button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}

/*---------------------------------------
  ABOUT SECTOIN              
-----------------------------------------*/
.about-section {
  /* padding-bottom: 70px; */
  padding-bottom: 0px;
}
.about-section-as {
  padding-bottom: 70px;
}

.member-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.member-block-image-wrap:hover .member-block-image {
  transform: scale(1.2);
}

.member-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.member-block-image-wrap .social-icon {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  padding: 15px 20px;
  width: auto;
}

.member-block-image {
  transition: all 0.3s;
}

.member-block-info {
  padding: 10px;
}

.member-block-info h4,
.member-block-info p {
  margin-bottom: 0;
}

/* #owl-testimoniale .item {
  border-radius: 15px;
  padding: 50px 320px 50px 50px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin: 15px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  padding-top: 35px;
}

#owl-testimoniale .item i {
  width: 70px;
  height: 70px;
  background-color: #148c97;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  color: #fff;
  font-size: 44px;
  border-radius: 5px;
  margin-bottom: 30px;
}

#owl-testimoniale .item p {
  font-size: 16px;
  font-style: italic;
}

#owl-testimoniale .item h4 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}

#owl-testimoniale .item span {
  margin-top: 5px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #148c97;
}

#owl-testimoniale .item img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 300px;
  border-radius: 5px;
} */

/* Styling untuk carousel container */
#owl-testimoniale .item {
  padding: 2rem 0; /* Memberi ruang napas di atas dan bawah slide */
}

/* Styling untuk judul utama quote */
#owl-testimoniale .display-5 {
  font-family: "Helvetica", "Arial", sans-serif; /* Ganti dengan font yang Anda gunakan */
  line-height: 1.2;
}

.quote-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}

.quote-desc {
  font-size: 20px;
  line-height: 1.9;
}

/* Styling untuk gambar agar tidak terlalu besar */
.quote-image-wrapper img {
  max-height: 500px;
  width: auto;
  object-fit: cover;
  display: inline-block;
}

/* Pengaturan untuk layar kecil (mobile) */
@media (max-width: 767px) {
  #owl-testimoniale .row {
    /* Balik urutan kolom di mobile: gambar dulu baru teks */
    display: flex;
    flex-direction: column-reverse;
  }
  .quote-image-wrapper {
    margin-bottom: 2rem;
  }
  #owl-testimoniale .owl-dots {
    text-align: center; /* Pusatkan dots di mobile */
  }
}

@media (max-width: 992px) {
  /* #owl-testimoniale .item img {
    max-width: 200px;
    right: 50px;
  } */
}

@media (max-width: 767px) {
  /* #owl-testimoniale .item i {
    margin-bottom: 60px;
  }
  #owl-testimoniale .item img {
    max-width: 100px;
    right: 50px;
    top: 35px;
    transform: translateY(0);
  }
  #owl-testimoniale .item {
    padding: 50px;
  } */
}

.timeline-card {
  background-color: #f1f1f1; /* sesuai warna abu-abu */
  min-height: 320px;
}

.object-fit-cover {
  object-fit: cover;
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  width: 85%; /* baru */
  height: auto; /* baru */
}

.custom-block-bg {
  background: var(--white-color);
}

.custom-block-date-wrap {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-medium);
  text-align: center;
  padding: 20px 30px;
}

.custom-block-date {
  font-size: var(--h1-font-size);
}

.custom-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.2);
}

.custom-block-image-wrap:hover .custom-block-icon {
  opacity: 1;
}

.custom-block-image {
  transition: all 0.3s;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
  position: absolute;
  bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
  border-radius: 0;
  left: 0;
  width: 50%;
  padding: 12.3px 20px;
}

.custom-block-image-wrap .custom-btn-wrap {
  right: 0;
  width: 50%;
}

.custom-block-image-wrap .custom-btn {
  border-radius: 0;
  display: block;
  padding: 15px 20px;
}

.custom-block-info {
  padding-top: 10px;
}

.custom-block-image-wrap + .custom-block-info {
  padding-top: 20px;
}

.custom-block-span {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 110px;
  margin-right: 10px;
}

.custom-block-icon {
  background: var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: var(--h3-font-size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
}

.custom-block-icon:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

/*---------------------------------------
  EVENTS SECTION            
-----------------------------------------*/
.events-section.section-bg .container > .row {
  margin-right: 5px;
  margin-left: 5px;
}

.events-section.section-bg .container > .row .row {
  margin: auto;
}

.events-listing-section {
  margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
  padding: 40px 60px;
}

.events-detail-info {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px 25px;
}

.events-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
}

/*---------------------------------------
  QUESTION SECTION            
-----------------------------------------*/
.oe *,
.oe *::before,
.oe *::after {
  position: relative;
  left: 0;
  top: 0;
  box-sizing: border-box;
}

.oe {
  font-weight: 500;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2rem 2rem;
  min-height: 100%;
}

.oe {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

.oe::selection {
  background-color: rgba(0, 0, 0, 0.4);
}

.accordion {
  --circle-x: 1.8rem;
  --circle-y: 0;
  --circle-r: 200%;
  --circle-bg: #fff;
  color: #000;

  background-color: var(--circle-bg);
  max-width: 56ch;
  margin-bottom: 1rem; /* lebih renggang antar accordion */
  border-radius: min(8px, 0.5rem);

  display: grid;
  grid-template-rows: 0fr 0fr;
  transition-timing-function: var(--slide-ease);
  transition-duration: 200ms, 200ms, var(--slide-duration);
  transition-property: opacity, box-shadow, grid-template-rows;
  transition-delay: 0ms, 0ms, var(--slide-delay);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.accordion:not(:target):hover {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.accordion:not(:target):active {
  opacity: 1;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.3);
}

.accordion,
.contento {
  overflow: hidden;
}

.accordion:target {
  --d: 90deg;
  grid-template-rows: 0fr 1fr;
  transition: grid-template-rows var(--slide-ease) var(--slide-duration)
    var(--slide-delay);
}

.wrapper {
  padding-block: 0 1.05rem;
  padding-inline: 1.25rem;
  padding-block: 1rem 1.5rem; /* atas-bawah lebih longgar */
}

.contento {
  font-size: var(--size-accordion-content);
  line-height: 140%;
}

.contento p {
  margin-bottom: 1rem;
  margin-bottom: 1.25rem; /* antar paragraf lebih luas */
  line-height: 1.3; /* beri ruang antar baris */
  color: #000000;
  font-size: var(--size-accordion-title);
  font-size: 1.45rem;
  font-weight: 500;
}

.contento a {
  color: currentColor;
  font-weight: 500;
  text-decoration: underline;
}

.oe :last-child,
.contento :last-child {
  margin-bottom: 0;
}

.titleo {
  margin-bottom: 0.5rem; /* beri jarak antara judul dan konten */
}

.titleo a {
  padding: 1rem 1.25rem;
  font-size: var(--size-accordion-title);
  font-weight: 500;
  color: currentColor;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  place-items: center;
}

.titleo a::before {
  --chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='white' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
  content: "";
  left: 0;
  top: 0;
  width: 0.65rem;
  aspect-ratio: 320 / 512;
  display: inline-block;
  margin-right: 0.75rem;
  transform: rotate(var(--d, 0deg));
  transition: transform var(--slide-ease) var(--slide-duration)
    var(--slide-delay);
  mask-image: var(--chevron-icon);
  mask-size: 100% 100%;
  -webkit-mask-image: var(--chevron-icon);
  -webkit-mask-size: 100% 100%;
  background-color: currentColor;
}

.accordion::before,
.accordion::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--circle-bg);
  mix-blend-mode: difference;
  transform-style: preserve-3d;
  transition-timing-function: ease;
  transition-property: opacity, clip-path, visibility;
  pointer-events: none;
  clip-path: circle(var(--r) at var(--circle-x) var(--circle-y));
  border-radius: inherit;
  z-index: 4;
}

.accordion::before {
  --r: 0%;
  transition-delay: var(--circle-duration), var(--circle-duration), 0ms;
  transition-duration: 0ms, var(--circle-duration), 0ms;
  opacity: 0;
}

.accordion:target::before {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, var(--circle-duration), 0ms;
  opacity: 1;
}

.accordion::after {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, var(--circle-duration);
  transition-duration: 0ms, var(--circle-duration), 0ms;
  visibility: hidden;
  opacity: 1;
}

.accordion:target:after {
  --r: 0%;
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, 0ms, 0ms;
  visibility: visible;
  opacity: 0;
}

.titleo a:focus-visible {
  background-color: hsl(0, 100%, 90%);
  outline: none;
}

.accordion:target .titleo a:focus-visible {
  background-color: hsl(183, 100%, 93%);
}

.accordion.open {
  --d: 90deg;
  grid-template-rows: 0fr 1fr;
  transition: grid-template-rows var(--slide-ease) var(--slide-duration)
    var(--slide-delay);
}

.accordion.open::before {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, var(--circle-duration), 0ms;
  opacity: 1;
}

.accordion.open::after {
  --r: 0%;
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, 0ms, 0ms;
  visibility: visible;
  opacity: 0;
}

.faq-line {
  max-width: 56ch; /* panjang garis */
  height: 4px; /* tebal garis */
  background-color: #fff; /* warna putih */
  border-radius: 2px; /* ujung agak melengkung */
  margin: 0 auto 20px; /* center + jarak ke teks */
}

.faq-footer p {
  padding-top: 4rem;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .accordion,
  .faq-line {
    max-width: 720px; /* atau coba 640px, 768px, sesuai keinginan */
  }
  .contento {
    font-size: 1.05rem; /* naikkan dari default */
    line-height: 1.7; /* beri ruang antar baris */
  }

  .titleo a {
    font-size: 1.5rem; /* atau coba 1.3rem jika masih kecil */
    font-weight: 500;
  }
}

@media screen and (min-width: 1024px) {
  .accordion,
  .faq-line {
    max-width: 860px; /* atau 100% jika ingin benar-benar penuh */
  }
  .contento {
    font-size: 1.05rem; /* naikkan dari default */
    line-height: 1.7; /* beri ruang antar baris */
  }

  .titleo a {
    font-size: 1.5rem; /* atau coba 1.3rem jika masih kecil */
    font-weight: 500;
  }
}

/* Ubah accordion: selalu putih, teks hitam, tanpa transisi warna */
.accordion,
.accordion:target,
.accordion.open,
.accordion:not(:target):hover,
.accordion:not(:target):active {
  color: #000 !important;
  background: #fff !important;
  background-color: #fff !important;
  --circle-bg: #fff !important;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
  opacity: 1 !important;
  transition: box-shadow 0.2s, opacity 0.2s, grid-template-rows 0.2s !important;
}

/* Hilangkan animasi lingkaran pada pseudo-element */
.accordion::before,
.accordion::after {
  display: none !important;
}

/* Judul dan konten accordion juga selalu hitam */
.titleo a,
.contento,
.contento p,
.contento a {
  color: #000 !important;
  background: none !important;
  text-shadow: none !important;
  transition: none !important;
}

/*---------------------------------------
  Youtube SECTION            
-----------------------------------------*/
.video-thumbnail iframe {
  pointer-events: none;
  border: 2px solid #ccc;
  border-radius: 8px;
}

.video-thumbnail:hover iframe {
  border-color: #af2c2c;
  cursor: pointer;
}

.video-thumbnail small {
  font-size: 1.3rem;
  color: #000;
}

.video-thumbnail h3,
.video-thumbnail h4,
.video-thumbnail h5,
.video-thumbnail small {
  font-weight: 600;
}

/*---------------------------------------
  REVIEW SECTION            
-----------------------------------------*/
.card-0 {
  background-color: #f5f5f5;
  color: #000;
  border-radius: 12px;
  padding: 30px;
  width: 100%; /* fleksibel penuh */
  max-width: 600px; /* batas maksimal agar tidak terlalu lebar */
  margin: auto; /* agar tetap di tengah */
  text-align: left;
}

.profile-pic-vertical {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #faa52e;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-left: 5px;
}

.rating-stars i {
  font-size: 14px;
  margin-right: 1px;
}

.open-quotes,
.close-quotes {
  width: 24px;
  height: 24px;
}

#carouselExampleIndicators {
  background-color: #dcdcdc;
}

/* Navigasi tombol kiri & kanan */
#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #faa52e;
  border-radius: 50%;
  opacity: 1;
}

#carouselExampleIndicators .carousel-control-prev {
  left: 4rem; /* Geser lebih dekat ke card */
}

#carouselExampleIndicators .carousel-control-next {
  right: 4rem;
}

#carouselExampleIndicators .carousel-control-prev-icon,
#carouselExampleIndicators .carousel-control-next-icon {
  filter: invert(
    1
  ); /* Ubah warna jadi gelap agar terlihat di background terang */
}

.carousel-indicators {
  position: relative; /* agar tetap muncul dalam layout */
  margin-top: 20px;
  justify-content: center;
}

.carousel-indicators li {
  background-color: #faa52e; /* warna indikator aktif/tidak aktif */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
}

@media (min-width: 1400px) {
  #carouselExampleIndicators .carousel-control-prev {
    left: 8.5rem;
  }

  #carouselExampleIndicators .carousel-control-next {
    right: 8.5rem;
  }
}

@media (min-width: 1900px) {
  #carouselExampleIndicators .carousel-control-prev {
    left: 23rem;
  }

  #carouselExampleIndicators .carousel-control-next {
    right: 23rem;
  }
}

/* Responsif */
@media (max-width: 768px) {
  .card-0 {
    padding: 20px;
    max-width: 100%;
  }
  .card .carousel-item {
    padding: 12px;
  }
  .flex-mobile-block {
    display: block !important;
    text-align: center;
  }

  .profile-pic-vertical {
    width: 60px;
    height: 60px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  #carouselExampleIndicators .carousel-control-prev,
  #carouselExampleIndicators .carousel-control-next {
    width: 36px;
    height: 36px;
  }

  #carouselExampleIndicators .carousel-control-prev {
    top: 70px;
    left: 40px; /* sedikit ke kiri */
    transform: translateY(-50%);
  }

  #carouselExampleIndicators .carousel-control-next {
    top: 70px;
    right: 40px; /* sedikit ke kanan */
    transform: translateY(-50%);
  }
}

/*---------------------------------------
  MEMBERSHIP SECTION            
-----------------------------------------*/
.membership-section .container {
  position: relative;
  z-index: 2;
}

.table-responsive {
  border-radius: var(--border-radius-medium);
}

.table-responsive tbody,
.table-responsive td,
.table-responsive tfoot,
.table-responsive th,
.table-responsive thead,
.table-responsive tr {
  border: 0;
}

.table-responsive thead tr {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.table-responsive thead th {
  padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
  background-color: var(--section-bg-color);
}

.table > :not(caption) > * > * {
  padding: 18px 16px;
}

.table-responsive .bi-check-circle-fill {
  color: var(--primary-color);
}

.table-responsive .bi-x-circle-fill {
  color: var(--custom-btn-bg-hover-color);
}

.membership-form {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  padding: 35px;
}

.membership-form .form-floating > textarea {
  border-radius: var(--border-radius-medium);
  height: 100px;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-form .form-floating > textarea {
  border-radius: var(--border-radius-medium);
  height: 120px;
}

.contact-form .form-floating {
  font-size: 12px;
}

.contact-info {
  position: relative;
}

.contact-info-item {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.contact-info-body {
  padding: 20px 30px;
}

.contact-info-body strong,
.contact-info-item a {
  color: var(--white-color);
}

.contact-info-body strong {
  font-size: 11px;
}

.contact-info-item a {
  font-size: 15px;
}

.br-mobile {
  display: none;
}

@media (max-width: 991px) {
  .contact-link[href^="mailto:"] {
    font-size: 14px;
  }
  .contact-info-body strong {
    font-size: 14px;
    font-weight: 600;
  }
  .contact-info-body {
    padding: 10px 15px;
  }
  .br-mobile {
    display: inline;
  }

  .br-mobile::after {
    content: "\A"; /* baris baru */
    white-space: pre;
  }
}

.contact-info-footer {
  background-color: var(--custom-btn-bg-hover-color);
  padding: 10px 20px;
  transition: all 0.3s;
}

.contact-info-footer:hover {
  background-color: var(--custom-btn-bg-color);
}

.contact-info-footer a {
  display: block;
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  CONTACT MENU           
-----------------------------------------*/
.dhaha-contact-subtitle {
  color: #2ca7a6;
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

.dhaha-contact-title {
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0;
  line-height: 1.2;
}

.dhaha-contact-paragraph {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.dhaha-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .dhaha-contact-title {
    font-size: 28px;
  }

  .dhaha-map-container iframe {
    height: 300px;
  }

  .dhaha-contact-text {
    margin-bottom: 30px;
  }
}

/*---------------------------------------
  SITE FOOTER            
-----------------------------------------*/
.site-footer {
  position: relative;
  /* margin-top: 100px; */
  background-image: url("../images/gpt.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.site-footer svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-content {
  /* background-color: #1c2954; */
  color: white;
  padding: 90px 0 0 0;
  text-align: left;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.8); /* atau white langsung */
}

.footer-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
}

.site-footer .social-icon {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: left;
  gap: 20px;
}

.site-footer .social-icon-link {
  color: white;
  font-size: 1.5rem;
}

.border-top-white-light {
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: rgba(255, 255, 255, 0.2);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  border-width: 2px;
  box-shadow: none;
  color: var(--p-color);
  margin-bottom: 20px;
  padding: 10px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

.form-floating > label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.header-form {
  position: relative;
}

.header-form .form-control {
  padding-left: 42px;
}

.header-form-icon {
  width: 24px;
  position: absolute;
  top: 0;
  margin: 12px;
  margin-left: 15px;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.marketing-wrapper {
  margin-top: 16px;
  max-width: 100%;
}

.marketing-wrapper h3 {
  font-weight: 600;
  padding: 0px 0px 5px 30px;
}

.section-title {
  font-weight: 600;
  color: #1d2a5c;
  margin-bottom: 12px;
  text-align: right;
  padding: 0 16px;
}

.scroll-wrapper {
  height: 230px;
  overflow-y: hidden;
  position: relative;
  background: white; /* atau background container kamu */
  border-radius: 8px;
  padding: 8px;
}

.marketing-scroll-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* animation: scroll-up 20s linear infinite; */
  padding: 0 16px;
  max-height: none;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(
      -50%
    ); /* hanya geser setengah karena isi digandakan */
  }
}

.scroll-aktif {
  animation: scroll-up 20s linear infinite;
}

.marketing-item {
  width: calc(50% - 10px); /* 2 kolom */
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f6f9;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
}

.marketing-item i {
  color: #179ca8;
}

/*---------------------------------------
  whatsapp chat          
-----------------------------------------*/

/* a:link,
a:visited {
  color: #444;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
h1 {
  font-size: 20px;
  text-align: center;
  display: block;
background: linear-gradient(to right top, #27c6bd, #148c97);
  padding: 20px;
  color: #fff;
  border-radius: 50px;
}
.credit {
  background: #fff;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
} */

/* CSS Multiple Whatsapp Chat */
#whatsapp-chat {
  position: fixed;
  background: #fff;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}
a.blantershow-chat {
  background: linear-gradient(to right top, #179ca8, #148c97);
  color: #fff;
  position: fixed;
  z-index: 98;
  bottom: 25px;
  right: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.blantershow-chat i {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}
.header-chat {
  background: linear-gradient(to right top, #179ca8, #148c97);
  color: #fff;
  padding: 20px;
}
.header-chat h3 {
  margin: 0 0 10px;
}
.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.info-avatar {
  position: relative;
}
.info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}
.info-avatar:before {
  content: "\f232";
  z-index: 1;
  font-family: "Font Awesome 5 Brands";
  background: #23ab23;
  color: #fff;
  padding: 4px 5px;
  border-radius: 100%;
  position: absolute;
  top: 30px;
  left: 30px;
}
a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 2.5s;
}
a.informasi:hover {
  background: #f1f1f1;
}
.info-chat span {
  display: block;
}
#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}
#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#get-label,
#get-nama {
  color: #fff;
}
span.my-number {
  display: none;
}
.blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
}
textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 23px;
  outline: none;
  resize: none;
}
a#send-it {
  color: #555;
  /* width: 40px; */
  margin: -5px 0 0 5px;
  font-weight: 700;
  padding: 8px;
  background: #eee;
  border-radius: 10px;
}
.first-msg {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
}
.first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}
.start-chat .blanter-msg {
  display: flex;
}
#get-number {
  display: none;
}

.head-home p,
.head-home h4 {
  color: var(--white-color);
}
a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}
@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1;
}
.show {
  display: block;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1;
}

/* Aturan PENGECUALIAN untuk .show di dalam .navbar */
.navbar .show {
  /* Nonaktifkan animasi */
  animation-name: none;
}

/*---------------------------------------
screen       
-----------------------------------------*/
@media (max-width: 768px) {
  .marketing-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d2a5c;
    margin-bottom: 12px;
    text-align: left;
  }

  .site-footer-title {
    padding: 0 32px;
  }

  .footer-content {
    /* background-color: #1c2954; */
    padding: 30px 0 0 0;
  }

  .marketing-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .marketing-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f4f6f9;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    width: 100%;
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-padding-tp {
    padding-top: 50px;
  }

  /* ============================================= */
  /* ==       NAVBAR & MENU AKORDEON MOBILE     == */
  /* ============================================= */
  .navbar {
    background-color: rgb(247, 247, 247);
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px;
    padding: 0;
  }

  /* --- A. Tampilan Akordeon (Pengganti Dropdown Melayang) --- */

  /* 1. Reset Total Style Dropdown Bawaan di Mobile */
  /* DISEDERHANAKAN: Menggabungkan beberapa aturan .dropdown-menu menjadi satu. */
  .navbar-collapse .dropdown-menu {
    position: static; /* Hapus posisi melayang */
    display: none; /* Sembunyikan by default, JS yang akan menampilkan */
    border: none;
    box-shadow: none;
    background: transparent; /* Hapus background putih agar menyatu */
    width: 100%;
    padding-left: 20px; /* Beri indentasi untuk sub-item */
    margin: 0; /* Reset margin */
    opacity: 1; /* Pastikan opacity 1 */
    pointer-events: auto; /* Pastikan bisa di-klik */
  }

  /* Perbaikan untuk Submenu yang Keluar Layar */
  .navbar-collapse .dropdown-submenu .dropdown-item {
    white-space: normal; /* Izinkan teks untuk wrap ke baris baru */
    word-wrap: break-word; /* Paksa teks panjang untuk patah */
    padding-right: 10px; /* Kurangi padding kanan agar tidak terlalu mepet */
  }

  /* 2. Atur Wrapper agar Judul & Panah Sejajar */
  .navbar-collapse .nav-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* 3. Styling Tombol Panah */
  .navbar-collapse .dropdown-arrow-toggle {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
  }

  /* 4. Membuat Ikon Panah 'V' */
  .navbar-collapse .dropdown-arrow-toggle::after {
    content: "\f282"; /* Bootstrap Icons: chevron-down */
    font-family: bootstrap-icons !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.3s ease;
  }

  /* 5. Animasi Putar Panah saat Menu Terbuka */
  .navbar-collapse
    li.toggled
    > .nav-link-wrapper
    .dropdown-arrow-toggle::after {
    transform: translate(-50%, -50%) rotate(-180deg);
  }

  /* --- A. Reset Kotak Subdropdown --- */
  /* Targetkan .dropdown-menu yang ada di dalam .dropdown-submenu */
  .navbar-collapse .dropdown-submenu .dropdown-menu {
    padding-left: 15px; /* Tambah indentasi lebih dalam agar terlihat seperti anak */
    background: transparent !important; /* Hapus background putih */
    box-shadow: none !important;
    border: none !important;
  }

  /* --- B. Styling Item di Dalam Subdropdown --- */
  .navbar-collapse .dropdown-submenu .dropdown-item {
    font-size: 0.9em; /* Buat font sedikit lebih kecil untuk hierarki */
    font-weight: normal; /* Pastikan teks tidak tebal */
    padding-top: 12px;
    padding-bottom: 12px;
    /* (Opsional) Tambahkan garis pemisah antar item */
    border-bottom: 1px solid #eee;
  }

  /* (Opsional) Hapus garis pemisah di item terakhir agar rapi */
  .navbar-collapse .dropdown-submenu li:last-child .dropdown-item {
    border-bottom: none;
  }

  .hero-section {
    position: relative;
    top: 80px;
    margin-bottom: 82px;
  }

  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 40px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .site-footer {
    padding-top: 20px;
    /* padding-bottom: 100px; */
  }

  .footer-content p {
    padding-top: 11px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .site-footer .social-icon {
    justify-content: center;
  }

  .section-title-mobile-offset {
    position: relative;
    bottom: -20px;
  }
}

@media screen and (max-width: 480px) {
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-info-item {
    width: 72%;
  }
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}
