/*
====================================
  VARIABEL WARNA & KONFIGURASI GLOBAL
====================================
*/
:root {
  /* -- Font Utama -- */
  --font-poppins: 'Poppins', sans-serif;

  /* -- Warna Utama (Oranye) -- */
  --color-main: #F48C06;
  --color-main-hover: #d17600;
  --color-main-darker: #b66700;
  --color-main-alt: #fd7e14;
  /* Digunakan di custom property card */

  /* -- Warna Sekunder (Biru) -- */
  --color-secondary-blue: #5f6ed5;
  --color-secondary-blue-hover: #4958bb;
  --color-accent-blue: #487bdb;

  /* -- Warna Custom Primary (Biru) -- */
  --color-custom-primary: #0D77CE;
  --color-custom-primary-hover: #0867b4;

  /* -- Warna Aksi (Success, Warning, dll) -- */
  --color-success: #17b860;
  --color-success-hover: #10a353;
  --color-success-gradient-start: #1abc9c;
  --color-success-gradient-end: #2ecc71;
  --color-success-gradient-start-hover: #16a085;
  --color-success-gradient-end-hover: #27ae60;
  --color-danger: #dc3545;
  --color-danger-dark: #da0000;

  /* -- Warna Teks -- */
  --text-color-light: #f1f1f1;
  --text-color-white: #ffffff;
  --text-color-dark: #333333;
  --text-color-black: #000000;
  --text-color-muted: #777777;
  --text-color-dark-blue: #121c36;
  --text-color-gray: #6c757d;
  --text-color-gray-dark: #495057;

  /* -- Warna Latar Belakang (Background) -- */
  --bg-light: #f1f1f1;
  --bg-white: #ffffff;
  --bg-dark: #000000;
  --bg-light-gray: #EDECEA;
  --bg-lightest-gray: #f9f9f9;
  --bg-overlay-dark: rgba(0, 0, 0, 0.4);
  --bg-overlay-darker: rgba(0, 0, 0, 0.555);
  --bg-overlay-glass: rgba(255, 255, 255, 0.1);
  --bg-overlay-glass-search: rgba(255, 255, 255, 0.397);

  /* -- Warna Border & Shadow -- */
  --border-color-light: #dddddd;
  --border-color-medium: #cccccc;
  --border-color-dark: #aaaaaa;
  --border-color-extra-light: #e3e3e3;
  --shadow-color-dark: #333333;
  --shadow-color-light: #dddddd;
  --shadow-generic: 0 4px 8px rgba(0, 0, 0, 0.05);

  /* -- Warna Spesifik Komponen -- */
  --color-youtube-red: rgb(255, 0, 0);
  --color-tiktok-grad-start: #25F4EE;
  --color-tiktok-grad-end: #FE2C55;
  --color-whatsapp-green: rgb(0, 184, 76);

  /* -- Badge & Alert Colors -- */
  --color-alert-check-bg: #fff4e6;
  --color-alert-check-border: #f48c06;
  --color-alert-check-text: #5a4200;
  --badge-success-bg: #d4edda;
  --badge-success-text: #155724;
  --badge-warning-bg: #fff3cd;
  --badge-warning-text: #856404;
  --badge-primary-bg: #cce5ff;
  --badge-primary-text: #004085;
}

body {
  background-color: var(--bg-light);
}

/* RESET CSS*/
* {
  margin: 0px;
  padding: 0px;
  font-family: poppins;
  text-decoration: none;
  list-style: none;
}

a {
  font-family: poppins;
  font-size: 13px;
  text-decoration: none !important;
}


/* ========== BOOTSTRAP CUSTOM ========== */

/* button */
.btn-primary {
  background-color: var(--color-main);
  color: white;
  border: none;
}

.btn-primary:hover {
  border: none;
  background-color: var(--color-main-hover);
}

.btn-warning-custom {
  background-color: var(--color-main);
  color: white;
  border: none;
}

.btn-warning-custom:hover {
  background-color: var(--color-main-hover);
  color: white;
  border: none;
}

