.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  padding: 14px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  color: white;
}

:root {
  --primary-color: #022B56;
  --secondary-color: #03407f;
  --light-bg: #f8f9fa;
  --gradient-blue: linear-gradient(135deg, #012340 0%, #024B88 100%);
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --gradient-blue: linear-gradient(135deg, #012340 0%, #024B88 100%);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #000;
  color: #fff;
}

body,
html {
  margin: 0;
  padding: 0;
}

/* === HERO VIDEO SECTION === */
#hero {
  position: relative;
  width: 100%;
  height: auto;
  /* ubah dari 100vh jadi auto */
  overflow: hidden;
  background: #000;
  margin: 0;
  padding: 0;
}

#hero video {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  top: 0;
  left: 0;
  transform: none;
}

/* Overlay hitam transparan */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Konten di atas video */
.hero-content {
  position: absolute;
  bottom: 5%;
  /* menempel ke bawah agar video tidak tertutup */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 90%;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.1rem;
}

.hero-content a {
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
}

#produksi-tas {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #000;
  background: #fff;
  z-index: 1;
}

/* Background kantor full landscape */
.bg-top {
  height: 60vh;
  background: url('assets/img/kantor.png') top center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Background bawah */
.bg-bottom {
  height: 45%;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Gambar anak kecil melayang di kiri */
.floating-kids {
  width: 60%;
  max-width: 260px;
  position: relative;
  margin-top: 2rem;
  margin-left: -10%;
  z-index: 3;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2));
}

/* Konten teks */
#produksi-tas .text-section h1,
#produksi-tas .text-section h2 {
  color: var(--primary-color);
  font-weight: 700;
}

#produksi-tas p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

/* Statistik */
.stats h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.stats p {
  font-size: 0.9rem;
  color: #000;
}

/* Tambahan teks bawah */
.extra-text h1 {
  color: var(--primary-color);
  font-weight: 700;
}

.extra-text p {
  color: #000;
  font-weight: 500;
}

/* === PRODUK === */
#produk {
  padding: 100px 0;
  background-color: #f9f9f9;
  color: var(--primary-color);
}

#produk h2 {
  font-weight: 700;
  margin-bottom: 40px;
}

#produk .produk-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#produk .produk-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

#produk .produk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

/* ==== SECTION SPESIALIS TAS ==== */
#spesialis-tas {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

#spesialis-tas h1 {
  font-size: 2.5rem;
  color: #0d6efd;
}

#spesialis-tas p {
  font-size: 1.1rem;
  color: #333;
}

/* Animasi gambar anak */
.floating-child {
  animation: float 3s ease-in-out infinite;
  max-height: 250px;
}

@keyframes float {

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

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

/* ==== BOX BIRU ==== */
.blue-box {
  background-color: #022B56;
  /* border-radius: 20px; */
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
  /* padding: 40px; */
  /* margin-top: 40px; */
  position: relative;
}

/* Judul & teks dalam box biru */
.blue-box h2 {
  font-weight: 700;
  color: #fff;
}

.blue-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.scroll-cards {
  display: flex;
  flex-wrap: nowrap;
  /* penting: jangan wrap agar bisa discroll horizontal */
  gap: 20px;
  overflow-x: auto;
  /* aktifkan scroll horizontal */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* agar scroll halus di iOS */
  padding-bottom: 10px;
}

.scroll-cards::-webkit-scrollbar {
  display: none;
  /* sembunyikan scrollbar untuk tampilan lebih rapi */
}

.feature-card {
  flex: 0 0 calc(33.333% - 20px);
  /* tampil 3 kartu per view */
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 200px;
  /* pastikan kartu cukup lebar di mobile */
}

.feature-card img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  width: 200px;
  object-fit: cover;
}

.feature-card p {
  font-weight: 600;
  color: #333;
  font-size: 0.5rem;
  margin-top: 10px;
}

/* ===============================
   BAGIAN: KISAH SUKSES
=============================== */
#kisah-sukses {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  padding: 60px 0;
}

#kisah-sukses h2 {
  font-size: 2rem;
  color: var(--bs-primary);
}

#kisah-sukses p {
  line-height: 1.8;
}

#kisah-sukses .bg-white {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#kisah-sukses .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#kisah-sukses .icon-tiktok,
#kisah-sukses .icon-shopee,
#kisah-sukses .icon-instagram {
  transition: color 0.3s;
}

#kisah-sukses .icon-tiktok:hover {
  color: #000;
}

#kisah-sukses .icon-shopee:hover {
  color: #f1582c;
}

#kisah-sukses .icon-instagram:hover {
  color: #e1306c;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  #spesialis-tas h1 {
    font-size: 2rem;
  }

  .blue-box {
    padding: 30px;
  }

  .feature-card {
    width: 20%;
    /* 2 kartu per baris di tablet */
  }
}

/* ===============================
   BAGIAN: GALERI
=============================== */
#galeri {
  background: #f8f9fa;
  padding: 60px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* ===============================
   BAGIAN: VIDEO COMPANY PROFILE
=============================== */
#video {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  padding: 60px 0;
}

#video h2 {
  font-size: 2rem;
  color: var(--bs-primary);
}

#video p {
  color: #6c757d;
}

#video iframe {
  border: none;
}

/* ===============================
   BAGIAN: FAQ
=============================== */
#faq {
  background: #ffffff;
  padding: 80px 0;
}

#faq h2 {
  font-size: 2rem;
  color: var(--bs-primary);
  margin-bottom: 40px;
}

.accordion {
  border-radius: 20px;
  overflow: hidden;
}

.accordion-item {
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: #fff;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: #012340;
  background-color: #f8f9fc;
  border: none;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #024b88;
  background-color: #eaf3ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  background: #ffffff;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 20px;
  border-top: 1px solid #eee;
}

/* ===============================
   BAGIAN: KONTAK
=============================== */
#kontak {
  background: linear-gradient(135deg, #012340 0%, #024B88 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 500px;
}

#kontak h2 {
  font-size: 2rem;
  color: #ffffff;
}

#kontak p {
  font-size: 1.1rem;
  opacity: 0.9;
}

#kontak .btn-success {
  background-color: #25d366;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#kontak .btn-success:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
}

#kontak svg {
  display: block;
  width: 100%;
}

/* ===============================
   BAGIAN: FOOTER
=============================== */
footer {
  background-color: #011c33;
  color: #9ecbff;
  font-size: 0.9rem;
  padding: 20px 0;
}

footer a {
  color: #9ecbff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

footer p {
  margin-bottom: 5px;
}

.gallery-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.gallery-slider::-webkit-scrollbar {
  height: 8px;
}

.gallery-slider::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}


/* === RESPONSIVE (mobile focus) === */
@media (max-width: 767.98px) {

  #kontak {
    background: linear-gradient(135deg, #012340 0%, #024B88 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 650px;
    padding-top: 50px;
  }

  #hero {
    height: auto;
  }

  #hero video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .hero-content {
    bottom: 50%;
    width: 85%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 2rem;
  }

  .hero-content p {
    font-size: 0.85rem;
    line-height: 0;
  }

  .hero-content a {
    font-size: 0.5rem;
    padding: 0.1rem 1rem;
  }

  /* Produksi Tas Section */
  #produksi-tas .row {
    flex-direction: row !important;
    align-items: flex-end;
    justify-content: center;
    margin-top: 40px;
  }

  /* Anak di kiri */
  #produksi-tas .col-lg-6:first-child {
    flex: 0 0 auto;
    width: 40%;
    display: flex;
    justify-content: center;
  }

  /* Teks di kanan */
  #produksi-tas .col-lg-6:last-child {
    flex: 1;
    text-align: left;
    margin-top: 0px;
    /* padding-left: 0.5rem; */
  }

  #produksi-tas {
    /* padding-top: 2rem;
    padding-bottom: 4rem; */
    background: #FFFFFF;
  }

  .bg-top {
    height: 200px;
    background: url('assets/img/kantor.png') top center/cover no-repeat;
    width: 100%;
    display: block;
  }

  .bg-bottom {
    height: 30%;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .floating-kids {
    /* width: 55%; */
    margin-top: -0px;
    margin-left: 10px;
    height: 200px;
    width: 120px;
  }

  .text-section h1 {
    font-size: 1.3rem;
    margin-top: -1rem;
  }

  .text-section p {
    font-size: 0.9rem;
  }

  .extra-text h1 {
    font-size: 1.2rem;
  }

  .extra-text p {
    font-size: 0.85rem;
  }

  .stats h2 {
    font-size: 1.1rem;
  }

  .stats p {
    font-size: 0.75rem;
  }

  /* PRODUK  */
  #produk {
    padding: 60px 0;
  }

  #produk .col-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  #produk h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  /* Pastikan tetap 3 kolom di mobile */
  #produk .col-12 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    display: block !important;
  }

  #produk .produk-card {
    /* padding: 10px; */
    border-radius: 15px;
    height: 220px;
  }

  #produk .produk-img {
    border-radius: 10px;
    height: 160px;
    margin-top: 30px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 35px;
    height: 35px;
  }

  /* Atur jarak antar produk */
  #produk .row.g-4 {
    gap: 0.5rem !important;
  }

  #spesialis-tas {
    padding: 40px 0;
  }

  .blue-box {
    padding: 0px;
  }

  .feature-card {
    flex: 0 0 80%;
    /* di mobile tampil besar dan bisa di-scroll kanan kiri */
    /* min-width: 220px; */
  }

  #kisah-sukses {
    padding: 40px 20px;
  }

  #kisah-sukses h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  #kisah-sukses p {
    font-size: 0.95rem;
  }

  #kisah-sukses .bg-white {
    /* max-width: 300px; */
  }

  #galeri {
    padding: 40px 10px;
  }

  .gallery-item {
    border-radius: 10px;
  }

  .gallery-item .overlay {
    font-size: 0.85rem;
  }

  #video {
    padding: 40px 10px;
  }

  #video h2 {
    font-size: 1.5rem;
  }

  #video p {
    font-size: 0.9rem;
  }

  #video .ratio {
    border-radius: 15px;
  }

  #faq {
    padding: 60px 20px;
  }

  #faq h2 {
    font-size: 1.5rem;
  }

  .accordion-button {
    font-size: 0.95rem;
  }

  #kontak h2 {
    font-size: 1.5rem;
  }

  #kontak p {
    font-size: 1rem;
  }

  #kontak .btn-success {
    padding: 12px 30px;
    font-size: 1rem;
  }

  footer {
    font-size: 0.85rem;
    padding: 30px 10px;
  }

  .gallery-item {
    width: 180px;
  }
}

.table-stats th {
  padding: 5px 5px 0px 0px;
  font-weight: bold;
  font-size: 0.9rem;
  color: #fff;

}

.table-stats td {
  padding: 0px 5px 0px 0px;
  color: #fff;
  font-size: 0.6rem;
}

.gallery-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(250px * 12);
  /* 12 gambar termasuk duplikat */
  animation: scroll 40s linear infinite;
}

.gallery-item {
  flex: 0 0 auto;
  width: 250px;
  margin: 0 10px;
}

.gallery-item img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Animasi berjalan otomatis */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
  .gallery-item {
    width: 160px;
    margin: 0 6px;
  }

  .slide-track {
    animation: scroll 25s linear infinite;
  }
}