.btn-success-custom {
  background-color: #28a745;
  /* Hijau original Bootstrap */
  background-image: linear-gradient(to right, #1abc9c, #2ecc71);
  /* Hijau elegan */
  color: #fff;
  border: none;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-success-custom:hover {
  background-image: linear-gradient(to right, #16a085, #27ae60);
}

.btn-primary-custom {
  background-color: var(--color-custom-primary);
  color: #fff;
  border: none;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
  background-color: var(--color-custom-primary-hover);
}

/* background */
.bg-warning-custom {
  background-color: var(--color-main) !important;
}

/* color */
.text-warning-custom {
  color: var(--color-main) !important;
}


/* CLEAR-BOTH */
.clear-both {
  clear: both;
}

/* page link */
.page-link {
  color: var(--color-main);
}

.active>.page-link,
.page-link.active {
  background-color: var(--color-main);
  border-color: var(--color-main);

}


/* ========== ICON FIXED BOTTOM RIGHT ========== */
.back-home a,
.scroll-up a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  right: 0;
  bottom: 0;
  position: fixed;
  box-shadow: 1px 1px 5px #333;
  color: white;
  margin: 15px;
  background-color: var(--color-main);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.back-home a:hover,
.scroll-up a:hover {
  background-color: #487bdb;
  color: white;
}

.scroll-up i {
  transform: rotate(90deg);
  display: block;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.view {
  display: none;
}

/* ==========SCROLL BAR========== */
::-webkit-scrollbar {
  background-color: #eaeaea;
  width: 7px;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-main);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to left, var(--color-main) 0%, #b66700 80%);
}



/* ==========TOP BAR========== */
.container-top-bar {
  position: absolute;
  top: 10px;
  left: 10%;
  background-color: rgba(255, 255, 255, .15);
  color: #eaeaea;
  right: 10%;
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding-top: 5px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.top-bar {
  width: 100%;
  margin: auto;
  padding-bottom: 5px;
}


.top-bar li {
  padding-right: 5px;
  padding-left: 5px;
  display: inline-block;
}

.top-bar li a {
  font-size: 14px;
  margin-top: 20px;
  color: #eaeaea;
  text-decoration: none;
}

.top-bar li a:hover {
  text-decoration: underline;
}

.email {
  border-right: 2px solid #aaa;
  border-left: 2px solid #aaa;
}

.fa-wifi {
  transform: rotate(50deg)
}


/* Link Left */
.link-left-tb {
  float: left;
}

/* Link Right */
.link-right-tb {
  float: right;
}

.link-right-tb i {
  color: var(--color-main);
}

/* ==========BANNER========== */
.container-banner {
  width: 100%;
}

.banner {
  width: 100%;
}

.banner .banner-mobile {
  display: none;
}

.container-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.title-banner {
  position: relative;
  z-index: 2;
  padding-top: 40vh;
  text-align: center;
  color: #fff;
}


.logo-nav {
  width: 80px;
}

.title-banner h3 {
  font-family: poppins;
  font-size: 58px;
  color: white;
  font-weight: bold;
}

.title-banner h4 {
  font-family: poppins;
  font-size: 46px;
  color: white;
  font-weight: bold;
}

.title-banner span {
  color: white;
  font-family: poppins;
  margin-bottom: 20px;
  display: inline-block;
}


.title-banner img {
  width: 70px;
  padding-top: 10px;
}

.play-youtube {
  width: 90px;
  display: inline-block;
  margin: auto;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.233) !important;
  border-radius: 50%;
}

.play-youtube:hover {
  background-color: var(--color-main) !important;
}

.border-link-yt {
  left: 0;
  right: 0;
  width: 80px;
  position: abosolute;
  height: 80px;
  display: block;
  border-radius: 50%;
  background-color: rgb(255, 0, 0) !important;
}

.link-youtube {
  margin-top: 60px;
  border: 10px solid rgba(90, 90, 90, 0.048);
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 90px;
  display: inline-block;
  background-color: white !important;
}

.link-youtube i {
  font-size: 28px;
  color: var(--color-main);
}

.title-banner span {
  width: 500px;
}

.btn-banner {
  background-color: var(--color-main);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-banner:hover {
  background-color: var(--color-main-hover);
}

.btn-banner-success {
  background-color: #17b860;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-banner-success:hover {
  background-color: #10a353;
}

.btn-banner-primary {
  background-color: #1692FA;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-banner-primary:hover {
  background-color: #0d77ce;
}

.btn-tiktok {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  font-weight: bold;
  border: none;
}

.btn-tiktok:hover {
  background: linear-gradient(135deg, #FE2C55, #25F4EE);
  box-shadow: 0 0 15px rgba(254, 44, 85, 0.6), 0 0 15px rgba(37, 244, 238, 0.6);
  transform: scale(1.05);
}

.ratio-9x16 {
  position: relative;
  width: 100%;
  /* 16 / 9 * 100% untuk portrait */
}

.ratio-9x16 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}


/* ==========PAGE TITLE BANNER PARALAX========== */
.page-title-paralax {
  position: relative;
  background-image: url('../../assets/img/banner/banner-page.jpeg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  align-items: left;
  justify-content: left;
  text-align: left;
  color: white;
  overflow: hidden;
}

.page-title-paralax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 1;
}

.page-title-paralax .content {
  position: relative;
  line-height: 30px;
  margin-top: 100px;
  z-index: 2;
}

.page-title-paralax h3 {
  font-size: 56px;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 3px 3px #000;
}

.page-title-paralax span {
  font-size: 30px;
  text-shadow: 3px 3px #000;
  font-weight: bold;
}

.page-title-paralax p {
  text-shadow: 3px 3px #000;
  font-size: 16px;
  margin-top: 15px;
}

/* ==========ELEMENTOR TOP WIDGET========== */
.container-elementor-top-widget {
  margin-top: 70px;
}

.container-elementor-top-widget span {
  color: #777;
  text-align: center;
}

.swiper-container-wrapper {
  display: flex;
  justify-content: center;
}

.my-swiper-elementor-top-widget {
  max-width: 1000px;
  width: 100%;
  position: relative;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: auto;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-main-hover);
  width: 28px;
  height: 28px;
  background-color: transparent;
  font-size: 20px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px !important;
}


.custom-arrow {
  width: 10px;
  color: var(--color-main-hover) !important;
  transition: transform 0.2s ease;
}

.custom-arrow:hover {
  transform: scale(1.2);
}


/* ==========WHY CHOOSE US========== */
.why-choose-us {
  margin-top: 50px;
}

.why-choose-us i {
  color: var(--color-main);
  font-size: 18px;
}

.why-choose-us .img-fluid {
  width: 400px;
}

/* ==========NAVBAR========== */
.navbar {
  transition: .2s;
}

.navbar2 {
  margin-top: -5px;
  height: 70px;
}

.navbar2 img {
  width: 60px;
}


.navbar-utama {
  height: 50px;
  margin-top: 0px;
  background-color: var(--color-main);
  transition: .2s;
}

.navbar-utama img {
  transition: .2s;
  width: 50px;
}

.navbar-nav a {
  font-size: 14px;
  transition: .2s;
  color: white;
  margin-left: 5px;
}

.navbar-nav a:hover {
  display: inline-block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: white;
  color: var(--color-main);
}

.navbar-nav .bi-chevron-right {
  transform: rotate(90deg);
  display: inline-block;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

/* Saat disembunyikan */
.navbar.hide {
  top: -100px;
  /* naik keluar layar */
}

/* ========== MIN CSS ========== */
/* br-radius */
.br-radius-10:hover {
  border-radius: 10px;
}

/* menu */
.active-menu {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: white;
  color: var(--color-main) !important;
}

/* ========== END MIN CSS ========== */


/* my nav */
.my-nav ul li ul {
  background-color: white;
  display: none;
  margin-left: 5px;
}

.my-nav ul li ul a {
  padding: 10px;
  display: block;
  color: var(--color-main);
  margin-left: -32px;
  text-decoration: none;
}

.my-nav ul li ul a:hover {
  display: block;
  background-color: var(--color-main);
  border-radius: 0px;
  color: white;
}

.my-nav ul li:hover ul {
  box-shadow: 1px 1px 5px #ddd;
  position: absolute;
  display: block;
}

/* CHECKBOX SEARCHING */
.searching-icon {
  cursor: pointer;
}

#checkbox-searching {
  display: none;
  cursor: pointer;
}

#bg-close-search {
  transition: .3s;
  top: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.555);
  cursor: pointer;
}

#btn-close-search {
  color: var(--color-main);
  float: left;
  background-color: white;
  border-radius: 20px;
  width: 40px;
  transition: .2s;
  height: 40px;
  box-shadow: 1px 1px 15px black;
  line-height: 40px;
}

#btn-close-search:hover {
  transform: scale(1.2);
  transition: .2s;
}

.box-searching {
  transition: .3s;
  width: 600px;
  left: 0px;
  right: 0px;
  border-radius: 20px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.397);
  position: fixed;
  padding: 100px;
  box-shadow: 1px 1px 15px #444;
  backdrop-filter: blur(10px);
  top: -100%;
}

.box-searching h3 {
  color: white;
  font-family: poppins;
  font-size: 18px;
  text-align: center;
}

.box-searching form table {
  width: 100%;
}

.box-searching form input {
  width: 100%;
  box-sizing: border-box;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: none;
  outline: none;
  padding: 10px;
  font-family: poppins;
}

.box-searching form button {
  border-top-right-radius: 20px;
  font-family: poppins;
  border-bottom-right-radius: 20px;
  color: var(--color-main);
  background-color: white;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  width: 100%;
}

/* CHECKED BOX SEARCHING */
#checkbox-searching:checked~.box-searching {
  top: 30%;
  transition: .7s;
}

#checkbox-searching:checked~label #bg-close-search {
  top: 0;
  transition: .7s;
}


/* ====ELEMEN UTAMA==== */

/* ==========KEPALA SEKOLAH========== */
.kepala-sekolah {
  margin-top: 100px !important;
}

/* img kepsek */
.img-kepsek {
  border-radius: 20px;
}


.img-kepsek img {
  width: 500px;
  box-shadow: 10px 10px 10px 0px #ddd;
  border-radius: 20px;
}

.deskripsi-kepsek {
  margin-top: 100px;
}

.deskripsi-kepsek h2 {
  font-weight: bold;
  color: #5f6ed5;

}

.deskripsi-kepsek span {
  font-family: poppins;
  font-size: 26px;
}

.label-table {
  width: 200px;
}

.deskripsi-kepsek table {
  padding: 10px;
  display: block;
  width: 100%;
}

.deskripsi-kepsek table tr {
  margin-bottom: 10px;
  display: block;
}


.deskripsi-kepsek table td {
  font-family: poppins;
}

.deskripsi-kepsek h2 {
  font-family: poppins;
}

.deskripsi-kepsek #pills-tab {
  margin-top: 20px;
}

.deskripsi-kepsek .tab-content {
  height: 320px;
  padding: 10px;
  overflow: auto;
}


/* ==========TITLE CONTENT=========== */
/* title conten home */

.title-content {
  text-align: center;
}

.title-content h3 {
  color: var(--color-main);
  font-size: 22px;
  font-weight: bold;
}

.title-content span {
  color: #777;
}

.title-content h2 {
  font-weight: bold;
  color: var(--color-main);
}

.title-content img {
  width: 120px;
  user-select: none;
  pointer-events: none;
}

/* title content page */
.title-content-page {
  float: left;
  text-align: left;
  border-bottom: 3px solid var(--color-main);
}


.title-content-page h4 {
  text-transform: uppercase;
  font-weight: bold;
}

/* ==========TOP DESTINASI========== */
.destination {
  padding-top: 100px;
}

.container-box-destination {
  margin: 50px 0px 50px 0px;
  padding: 20px !important;
}

.flip-box {
  margin-bottom: 20px;
  background-color: transparent;
  width: 100%;
  height: 270px;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.flip-box-front {
  background-color: transparent;
  color: black;
  transform: rotateY(0deg);
}

.flip-box-back {
  background-color: transparent;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
}


.flip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.flip-content-front {
  padding: 20px;
  color: white;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  width: 100%;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  content: '';
  background: linear-gradient(to top, #6b460080 0%, #664e005b 70%, #af690000 100%);
}

.flip-content-back {
  padding: 20px;
  color: white;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  bottom: 0px;
  position: absolute;
  width: 100%;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  content: '';
  background: linear-gradient(to top, #00256b50 0%, #0024663f 70%, #00266d00 100%);
}

.flip-content-back i {
  font-size: 28px;
}

.flip-title {
  margin: 0;
}

.more-flip {
  display: none;
}

/* ==========CUSTOM PROPERTY CARD========== */
.custom-property-card .property-desc {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.custom-property-card .btn-outline-orange {
  --bs-btn-color: #fd7e14;
  --bs-btn-border-color: #fd7e14;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #fd7e14;
  --bs-btn-hover-border-color: #fd7e14;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #fd7e14;
  --bs-btn-active-border-color: #fd7e14;
}

/* Opsional: Styling tambahan agar tampil lebih menarik */
.custom-property-card .property-card {
  background-color: #fff;
  padding: 20px;
  border: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.custom-property-card .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.custom-property-card .property-card .card-body {
  padding: 0px;
  text-align: center;
}

.custom-property-card .property-img {
  width: 100%;
  height: 220px;
  margin-bottom: 10px;
  object-fit: cover;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.custom-property-card .property-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #121c36;
}

.custom-property-card .property-type {
  color: #121c36;
  font-size: 1rem;
}


/* CUSTOM2 PROPERTY CARD */
.custom2-property-card .property-desc {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.custom2-property-card .btn-outline-orange {
  --bs-btn-color: #fd7e14;
  --bs-btn-border-color: #fd7e14;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #fd7e14;
  --bs-btn-hover-border-color: #fd7e14;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #fd7e14;
  --bs-btn-active-border-color: #fd7e14;
}

/* Opsional: Styling tambahan agar tampil lebih menarik */
.custom2-property-card .property-card {
  background-color: #fff;
  padding: 20px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.custom2-property-card .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.custom2-property-card .property-card .card-body {
  padding: 0px;
  text-align: center;
}

.custom2-property-card .property-img {
  width: 100%;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.custom2-property-card .property-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #121c36;
}

.custom2-property-card .property-type {
  color: #121c36;
  font-size: 1rem;
}



/* ==========BLOG========== */
.container-blog {
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #568cf10c;
}

/* BOX BLOG */
.container-box-blog {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px !important;
}

.container-box-blog .card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: none;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.container-box-blog .card-img {
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.container-box-blog .card img {
  height: 350px;
  object-fit: cover;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.container-box-blog .card img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.container-box-blog .card h5 {
  color: #001130;
  font-size: 18px;
  padding: 20px 0px 20px 0px;
}

.container-box-blog .card h5:hover {
  color: var(--color-main);
}

.container-box-blog .card .date-post {
  position: absolute;
  right: 0;
  margin: 30px;
  background-color: var(--color-main);
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.container-box-blog .more-blog {
  margin-top: 20px;
  text-align: center;
}

.container-box-blog .card-body small {
  padding: 5px;
  border-radius: 5px;
  background-color: #568cf118;
  border: 1px solid #fff;
  font-size: 12px;
  color: var(--color-main);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}



/* ==========VIEW BLOG========== */
.view-blog {
  margin-top: 120px;
  margin-bottom: 200px;
}

.view-blog .blog-content {
  text-align: justify;
}

.view-blog .from-post .img-author {
  float: left;
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin-right: 10px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.view-blog .blog-post img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.view-blog .from-post img {
  padding: 5px;
  width: 100%;
}

.view-blog .from-post small {
  font-size: 13px;
}

.view-blog .from-post span {
  font-size: 12px;
  display: block;
  color: #777;
}

.view-blog .share {
  text-align: right;
}

.view-blog .share li {
  display: inline-block;
  margin-left: 5px;
}

.view-blog .share li i {
  font-size: 23px;
  display: block;
}

.view-blog .share li i:hover {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

.view-blog .share li .bi-twitter-x {
  color: #000;
}

.view-blog .share li .bi-whatsapp {
  color: rgb(0, 184, 76);
}

.view-blog .blog-tags {
  margin-top: -20px;
}

.view-blog .blog-tags li {
  margin-bottom: 10px;
  display: inline-block;
}

.view-blog .blog-tags li a {
  color: #fff;
  background-color: #5f6ed5;
  padding: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.view-blog .blog-tags li a:hover {
  background-color: #4958bb;
}


/* ==========VIEW BLOG 2========== */
.view-blog2 .blog-hero-image {
  margin-top: -30px;
}

/* ==========SIDEBAR BLOG=========== */
.sidebar-blog .calendar h5 {
  text-align: right;
  font-size: 15px;
}

.sidebar-blog .free-packages table td,
.sidebar-blog .price-packages table td {
  padding-bottom: 10px;
}

.sidebar-blog .free-packages p {
  background-color: rgba(0, 212, 113, 0.315);
  color: rgb(0, 97, 52);
  display: inline;
  padding: 5px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

/* ==========SPLASH SCREEN========== */
.splash-screen-home,
.splash-screen-load-page {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999999;
  height: 100vh;
  background-color: #fff;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.splash-screen-home .logo-header,
.splash-screen-load-page .logo-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #09a9c9;
  text-align: center;
  font-size: 3em;
}

.splash-screen-home .logo,
.splash-screen-load-page .logo {
  width: 170px;
  position: relative;
  display: inline-block;
  opacity: 0;
}

.splash-screen-home .logo.active,
.splash-screen-load-page .logo.active {
  bottom: 0;
  opacity: 1;
  transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
}

.splash-screen-home .logo.fade,
.splash-screen-load-page .logo.fade {
  transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
}

.splash-screen-home .text-loading,
.splash-screen-load-page .text-loading {
  width: 100% !important;
  bottom: 40% !important;
  position: absolute !important;
  text-align: center !important;

}

/*** Spinner ***/
#spinner {
  opacity: 1;
  visibility: hidden;
  transition: opacity 1s ease-out, visibility 0s linear 1s;
  z-index: 99999;
  -webkit-transition: opacity 1s ease-out, visibility 0s linear 1s;
  -moz-transition: opacity 1s ease-out, visibility 0s linear 1s;
  -ms-transition: opacity 1s ease-out, visibility 0s linear 1s;
  -o-transition: opacity 1s ease-out, visibility 0s linear 1s;
}

#spinner.show {
  transition: opacity 1s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 1s ease-out, visibility 0s linear 0s;
  -moz-transition: opacity 1s ease-out, visibility 0s linear 0s;
  -ms-transition: opacity 1s ease-out, visibility 0s linear 0s;
  -o-transition: opacity 1s ease-out, visibility 0s linear 0s;
}


/* ==========CALENDAR========== */
.month {
  text-align: center;
  margin-bottom: 20px;
}

.month h1 {
  font-size: 36px;
  margin: 10px 0;
}

.weekdays {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  background-color: #eee;
  border-radius: 5px;
}

.weekdays div {
  flex: 1;
  text-align: center;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day {
  margin-top: 5px;
  padding: 8px;
  text-align: center;
  border-radius: 5px;
}

.today {
  background-color: var(--color-main);
  color: #fff;
}

/* ==========PAGE========== */
.body-page {
  background-color: #EDECEA;
}

.page {
  margin-top: 100px;
}

.nav-pills .nav-link {
  border-radius: 50px;
  color: #777;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 12px;
}

.page .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  border-radius: 50px;
  background-color: #fff;
  color: var(--color-main);
  font-weight: bold;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 12px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.page .menu-tabs {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}

.menu-tabs ul {
  display: flex;
  justify-content: center;
  padding: 0;

}

.menu-tabs ul li {
  margin: 0 5px;
}

/* card destinasi wisata*/
.page .card-destinasi-wisata {
  padding: 0px;
  margin: 10px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: .3s;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.page .card-destinasi-wisata:hover {
  transform: scale(1.030);
  transition: .3s;
  -webkit-transform: scale(1.030);
  -moz-transform: scale(1.030);
  -ms-transform: scale(1.030);
  -o-transform: scale(1.030);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.page .card-destinasi-wisata img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  width: 100%;
}

.page .card-destinasi-wisata p {
  font-weight: bold;
  color: var(--color-main);
  font-size: 16px;
  text-align: center;
  padding: 5px;
  margin-top: 10px;
}

/* view destinasi */
.maps-destinasi {
  padding-bottom: 20px;
}

.maps-destinasi h4 {
  padding-bottom: 20px;
}

.maps-destinasi iframe {
  height: 400px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  margin-bottom: 20px;
}


/* ==========BANNER PARALAX========== */
.banner-paralax {
  content: '';
  background-color: #00102e85;
  position: relative;
  overflow: hidden;
  padding: 120px 0px 120px 0px;
}

.img-paralax {
  background-image: url('../img/banner/banner-page.jpeg');
  background-size: cover;
  background-position: center;
  position: absolute;
  background-attachment: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.deskripsi-paralax {
  color: white;
}

.deskripsi-paralax h3 {
  font-size: 48px;
  font-weight: bold;
}

.deskripsi-paralax p {
  width: 400px;
}

.link-paralax {
  margin-top: 50px;
}

.link-paralax li {
  display: inline-block;
}

.link-paralax a {
  box-sizing: border-box;
  border: 1px solid white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  margin-left: 10px;
  padding: 10px;
  color: #5f6ed5;
  transition: .3s;
}

.link-paralax i {
  padding-left: 10px;
  padding-right: 5px;
}

.link-paralax a:hover i {
  transition: .3s;
  transform: scale(1.7);
}


/* ==========GALERI SECTION========== */
.galeri-kegiatan {
  padding: 70px 0px 70px 0px;
}

.galeri-kegiatan #gallery {
  justify-content: center;
}


.galeri-kegiatan .gallery-item {
  padding: 0;
}

.galeri-kegiatan .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 5px;
}

.galeri-kegiatan .category-gallery {
  margin: auto;
  text-align: center;
  justify-content: center;
}

.galeri-kegiatan .category-gallery button {
  margin: 5px;
  color: #777;
  border-radius: 20px;
}

.galeri-kegiatan .category-gallery .active {
  border: 1px solid var(--color-main);
  color: var(--color-main);
}

.img-galeri-kegiatan {
  margin-top: 30px;
}

.galeri-kegiatan .nav-pills .nav-link.active,
.galeri-kegiatan .nav-pills .show>.nav-link {
  background-color: transparent !important;
}

.gallery-item {
  position: relative;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 1.5%;
  left: 1.5%;
  width: 97%;
  height: 97%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.gallery-caption span {
  margin: auto;
  display: block;
}


.fancybox-content img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.gallery-caption-show {
  position: absolute;
  bottom: 1.5%;
  left: 1.5%;
  width: 97%;
  height: 97%;
  border: 1px solid var(--color-main);
  color: #fff;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  overflow: hidden;
  display: flex;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.gallery-caption-show span {
  margin: auto;
  display: block;
}

.gallery-caption-show img {
  width: 35px !important;
  height: 30px !important;
  margin: 5px;
  padding: 0px !important;
  border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -ms-border-radius: 2px !important;
  -o-border-radius: 2px !important;
}

/* More Image */
.gallery-item:hover .gallery-caption-show-more-image {
  opacity: 1;
}

.gallery-caption-show-more-image {
  position: absolute;
  bottom: 1.5%;
  left: 1.5%;
  width: 97%;
  height: 97%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.gallery-caption-show-more-image span {
  font-size: 20px;
  color: #ddd;
  margin: auto;
  display: block;
}

/* ==========CONTACT PERSON========== */
.contact-person img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  padding: 5px;
  border-radius: 50%;
  margin: 20px auto;
  text-align: center;
  background-color: #eee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.199);
}

.contact-person li a {
  font-size: 14px;
}

.contact-person li i {
  font-size: 18px;
  color: #666;
}

/* ==========CONTACT US========== */
.container-contact-us {
  width: 100%;
  margin-bottom: 100px;
}

.title-content-left {
  float: left;
  text-align: left;
}

.form-contact-us {
  margin-bottom: 20px;
}

.form-contact-us table {
  width: 100%;
}

.form-contact-us table td {
  font-family: poppins;
}

.input-td {
  width: 100%;
}

.form-contact-us table input {
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
  outline: none;
  border-radius: 8px;
  font-family: poppins;
  border: 1px solid #bbb;
}

.form-contact-us table textarea::placeholder,
.form-contact-us table input::placeholder {
  color: #bbb
}

.form-contact-us table textarea:focus,
.form-contact-us table input:focus {
  background-color: #568cf111;
}

.form-contact-us table button {
  background-color: #5f6ed5;
  padding: 10px;
  border-radius: 8px;
  border: none;
  color: white;
  outline: none;
}

.form-contact-us table button:hover {
  background-color: #4958bb;
}

.form-contact-us table textarea {
  border-radius: 8px;
  width: 100%;
  padding: 5px;
  padding-bottom: 50px;
  outline: none;
  font-family: poppins;
  border: 1px solid #bbb;
}

.input-td-left {
  width: 98% !important;
}

.input-td-right {
  width: 98% !important;
  float: right;
}

/* info-contact-us */
.card-info-contact {
  max-width: 450px;
  border-radius: 20px;
  margin: auto;
  background-color: white;
  box-shadow: 0px 10px 15px 4px #568cf159;
}

/* box info contact */
.container-box-info-contact {
  box-sizing: border-box;
  padding: 50px;
}

.box-info-contact {
  margin-bottom: 50px;
}

.icon-info-contact img {
  width: 80px;
  float: left;
  margin-right: 10px;
}

.title-info-contact h3 {
  font-size: 20px;
  font-weight: bold;
}

.deskripsi-info-contact p {
  color: #aaa;
  font-size: 14px;
}

/* ========== JASMANI ========== */
.container-jasmani {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
  /* Tambah sedikit agar fade space cukup */
  background-image: url('../img/banner/banner-page.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-bottom: 50px;
  overflow: hidden;
}

.fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--bg-light) 100%);
}


.container-jasmani .title-page {
  text-align: center;
  margin-bottom: 10px;
}

.container-jasmani .title-page span {
  color: #eee;
  display: inline-block;
}

.form-kalkulator {
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  /* semi-transparent border */
  margin: auto;
  max-width: 600px;
  padding-bottom: 100px !important;
  margin-bottom: 100px !important;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  /* semi-transparent white */
  backdrop-filter: blur(13px);
  /* blur effect */
  -webkit-backdrop-filter: blur(13px);
  /* Safari support */
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}


.form-kalkulator button {
  width: 100%;
}

.total-nilai {
  background-color: #fff;
  padding: 5px;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  width: 70px;
  height: 70px;
  font-size: 24px;
  color: #da0000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.form-kalkulator .text-center {
  display: none;
}

/* ==========TEAM / ALUMNI========== */
.item-team {
  margin-bottom: 15px;
}

.team-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header {
  position: relative;
  overflow: hidden;
  flex-direction: column;
}

.card-header-img {
  width: 64px;
  background: #aaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header-img img {
  height: 300px;
}

.card-header {
  border-bottom: 5px solid #ccc;

}

.level-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--color-main);
  box-shadow: 1px 1px 5px #888;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 3;
}

.card-body {
  padding: 1.5rem;
  position: relative;
}

.team-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.team-description {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}




/* ========== CARD KALKULATOR ========== */
.card-calculator {
  border-radius: 20px;
  background: white;
  width: 100%;
  padding: 20px;
  margin-bottom: 50px;
}

.card-calculator .card-menu-left a {
  color: #fff;
}

.card-calculator .card-menu-left a:hover {
  color: #000;
}

.card-calculator .card-menu-right a:hover {
  color: var(--color-main) !important;
}




/* ========== FOOTER ========== */
.container-footer {
  background-size: cover;
  background-color: #000;
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

footer .deskripsi-about {
  color: #eaeaea;
}

footer .deskripsi-about img {
  width: 150px;
  margin: auto;
  display: block;
  margin-bottom: 10px;
  /* border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  box-shadow: 8px 8px 3px 0px rgba(41, 41, 41, 0.253);
  -ms-border-radius: 10px;
  -o-border-radius: 10px; */
}

footer .deskripsi-about p {
  text-align: justify;
  font-size: 14px;
}

footer .deskripsi-about .read-more {
  background-color: #487bdb;
  padding: 5px;
  margin-top: 5px;
  border-radius: 5px;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  color: #fff;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

footer .deskripsi-about .read-more:hover {
  background-color: #fff;
  color: #487bdb;
}







/* title footer */
.title-footer {
  text-align: center;
}

.title-footer h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
  color: white;
}

/* deksripsi footer */
.deskripsi-footer li {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 20px;
}

.deskripsi-footer a {
  border: 1px solid #bbb;
  color: #bbb;
  text-decoration: none;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 8px;
}

.deskripsi-footer a:hover {
  background-color: white;
  color: var(--color-main);
}

.deskripsi-footer iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  box-shadow: 8px 8px 3px 0px rgba(41, 41, 41, 0.253);
}


/* about me */
.about-me p {
  color: white;
  text-align: justify;
  font-size: 13px;
}

/* tags */
.tags-deskripsi::-webkit-scrollbar {
  background-color: #eaeaea;
  width: 5px;
  border-radius: 20px;
}


.tags-deskripsi {
  padding-top: 10px;
  height: 250px;
  overflow-y: auto;
}

/* sosmed */
.sosmed-deskripsi ul {
  padding: 0px;
  text-align: center;
}


.sosmed-deskripsi a {
  display: inline-block;
  width: 45px;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 3px 3px 10px #6e3f00;
  border: 1px solid var(--color-main);
  transition: .3s;
  margin-right: 5px;
}

.sosmed-deskripsi a:hover {
  transition: .3s;
  background-color: var(--color-main);
}

.sosmed-deskripsi i {
  color: #fff;
  font-size: 20px;
}

.subscribe h3 {
  font-size: 18px;
  font-weight: normal;
}

.subscribe a {
  background-color: white;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  padding: 5px;
  color: var(--color-main);
}

.subscribe a:hover {
  background-color: red;
  color: white;
}


/* copyright */
.copyright {
  text-align: center;
  padding: 10px;
}

.copyright hr {
  width: 80%;
  padding-top: 20px;
  margin: auto;
  color: #ddd;
}

.copyright p {
  color: white;
  font-size: 14px;
}


/* ==========REGISTER========== */
/* Timeline Step - 75% Size */
.timeline-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.timeline-step {
  opacity: 0;
  transform: translateX(-40px);
}

.timeline-step.animated {
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  transform: translateX(0);
}

.timeline-steps .timeline-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0.75rem;
  /* 1rem * 0.75 */
}

@media (min-width:768px) {
  .timeline-steps .timeline-step:not(:last-child):after {
    content: "";
    display: block;
    border-top: 0.1875rem dotted #aaa;
    /* 0.25 * 0.75 */
    width: 2.595rem;
    /* 3.46 * 0.75 */
    position: absolute;
    left: 5.625rem;
    /* 7.5 * 0.75 */
    top: 0.234375rem;
    /* .3125 * 0.75 */
  }

  .timeline-steps .timeline-step-checked:not(:last-child):after {
    border-top: 0.1875rem dotted var(--color-main);
  }

  .timeline-steps .timeline-step:not(:first-child):before {
    content: "";
    display: block;
    border-top: 0.1875rem dotted #aaa;
    width: 2.859375rem;
    /* 3.8125 * 0.75 */
    position: absolute;
    right: 5.625rem;
    top: 0.234375rem;
  }

  .timeline-steps .timeline-step-checked:not(:first-child):before {
    border-top: 0.1875rem dotted var(--color-main);
  }
}

.timeline-steps .timeline-content {
  width: 7.5rem;
  /* 10 * 0.75 */
  text-align: center;
}

.timeline-steps .timeline-content .inner-circle {
  border-radius: 1.125rem;
  /* 1.5 * 0.75 */
  height: 0.75rem;
  width: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #aaa;
}

.timeline-steps .timeline-content .inner-circle:before {
  content: "";
  background-color: #aaa;
  display: inline-block;
  height: 2.25rem;
  /* 3 * 0.75 */
  width: 2.25rem;
  min-width: 2.25rem;
  border-radius: 4.6875rem;
  /* 6.25 * 0.75 */
  opacity: 0.5;
}

.timeline-steps .timeline-content-checked .inner-circle:before {
  content: "";
  background-color: var(--color-main);
  display: inline-block;
  height: 2.25rem;
  width: 2.25rem;
  min-width: 2.25rem;
  border-radius: 4.6875rem;
  opacity: 0.5;
}

.timeline-steps .timeline-content-checked .inner-circle {
  background-color: transparent;
  position: relative;
}

.timeline-steps .timeline-content-checked .inner-circle::after {
  content: "✔️";
  color: white;
  font-size: 1.5rem;
  position: absolute;
  top: -0.7rem;
  left: 1;
  right: 1;
  text-align: center;
}

.timeline-steps .timeline-content-processing .inner-circle {
  background-color: transparent;
  /* biru muda */
  position: relative;
}

.timeline-steps .timeline-content-processing .inner-circle::after {
  content: "⏳";
  font-size: 1.5rem;
  position: absolute;
  top: -0.7rem;
  left: 1;
  right: 1;
  text-align: center;
}

.step-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.step-form .card-radio .card {
  border: 1px solid #ccc;
}

.step-form-biodata {
  max-width: 600px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--color-main-darker);
  margin: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


/* card radio */
.card-radio input[type="radio"] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.card-radio label {
  border: 2px solid transparent;
  cursor: pointer;
  padding: 1rem;
  border-radius: .5rem;
  transition: 0.3s;
  height: 100%;
}

.card-radio input[type="radio"]:checked+label {
  border-color: var(--color-main);
  background-color: #f48d063a;
}

.badge-discount {
  background-color: #dc3545;
  font-size: 0.8rem;
}

.price-old {
  text-decoration: line-through;
  font-size: 0.9rem;
  color: #888;
}

.form-navigation {
  margin-top: -70px;
}

.form-navigation button {
  margin-bottom: 10px;
  width: 300px;
  padding: 10px;
}

/* ==========FORM GROUP (CUSTOM)========== */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control {
  height: 2.5rem;
  /* Lebih kecil */
  padding: 0.75rem 0.5rem 0.25rem;
  /* Ramping */
  font-size: 0.9rem;
  border-radius: 0.4rem;
}

.form-label {
  position: absolute;
  top: 0.6rem;
  left: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  pointer-events: none;
  transition: all 0.2s ease;
  background-color: white;
  padding: 0 0.25rem;
}

.form-control:focus+.form-label,
.form-control:not(:placeholder-shown)+.form-label {
  top: -0.5rem;
  left: 0.4rem;
  font-size: 0.85rem;
  color: #495057;
}


.form-group.floating-label {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group.floating-label input,
.form-group.floating-label select {
  height: 2.7rem;
  font-size: 0.95rem;
  padding: 1rem 0.5rem 0.25rem;
  border-radius: 0.4rem;
  border: 1px solid #ced4da;
  background-color: #fff;
  width: 100%;
  appearance: none;
}

.form-group.floating-label label {
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  pointer-events: none;
  background: white;
  padding: 0 0.25rem;
  transition: all 0.2s ease;
}

/* Label naik saat input diisi/fokus */
.form-group.floating-label input:focus+label,
.form-group.floating-label input:not(:placeholder-shown)+label,
.form-group.floating-label select:focus+label,
.form-group.floating-label select:valid+label {
  top: -0.5rem;
  left: 0.4rem;
  font-size: 0.8rem;
  color: #495057;
}


/* Preview Account */
.table-preview-account {
  width: 100%;
  margin-bottom: 0;
}

.table-preview-account td {
  padding: 8px 16px;
  border: none;
  vertical-align: top;
}

.table-preview-account td.label {
  font-weight: 600;
  width: 180px;
  white-space: nowrap;
}

.alert-check-data {
  background-color: #fff4e6;
  /* warna terang dari var(--color-main) */
  border: 1px solid var(--color-main);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 25px;
  font-family: 'Segoe UI', sans-serif;
  color: var(--color-alert-check-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-main-darker);
}

.alert-header .icon {
  font-size: 1.5rem;
  color: var(--color-main);
}

.alert-instructions {
  margin-top: 15px;
  margin-left: 20px;
  color: #7a5d10;
  font-size: 0.95rem;
}

.alert-instructions li {
  margin-bottom: 5px;
}

/* Mendefinisikan variabel global untuk tema */
:root {
  --border-color: #e3e3e3;
  --card-bg: #ffffff;
  --card-header-bg: #f8f9fa;
  --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  --text-primary: #333;
  --text-secondary: #555;
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --border-radius: 10px;

  /* Warna Badge */
  --success-bg: #d4edda;
  --success-text: #155724;
  --warning-bg: #fff3cd;
  --warning-text: #856404;
  --primary-bg: #cce5ff;
  --primary-text: #004085;
}

body {
  background-color: #f9f9f9;
  /* Warna latar belakang halaman */
  margin: 0;
  padding: 0;
  color: var(--text-primary);
}

/* Style umum untuk section rekap */
.rekap-section {
  max-width: 700px;
  margin: 2rem auto;
  /* Memberi jarak atas bawah dan otomatis di tengah */
  font-family: var(--font-family);
  padding: 0 1rem;
  /* Padding untuk tampilan mobile */
}

.rekap-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease-in-out;
}

.rekap-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.rekap-card .rekap-header {
  background-color: var(--card-header-bg);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.rekap-card .rekap-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.rekap-card .rekap-body {
  padding: 0.5rem 1rem;
}

.rekap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  /* Menghilangkan list-style default dari <dl> */
}

/* Setiap baris di dalam list (dibungkus div) */
.rekap-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.9rem;
}

.rekap-list div:last-child {
  border-bottom: none;
}

/* <dt> adalah label (Term) */
.rekap-list dt {
  color: var(--text-secondary);
  padding-right: 1rem;
  /* Jarak antara label dan value */
}

/* <dd> adalah value (Description) */
.rekap-list dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

/* === BADGE STYLES === */
/* Base style untuk semua badge */
.badge {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 0.85em;
  border-radius: 5px;
  font-weight: 700;
  line-height: 1;
}

/* Modifier untuk warna badge */
.badge-success {
  background-color: var(--success-bg);
  color: var(--success-text);
}

.badge-warning {
  background-color: var(--warning-bg);
  color: var(--warning-text);
}

.badge-primary {
  background-color: var(--primary-bg);
  color: var(--primary-text);
}

/* .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control {
  height: 2.5rem;
  padding: 0.75rem 0.5rem 0.25rem;
  font-size: 0.9rem;
  border-radius: 0.4rem;
}

.form-label {
  position: absolute;
  top: 0.6rem;
  left: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  pointer-events: none;
  transition: all 0.2s ease;
  background-color: white;
  padding: 0 0.25rem;
}

.form-control:focus+.form-label,
.form-control:not(:placeholder-shown)+.form-label {
  top: -0.5rem;
  left: 0.4rem;
  font-size: 0.85rem;
  color: #495057;
}


.select2-container--default .select2-selection--single {
  height: 2.5rem !important;
  padding: 0 0.5rem !important;
  border-radius: 0.4rem;
  border: 1px solid #ced4da;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.select2-selection__rendered {
  display: flex !important;
  align-items: center;
  height: 100%;
  padding-left: 0 !important;
  font-size: 0.9rem;
  line-height: 1.2 !important;
}

.select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 0.5rem;
  display: flex;
  align-items: center;
} */

.captcha-box {
  background: #f2f2f2;
  padding: 10px 20px;
  border-radius: 10px;
  user-select: none;
  display: inline-block;
}


/* ==========LOGIN========== */
.container-sign {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.container-sign .login-form {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  width: 500px;
  box-shadow: 1px 1px 5px #ccc;
}

.container-sign .login-form .title-sign {
  text-align: center;
  margin-bottom: 30px;
}

.container-sign .login-form .title-sign img {
  margin-bottom: 20px;
}

.container-sign .login-form form span {
  background-color: transparent;
}

.container-sign .login-form form #togglePassword {
  cursor: pointer;
}

.container-sign .login-form form button {
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .container-sign .login-form {
    width: 100%;
  }

}

/* ==========END LOGIN========== */


/* ==========BOTTOM MENU (MOBILE)========== */
.bottom-menu-mobile {
  display: none;
}



/* ==========SLIDE MENU (DESKTOP)========== */
/* Slide Menu */
.slide-menu {
  position: fixed;
  top: 0;
  left: -550px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  transition: left 0.3s cubic-bezier(.4, 0, .2, 1);
  z-index: 1050;
  padding: 1.5rem 1rem;
  overflow-y: auto;
  /* ✅ Scroll */
  scrollbar-width: thin;
}

.slide-menu.show {
  left: 0;
}

/* Scrollbar custom */
.slide-menu::-webkit-scrollbar {
  width: 6px;
}

.slide-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1049;
}

.menu-overlay.active {
  display: block;
}

/* Toggle Button */
.slide-toggle-btn {
  position: fixed;
  top: 50%;
  margin-left: -5px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transform: translateY(-50%);
  z-index: 1100;
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-toggle-btn:hover {
  background: #f8f9fa;
}

.slide-toggle-btn.hidden {
  display: none !important;
}

/* Animasi tombol */
@keyframes pulseExpand {

  0%,
  100% {
    width: 30px;
  }

  50% {
    width: 45px;
  }
}

.animate-loop {
  animation: pulseExpand 1.5s infinite;
}

/* Menu Item */
.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  color: #495057;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.menu-item i {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Section style */
.menu-section {
  margin-bottom: 1.5rem;
}

.menu-header {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Warna soft tiap kategori */
.section-home .menu-item {
  background: #fd7d1441;
}

.section-aplikasi .menu-header {
  color: #1d6ef0;
}

.section-aplikasi .menu-item {
  background: #eef5ff;
}

.section-layanan .menu-header {
  color: #0ca678;
}

.section-layanan .menu-item {
  background: #e9fdf4;
}

.section-konten .menu-header {
  color: #d63384;
}

.section-konten .menu-item {
  background: #fdf0f7;
}

.section-publikasi .menu-header {
  color: #fd7e14;
}

.section-publikasi .menu-item {
  background: #fff4e6;
}

.section-kontak .menu-header {
  color: #6f42c1;
}

.section-kontak .menu-item {
  background: #f4edff;
}

/* ==========verlay khusus popup pengumuman========== */
.announcement-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

.announcement-popup.active {
  opacity: 1;
  visibility: visible;
}

/* Box konten popup */
.announcement-popup .popup-content {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: relative;
  margin: 40px 0;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}


.announcement-popup.active .popup-content {
  transform: translateY(0);
  opacity: 1;
}

/* Tombol close (pojok kanan atas) */
.announcement-popup .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.announcement-popup .close-btn:hover {
  color: #333;
}

/* Judul & isi */
.announcement-popup h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #333;
}

.announcement-popup p {
  margin: 0 0 20px;
  font-size: 15px;
  color: #666;
}

/* Tombol aksi */
.announcement-popup .action-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-main), var(--color-secondary-blue));
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.announcement-popup .action-btn:hover {
  transform: scale(1.05);
}

/* ==========PACKAGES========== */
.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

/* overlay hitam gradasi dari bawah */
.package-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  /* atur tinggi area gradasi */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  z-index: 2;
}

.package-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
  display: block;
}

.package-card:hover .package-image {
  transform: scale(1.05);
}

.package-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 3;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}

.package-info h5 {
  font-weight: 700;
}

.package-info small {
  display: block;
  margin-top: 2px;
  font-weight: 500;
  opacity: 0.85;
}

.package-price {
  font-weight: 900;
  font-size: 1.25rem;
  margin-top: 4px;
}

.btn-detail {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 5px 12px;
  background-color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff6600;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  z-index: 3;
  /* di atas overlay juga */
}

.btn-detail:hover {
  background-color: #ff6600;
  color: white;
}


/* ==========PACKAGES VIEW========== */
.bbp-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Image gallery */
.bbp-image-gallery {
  border-radius: 12px;
  overflow: hidden;
}

.bbp-main-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
}

.bbp-thumbnails {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.bbp-thumbnail {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
  transition: all 0.3s ease;
}

.bbp-thumbnail.active,
.bbp-thumbnail:hover {
  border-color: #0d6efd;
  transform: scale(1.05);
}

/* Product info */
.bbp-product-info {
  padding-left: 2rem;
}

.bbp-product-title {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

.bbp-product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-main);
}

.bbp-total-price {
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0;
}

.bbp-product-stock {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #198754;
}

.bbp-product-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Quantity */
.bbp-quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bbp-quantity-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bbp-quantity-btn:hover {
  border-color: #0d6efd;
  background: #f8f9fa;
}

.bbp-quantity-input {
  width: 60px;
  height: 34px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

/* Buttons */
.bbp-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bbp-btn {
  flex: 1;
  min-width: 120px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.bbp-btn-whatsapp {
  background: #25d366;
  color: white;
}

.bbp-btn-whatsapp:hover {
  background: #128c7e;
}

.bbp-btn-cart {
  background: #fd7e14;
  color: white;
}

.bbp-btn-cart:hover {
  background: #ff922b;
}


/* Responsive */
@media (max-width: 767.98px) {
  .bbp-product-info {
    padding-left: 0;
    margin-top: 1.5rem;
  }

  .bbp-btn-group {
    flex-direction: column;
  }

  .bbp-btn {
    width: 100%;
  }
}



/* Description Container */
.bbp-desc-container {
  border-left: 4px solid var(--color-main);
}

/* Tabs Styling */
.bbp-tabs-container .nav-tabs .nav-link {
  border: none;
  font-weight: 600;
  color: #6c757d;
  transition: all 0.3s ease;
}

.bbp-tabs-container .nav-tabs .nav-link.active {
  color: var(--color-main);
  border-bottom: 3px solid var(--color-main);
  background: transparent;
}

.bbp-tabs-container .nav-tabs .nav-link:hover {
  color: var(--color-main);
}

.bbp-tabs-container .tab-content {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}

.bbp-tabs-container .list-group-item {
  border: none;
  padding-left: 0;
}


/* ==========CART========== */
.cart-item-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #333;
}

.cart-item-price {
  color: #888;
  font-size: 0.95rem;
}

.quantity-btn {
  background-color: #007bff;
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover:not(:disabled) {
  background-color: #0056b3;
  transform: scale(1.05);
}

.quantity-btn:disabled {
  background-color: #cbd5e1;
  cursor: not-allowed;
}

.quantity-input {
  width: 55px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 4px 6px;
}

.cart-item-total {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  min-width: 100px;
  text-align: right;
}

.price-idr {
  font-size: 0.8rem;
  /* lebih kecil dari USD */
  color: #6c757d;
  /* muted */
  display: block;
}


@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cart-item-total {
    text-align: left;
    margin-top: 8px;
  }
}