/* =========================================
   VARIABLES & COLOR PALETTE
   ========================================= */
:root {
  --bg-main: transparent;
  --teal-primary: #a4b697;
  --teal-dark: #8f9b88;

  /* Menggelapkan sedikit warna teks agar kontrasnya tetap tajam karena background sekarang lebih transparan */
  --text-dark: #504a4a;
  --text-heading: #4f5251;
  --text-light: #909593;

  --font-main: "Plus Jakarta Sans", sans-serif;
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
  /* Memastikan kontainer mengikuti tinggi navbar */
}

.brand-logo img {
  height: 35px;
  /* <--- Atur tinggi logo di sini sesuai keinginan */
  width: auto;
  /* Membiarkan lebar menyesuaikan otomatis agar proporsional */
  object-fit: contain;
}

/* =========================================
   BACKGROUND PHOTO & OVERLAY (LEBIH TIPIS)
   ========================================= */
.bg-photo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("assets/hero.jpeg");
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* KODE BARU: Gradasi dari putih agak tebal (0.8) di kiri ke sangat tipis (0.1) di kanan */
  background: linear-gradient(to right,
      rgba(244, 246, 245, 0.592) 0%,
      rgba(244, 246, 245, 0.581));
  z-index: -2;
}

/* =========================================
   1. TOP BAR
   ========================================= */
.top-bar {
  width: 100%;
  padding-left: 2rem;
  padding-top: 10px;
  margin-bottom: 10px;
  position: relative;   /* Wajib agar z-index bekerja */
  z-index: 10000;       /* Lebih tinggi dari hero agar tidak tertutup */
}


.top-bar-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-online-res {
  background-color: var(--teal-primary);
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-link {
  color: #444;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   2. FLOATING NAVBAR
   ========================================= */
.navbar {
  width: 100%;
  padding: 0 2rem;
  position: sticky;
  top: 10px;
  z-index: 9999;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);

}

/* =========================================
   DROPDOWN MENU
   ========================================= */
.dropdown {
  position: relative;
  /* Memberikan ruang klik ekstra agar dropdown tidak hilang saat mouse turun */
  padding: 10px 0;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 0;

  /* Setup Animasi Smooth */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  z-index: 200;
}

/* Memunculkan menu saat di-hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reset style untuk link di dalam dropdown agar tidak tabrakan dengan link navbar utama */
.nav-links .dropdown-item {
  color: #4a504e;
  /* Abu-abu gelap standar */
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  display: block;
  width: 100%;
}

.nav-links .dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Warna biru khusus untuk "About Hayyu" seperti di foto */
.nav-links .dropdown-item.highlight {
  color: #0096b4;
  font-weight: 500;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--teal-primary);
  font-weight: 600;
}

.divider {
  color: #ddd;
  font-size: 0.8rem;
}

.btn-search {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-primary);
  cursor: pointer;
}

/* =========================================
   INTERACTIVE SEARCH BAR
   ========================================= */
.search-input-wrapper {
  display: none;
  flex-grow: 1;
  margin: 0 2rem;
  animation: fadeInSlide 0.3s ease forwards;
}

.search-input {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  background-color: #f9fafa;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--teal-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(164, 182, 151, 0.2);
}

/* State ketika search aktif (Dikontrol via JS) */
.nav-container.search-active .nav-links {
  display: none;
  /* Hilangkan menu nav */
}

.nav-container.search-active .search-input-wrapper {
  display: block;
  /* Munculkan kolom input */
}

.nav-container.search-active .icon-search {
  display: none;
  /* Hilangkan ikon kaca pembesar */
}

.nav-container.search-active .icon-close {
  display: block !important;
  /* Munculkan ikon X */
}

/* Animasi halus saat kolom pencarian muncul */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  flex-grow: 1;
}

/* Kiri: Teks & CTA */
.hero-content {
  padding-left: 1rem;
  z-index: 5;
}

.hero-headline {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
  /* Subtle shadow agar teks makin pop-out di atas foto */
}

.hero-subheadline {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 95%;
}

/* Kanan: Gambar Model */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.model-img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
}

.btn-primary {
  display: inline-block;
  background-color: var(--teal-primary);
  color: white;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: var(--teal-dark);
}

/* =========================================
   CAROUSEL & FLOATING ELEMENTS
   ========================================= */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #b1b8b6;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--teal-primary);
  width: 24px;
  border-radius: 10px;
}

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--teal-primary);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.05);
}

/* =========================================
   WHAT'S NEW SECTION
   ========================================= */
.whats-new {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 2rem;
  overflow: hidden;
  /* Wajib ada agar lengkungan background tidak bocor ke samping */
  display: flex;
  justify-content: center;
}

/* --- Dekorasi Background Abu-abu Abstrak --- */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  border: 80px solid #f4f6f5;
  /* Warna abu-abu sangat tipis & clean */
  z-index: 1;
  /* Posisikan di bawah teks dan gambar */
}

.shape-1 {
  width: 900px;
  height: 900px;
  top: -200px;
  left: -350px;
}

.shape-2 {
  width: 700px;
  height: 700px;
  bottom: -150px;
  left: -200px;
  border-width: 50px;
}

/* --- Container Utama --- */
.whats-new-container {
  position: relative;
  z-index: 2;
  /* Posisikan di atas background abu-abu */

  /* UBAH UKURAN DI SINI UNTUK MENGECILKAN FOTO */
  max-width: 500px;
  /* Coba 750px atau sesuai seleramu */

  width: 100%;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  color: #7a807e;
  /* Warna abu-abu elegan untuk judul */
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

/* --- Banner Image --- */
.banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.promo-banner {
  width: 100%;
  height: auto;
  display: block;

  /* INI KUNCINYA: 
       Atas-Kiri (melengkung), Atas-Kanan (lancip), Bawah-Kanan (melengkung), Bawah-Kiri (lancip) */
  border-radius: 48px 0 48px 0;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  /* Efek bayangan jatuh biar makin realistis */
  object-fit: cover;
}

/* --- Efek saat kursor diarahkan ke banner --- */
.promo-link {
  display: inline-block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.promo-link:hover .promo-banner {
  transform: translateY(-5px) scale(1.02);
  /* Gambar naik sedikit dan membesar */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  /* Bayangan makin tebal */
  cursor: pointer;
}

/* =========================================
   SMART SKIN TECHNOLOGY SECTION
   ========================================= */
.smart-tech {
  position: relative;
  padding: 6rem 2rem;

  /* Background abu-abu ekstra muda agar transisinya halus dari section sebelumnya */
  background-color: #fafcfb;
  overflow: hidden;
  text-align: center;
}

/* --- Dekorasi Background Baru (Sudut Geometris Polygon) --- */
.tech-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: #f1f4f2;
  /* Abu-abu aksen */
  /* Membuat bentuk miring di sebelah kiri layar */
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  z-index: 1;
}

/* --- Container (Persis Aslimu) --- */
.tech-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-header {
  margin-bottom: 4rem;
}

/* --- Layout Wrapper Slider --- */
.tech-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 15px;
  /* Jarak tombol ke kartu */
}

.tech-carousel-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s;
  z-index: 10;
}

.tech-carousel-btn:hover {
  transform: scale(1.1);
}

/* --- Track Container --- */
.tech-track-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  /* Agar bayangan (box-shadow) kartu tidak kepotong */
}

.tech-track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

/* KUNCI: Stacking and Animation */
.tech-slide {
  grid-area: 1 / 1;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.tech-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.tech-slide.anim-next {
  animation: popFromBottomRight 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.tech-slide.anim-prev {
  animation: popFromBottomLeft 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes popFromBottomRight {
  0% {
    opacity: 0;
    transform: translate(50px, 50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes popFromBottomLeft {
  0% {
    opacity: 0;
    transform: translate(-50px, 50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* --- Tech Cards --- */
.tech-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
}

.tech-card.split-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tech-media-wrapper {
  flex: 0 0 400px; /* Increased width so it's not too skinny */
  height: 560px; /* Original height */
  overflow: hidden;
  border-radius: 32px;
}

.tech-video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain so the whole video is visible */
  transition: transform 0.5s ease;
}

.tech-card:hover .tech-video {
  transform: scale(1.05);
}

.tech-video.alt-radius {
  border-radius: 0 32px 0 32px;
}

.tech-media-wrapper:has(.alt-radius) {
  border-radius: 0 32px 0 32px;
}

.tech-content-wrapper {
  flex: 1;
}

@media (max-width: 768px) {
  .tech-card.split-layout {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .tech-media-wrapper {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 5/7;
    margin: 0 auto;
    flex: none;
  }
}

.tech-name {
  font-size: 1.3rem;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 5px;
}

.tech-origin {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--teal-primary);
  background-color: rgba(164, 182, 151, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Efek Tombol Pas Mentok (Disabled) --- */
.tech-carousel-btn:disabled {
  opacity: 0.3;
  /* Memudar */
  cursor: not-allowed;
  /* Kursor tanda stop */
  transform: none !important;
  /* Hilangkan efek hover membesar */
}

/* =========================================
   OUR SERVICES SECTION
   ========================================= */
.our-services {
  position: relative;
  padding: 6rem 2rem;
  background-color: #f8f9fa;
  /* Background abu-abu muda elegan */
  overflow: hidden;
  text-align: center;
}

/* --- Dekorasi Background --- */
.bg-shape-services {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.02);
  /* Abu-abu transparan */
  z-index: 1;
}

.shape-left {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
}

.shape-right {
  width: 800px;
  height: 800px;
  top: -300px;
  right: -300px;
}

/* --- Container & Header --- */
.services-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 4rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #909593;
  font-weight: 400;
  margin-bottom: 8px;
}

.title-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg,
      #1a534c,
      rgba(26, 83, 76, 0.2));
  /* Garis hijau gradasi */
  margin: 0 auto 1.5rem auto;
}

.title {
  font-size: 2.2rem;
  color: #7a807e;
  font-weight: 300;
  line-height: 1.4;
}

/* --- Carousel Wrapper --- */
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
}

/* --- Tombol Panah Kiri Kanan --- */
.carousel-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s;
  z-index: 10;
}

.carousel-btn:hover {
  transform: scale(1.1);
}

/* --- Area Track Gambar --- */
.carousel-track-container {
  width: 100%;
  max-width: 900px;
  /* Batas lebar agar pas untuk 2 gambar */
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  list-style: none;
  transition: transform 0.5s ease-in-out;
  margin: 0;
  padding: 0;
}

.carousel-slide {
  min-width: 50%;
  /* Menampilkan 2 gambar sekaligus (50% x 2) */
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Style Gambar dan Teks Bawahnya --- */
.slide-image {
  width: 100%;
  height: 300px;
  /* Biarkan tinggi menyesuaikan proporsi asli */
  aspect-ratio: 16 / 9;
  /* Rasio landscape persegi panjang (16:9) */
  object-fit: cover;
  /* Tetap penuhi area tanpa distorsi, memotong jika perlu */
  border-radius: 20px 0 20px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.slide-title {
  font-size: 0.95rem;
  color: #7a807e;
  font-weight: 500;
  letter-spacing: 1px;
}

/* --- Navigasi Titik (Dots) --- */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
}

.carousel-indicator {
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d1d5d4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.current-indicator {
  width: 24px;
  border-radius: 10px;
  /* Bentuk pill/kapsul untuk yang aktif */
  background-color: #8f9b88;
  /* Warna hijau keabu-abuan dari paletmu */
}

/* =========================================
   OUR BEST SELLER SECTION
   ========================================= */
.best-seller {
  position: relative;
  padding: 6rem 2rem;
  background-color: #ffffff;
  overflow: hidden;
  text-align: center;
}

/* --- Dekorasi Background Abu-abu Baru (Sweeping Curve) --- */
/* Desain ini membuat blok abu-abu besar bersudut lengkung yang memotong layar secara diagonal */
.bg-shape-bestseller {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 65%;
  height: 120%;
  background-color: #f4f6f5;
  /* Abu-abu terang */
  border-radius: 100px 0 0 300px;
  /* Lengkungan asimetris besar di kiri */
  transform: rotate(-10deg);
  z-index: 1;
}

/* --- Container Utama --- */
.bs-container {
  position: relative;
  z-index: 2;
  /* Agar konten berada di atas background abu-abu */
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.bs-header {
  margin-bottom: 4rem;
}

.bs-subtitle {
  font-size: 1.1rem;
  color: #a0a5a3;
  font-weight: 400;
  margin-bottom: 12px;
}

.bs-title-line {
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, #1a534c, rgba(26, 83, 76, 0.1));
  margin: 0 auto 1.5rem auto;
}

.bs-title {
  font-size: 2.2rem;
  color: #7a807e;
  font-weight: 300;
  line-height: 1.4;
}

/* --- Carousel Wrapper --- */
.bs-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 30px;
}

/* --- Tombol Panah --- */
.bs-carousel-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s;
  z-index: 10;
}

.bs-carousel-btn:hover {
  transform: scale(1.1);
}

/* --- Track & Slides --- */
.bs-track-container {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  padding: 20px 0;
}

.bs-track {
  display: flex;
  list-style: none;
  transition: transform 0.5s ease-in-out;
  margin: 0;
  padding: 0;
}

.bs-slide {
  min-width: 25%;
  /* Tampilkan 4 gambar berjajar */
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Gambar Produk (Lancip & Melengkung) --- */
.bs-image {
  width: 100%;
  height: 380px;
  object-fit: cover;

  /* INI KUNCI BENTUKNYA: Atas-kiri lengkung, Atas-kanan lancip, Bawah-kanan lengkung, Bawah-kiri lancip */
  border-radius: 32px 0 32px 0;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.bs-product-title {
  font-size: 1rem;
  color: #8c9491;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Navigasi Titik Bawah --- */
.bs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
}

.bs-indicator {
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dde2e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bs-indicator.current-indicator {
  width: 26px;
  border-radius: 10px;
  background-color: #8f9b88;
  /* Warna hijau sage sesuai referensi */
}

/* =========================================
   TESTIMONIAL SECTION
   ========================================= */
.testimonial-section {
  position: relative;
  padding: 6rem 2rem;
  background-color: #f8f9fa;
  /* Abu-abu terang base */
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

/* --- Dekorasi Background Swoop Halus --- */
.testi-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 150% 100% at 50% 100%,
      #ffffff 0%,
      #f1f3f2 100%);
  z-index: -1;
  transform: rotate(-3deg) scale(1.2);
}

/* --- Container & Header --- */
.testi-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testi-header {
  margin-bottom: 4rem;
}

/* --- Carousel Layout --- */
.testi-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
  /* Memberi ruang untuk gambar yang overlap ke atas/bawah */
}

/* --- Tombol Navigasi --- */
.testi-btn {
  background-color: #a4b697;
  /* Warna teal gelap seperti di foto */
  border: none;
  border-radius: 8px;
  /* Kotak melengkung */
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  flex-shrink: 0;
  z-index: 10;
}

.testi-btn:hover {
  background-color: #8f9b88;
  transform: scale(1.05);
}

/* --- Track & Slides --- */
.testi-track-container {
  overflow: hidden;
  flex-grow: 1;
  padding: 20px 0;
  /* Ruang aman untuk box shadow dan overlap */
}

.testi-track {
  display: flex;
  list-style: none;
  transition: transform 0.5s ease-in-out;
  margin: 0;
  padding: 0;
}

.testi-slide {
  min-width: 100%;
  /* Hanya menampilkan 1 testimonial per layar */
  box-sizing: border-box;
  /* Memberikan ruang kosong di kiri agar foto bulatnya tidak kepotong overflow:hidden */
  padding-left: 120px;
  padding-right: 20px;
}

/* --- Kartu Testimonial --- */
.testi-card {
  background-color: #f4f6f5;
  border-radius: 12px;
  position: relative;
  padding: 40px 40px 40px 140px;
  /* Padding kiri super besar untuk menampung gambar */
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* --- Foto Profil (Efek Overlap) --- */
.testi-img-box {
  position: absolute;
  left: -110px;
  /* Menarik gambar keluar dari batas kiri kartu */
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 8px solid #ffffff;
  /* Border putih tebal */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
}

.testi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Teks Testimonial --- */
.testi-name {
  font-size: 1.4rem;
  color: var(--teal-dark);
  margin-bottom: 15px;
  font-weight: 500;
}

.testi-text {
  font-size: 0.95rem;
  color: #8c9491;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* --- Tombol View More --- */
.testi-view-more {
  background: transparent;
  border: 1px solid rgba(143, 155, 136, 0.4);
  color: var(--teal-dark);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testi-view-more:hover {
  background-color: rgba(164, 182, 151, 0.1);
  border-color: var(--teal-dark);
}

/* =========================================
   PREMIUM CONTACT CTA SECTION
   ========================================= */
.premium-cta-section {
  padding: 8rem 2rem;
  background-color: #fafcfb;
  /* Abu-abu super terang biar soft */
  display: flex;
  justify-content: center;
}

.cta-container {
  width: 100%;
  max-width: 900px;
  /* Dibuat tidak terlalu lebar agar teksnya proporsional */
}

/* --- Kartu Utama --- */
.cta-elevated-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 48px;
  /* Sangat bulat (premium feel) */
  padding: 5rem 3rem;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

/* --- Dekorasi Glow Halus di Belakang --- */
.cta-glow-bg {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(164, 182, 151, 0.08) 0%,
      rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* --- Konten --- */
.cta-content-wrapper {
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.cta-subtext {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 auto 3rem auto;
  max-width: 600px;
}

/* --- Tombol WhatsApp Premium --- */
.cta-action {
  margin-bottom: 1.5rem;
}

.btn-wa-exclusive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--teal-primary);
  /* Warna Sage */
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 30px;
  /* Padding besar biar tombolnya lega */
  border-radius: 10px;
  /* Full rounded */
  box-shadow: 0 15px 30px rgba(164, 182, 151, 0.35);
  /* Shadow sage halus */
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-wa-exclusive:hover {
  background-color: var(--teal-dark);
  transform: translateY(-4px);
  /* Efek melayang */
  box-shadow: 0 20px 40px rgba(143, 155, 136, 0.45);
}

/* --- Trust Text --- */
.cta-trust-badge {
  font-size: 0.9rem;
  color: #909593;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* =========================================
   FOOTER SECTION (100% MATCH DESIGN)
   ========================================= */
.site-footer {
  position: relative;
  background-color: #f1f3f2;
  /* Abu-abu terang base */
  padding: 6rem 2rem 2rem 2rem;
  overflow: hidden;
  color: #4a504e;
  /* Teks abu-abu gelap */
  z-index: 1;
}

/* --- Dekorasi Background Bentuk Segitiga (Pojok Kiri Bawah) --- */
.footer-shape-triangle {
  position: absolute;
  left: -300px;
  /* Setengah lebar box ditarik keluar layar */
  bottom: -300px;
  /* Setengah tinggi box ditarik keluar layar */
  width: 600px;
  height: 600px;
  /* Membuat bentuk segitiga miring */
  background: linear-gradient(135deg, transparent 50%, var(--teal-primary) 50%);
  z-index: -1;
}

/* Sedikit garis putih melintang di atas segitiga biar makin mirip di foto */
.footer-shape-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      transparent 60%,
      rgba(255, 255, 255, 0.2) 70%,
      transparent 80%);
  z-index: -1;
  pointer-events: none;
}

/* --- Layout Container & Grid --- */
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  /* Grid 6 kolom dengan proporsi sesuai di foto */
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr 2fr;
  gap: 30px;
}

/* --- Logo Col --- */
.logo-col {
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 160px;
  /* Atur lebar logo */
  height: auto;
}

/* --- Headings & Links --- */
.footer-heading {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #6a7370;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal-dark);
}

/* --- Direct Contact --- */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a7370;
  font-size: 0.9rem;
}

/* --- Social Media & Apps --- */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #a0a5a3;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--teal-primary);
  transform: translateY(-3px);
}

.app-badges {
  display: flex;
  gap: 10px;
}

.app-badges img {
  height: 38px;
  width: auto;
  border-radius: 6px;
}

/* --- Copyright Bar --- */
.footer-bottom {
  margin-top: 60px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  /* Garis batas tipis */
  font-size: 0.85rem;
  color: #8c9491;
  letter-spacing: 0.5px;
}

.mobile-top-links {
  display: none;
  /* Sembunyikan menu ekstra ini di layar PC/Laptop */
}

/* =========================================
   MOBILE RESPONSIVE (MATCHING GAMBAR)
   ========================================= */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  /* FIX: Navbar konsisten di semua halaman mobile */
  .navbar {
    padding: 0 12px !important;
    top: 10px !important;        /* Kasih space sedikit di atas */
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  /* 1. LAYOUT NAVBAR KOTAK — ukuran dikunci supaya sama di semua halaman */
  .nav-container {
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 16px !important;   /* dikunci supaya tidak bisa di-override */
    height: 64px !important;         /* tinggi fixed agar identik di semua halaman */
    border-radius: 12px !important;
    background-color: rgba(249, 249, 249, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    transition: border-radius 0.3s ease;
    z-index: 1005 !important;
    box-sizing: border-box !important;
  }

  .nav-container.menu-active {
    border-radius: 12px 12px 0 0 !important;
  }

  /* 2. STYLE ICON HAMBURGER & SEARCH — ukuran dikunci */
  .hamburger,
  .btn-search {
    width: 40px !important;    /* dikunci sama di semua halaman */
    height: 40px !important;   /* dikunci sama di semua halaman */
    min-width: 40px !important;
    min-height: 40px !important;
    border: 1px solid #eaeaea !important;
    border-radius: 8px !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .hamburger {
    order: 1 !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .hamburger span {
    width: 20px;
    height: 2.5px;
    background-color: #a4b697;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* 3. LOGO — ukuran logo dikunci sama di semua halaman */
  .brand-logo {
    order: 2 !important;
    margin-right: auto !important;
    margin-left: 15px !important;
    display: flex !important;
    align-items: center !important;
  }

  .brand-logo img {
    height: 30px !important;   /* dikunci agar sama di semua halaman */
    width: auto !important;
    max-height: 30px !important;
  }

  /* 4. TOMBOL SEARCH */
  .btn-search {
    order: 3;
    color: #a4b697;
    position: relative;
    z-index: 50;
    cursor: pointer;
  }

  .btn-search svg {
    stroke-width: 2.5px;
    width: 22px;
    height: 22px;
  }

  .search-input-wrapper {
    order: 4;
  }

  /* 5. LACI MENU */
  .nav-links {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.08);
    /* Catatan: Box-shadow merah ini bawaan kodenya tadi, kalau mau dibalikin hitam ubah 255, 0, 0 jadi 0, 0, 0 */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 20px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .divider {
    display: none;
  }

  /* 6. STYLE ITEM MENU (Teks dikecilkan & padding dikurangi) */
  .nav-links>a,
  .dropdown-trigger {
    padding: 12px 24px;
    /* Jarak atas-bawah dikurangi dari 16px jadi 12px */
    width: 100%;
    box-sizing: border-box;
    border-bottom: none;
    font-size: 0.9rem !important;
    /* Teks lebih kecil dari sebelumnya */
    color: #555555 !important;
  }

  .nav-links a.active {
    background-color: #f1ece9;
    color: #a4b697 !important;
    font-weight: 500;
  }

  /* 7. DROPDOWN & IKON PANAH BAWAH */
  .dropdown {
    width: 100%;
    padding: 0;
  }

  .dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* 👇 FIX IKON PANAH: Memaksa ikon SVG panah bawah jadi lebih besar */
  .dropdown-trigger svg {
    width: 18px !important;
    height: 18px !important;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #ffffff;
    padding: 0 24px 8px 40px;
    border-radius: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:active .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }

  .nav-links .dropdown-item {
    padding: 8px 0;
    /* Jarak antar sub-menu dikurangi */
    font-size: 0.85rem !important;
    /* Teks sub-menu dibuat sedikit lebih kecil lagi */
    color: #666666 !important;
  }

  /* 8. MENU BAWAH (Gap dikurangi) */
  .mobile-top-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 24px 0 24px;
    gap: 10px;
    /* Gap dikurangi dari 15px jadi 10px */
    width: 100%;
  }

  .mobile-top-links a {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 0.9rem !important;
    /* Teks disamakan ukurannya */
  }

  .mobile-top-links .btn-online-res {
    background-color: #a4b697;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .mobile-top-links .top-link {
    color: #666 !important;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: none !important;
  }

  /* 9. SEARCH AKTIF */
  .nav-container.search-active .hamburger,
  .nav-container.search-active .brand-logo {
    display: none !important;
  }

  .nav-container.search-active .search-input-wrapper {
    display: block !important;
    flex-grow: 1;
    margin-right: 12px;
    order: 1;
    animation: fadeInSlide 0.3s ease;
  }

  .nav-container.search-active .btn-search {
    display: flex !important;
    order: 2;
    font-size: 1.2rem;
  }

  .search-input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
  }

  /* 10. OVERLAY MENU */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 990;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* 11. EFEK HOVER (Warna berubah saat kena kursor) */
  .nav-links>a:hover,
  .dropdown-trigger:hover,
  .nav-links .dropdown-item:hover,
  .mobile-top-links .top-link:hover {
    color: #a4b697 !important;
    transition: color 0.2s ease;
  }

  .dropdown-trigger:hover svg {
    stroke: #a4b697;
  }

  /* =========================================
     HERO SECTION MOBILE
     ========================================= */
  .hero {
    /* 👇 UBAH DI SINI: Padding atas ditambah dari 1rem jadi 3rem biar makin ke bawah */
    padding: 4rem 1rem 0;
    height: auto;
    min-height: calc(100vh - 100px);
    justify-content: center;
    background-color: #ffffff3a;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;

    /* 👇 UBAH DI SINI: Margin top juga ditambah biar dorong kontennya makin turun */
    margin-top: 4rem;
  }

  .hero-content {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-headline {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: rgb(106, 106, 106);
  }

  .hero-subheadline {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    color: rgb(86, 86, 86);
  }

  .hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-primary {
    /* 👇 FIX LEBAR CTA: Menghapus width: 100% dan menggantinya dengan max-content */
    width: max-content;

    /* Paddingnya disesuaikan biar tombolnya tetap proporsional dan enak dilihat */
    padding: 12px 32px;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .model-img {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
  }

  /* =========================================
     WHAT'S NEW SECTION MOBILE
     ========================================= */
  .whats-new {
    padding: 3rem 1.5rem;
    /* Kurangi jarak atas-bawah dan kiri-kanan */
  }

  .whats-new-container {
    max-width: 100%;
    /* Pastikan kontainer tidak memotong layar */
  }

  .section-title {
    font-size: 1.5rem;
    /* Ukuran font judul dikecilkan biar proporsional */
    margin-bottom: 1.5rem;
    /* Jarak judul ke gambar dikurangi */
  }

  .promo-banner {
    width: 100%;
    height: auto;
    /* Lengkungan gambarnya sedikit diperhalus untuk layar HP */
    border-radius: 32px 0 32px 0;
  }

  /* --- Sesuaikan Dekorasi Background Abstrak --- */
  .bg-shape {
    border-width: 30px;
    /* Border ditipiskan biar nggak berat dilihat di HP */
  }

  .shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
  }

  .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
    border-width: 20px;
  }

  /* =========================================
     SMART TECH SECTION MOBILE
     ========================================= */
  .smart-tech {
    padding: 3rem 1rem;
    /* Mengurangi ruang kosong atas-bawah */
  }

  /* Mengubah background polygon di layar kecil agar tidak memotong teks */
  .tech-bg-shape {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 15%, 0% 5%);
    /* Disesuaikan bentuknya untuk HP */
  }

  .tech-header {
    margin-bottom: 2rem;
  }

  .tech-header .title {
    font-size: 1.6rem;
    /* Ukuran judul diperkecil */
    line-height: 1.3;
  }

  .tech-carousel-wrapper {
    gap: 5px;
    /* Mengurangi jarak antara kartu dan tombol panah kiri-kanan */
  }

  .tech-track-container {
    padding: 10px 0;
    /* Mengurangi padding ruang bayangan */
  }

  /* 👇 KUNCI UTAMA: Memaksa 1 kartu mengambil 100% lebar layar HP */
  .tech-slide {
    min-width: 100%;
    padding: 0 5px;
  }

  .tech-card {
    padding: 15px;
    /* Padding di dalam kartu dikurangi sedikit */
    border-radius: 20px;
  }

  .tech-img-wrapper {
    height: 200px;
    /* Tinggi gambar sedikit dipendekkan agar tidak mendominasi layar HP */
    border-radius: 24px 0 24px 0;
    margin-bottom: 1rem;
  }

  /* Mengikuti lengkungan alternatif (alt-radius) sesuai kode aslimu */
  .tech-img-wrapper:has(.alt-radius) {
    border-radius: 0 24px 0 24px;
  }

  .tech-name {
    font-size: 1.15rem;
  }

  .tech-origin {
    font-size: 0.7rem;
    padding: 4px 8px;
    margin-bottom: 10px;
  }

  .tech-desc {
    font-size: 0.9rem;
    /* Ukuran deskripsi dibuat pas untuk dibaca di HP */
    line-height: 1.5;
  }

  /* Mengecilkan ukuran tombol panah slider */
  .tech-carousel-btn {
    padding: 5px;
  }

  .tech-carousel-btn svg {
    width: 24px;
    height: 24px;
  }

  /* =========================================
     OUR SERVICES SECTION MOBILE
     ========================================= */
  .our-services {
    padding: 3rem 1rem;
    /* Kurangi ruang kosong agar tidak makan layar */
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .services-header .title {
    font-size: 1.6rem;
    /* Ukuran judul dikecilkan sedikit */
    line-height: 1.3;
  }

  /* Mengubah bentuk dekorasi bulat abu-abu di belakang */
  .bg-shape-services.shape-left {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
  }

  .bg-shape-services.shape-right {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
  }

  /* 👇 KUNCI UTAMA SLIDER: Memaksa 1 slide mengambil 100% lebar layar */
  .carousel-slide {
    min-width: 100%;
    padding: 0 10px;
    /* Sedikit jarak agar tidak mentok banget ke pinggir layar */
  }

  .carousel-wrapper {
    gap: 5px;
    /* Kurangi jarak antara tombol panah dan gambar */
  }

  .slide-image {
    height: 240px;
    /* Tinggi gambar disesuaikan agar pas di HP */
    border-radius: 16px 0 16px 0;
    /* Lengkungan sedikit diperhalus */
    margin-bottom: 15px;
  }

  .slide-title {
    font-size: 0.9rem;
    /* Teks judul pelayanan dikecilkan */
  }

  /* Mengecilkan ukuran tombol panah slider */
  .carousel-btn {
    padding: 5px;
  }

  .carousel-btn svg {
    width: 24px;
    height: 24px;
  }

  /* Rapatkan titik-titik indikator (dots) di bawah slider */
  .carousel-nav {
    margin-top: 1.5rem;
    gap: 6px;
    /* Jarak antar titik dikurangi */
  }

  /* Karena sekarang gambarnya muncul satu-satu (ada 10 gambar), 
     kita sembunyikan setengah titiknya dengan CSS khusus (opsional tapi disarankan) 
     agar titiknya tidak berbaris terlalu panjang di layar kecil. */
  .carousel-indicator:nth-child(n+6) {
    /* display: none; */
    /* Hapus tanda komentar miring ini jika titiknya terasa kepanjangan di HP */
  }

  /* =========================================
     OUR BEST SELLER SECTION MOBILE (TUMPUK KE BAWAH)
     ========================================= */
  .best-seller {
    padding: 3rem 1rem;
  }

  /* Menyesuaikan dekorasi background */
  .bg-shape-bestseller {
    width: 120%;
    height: 110%;
    top: 0;
    right: -30%;
    border-radius: 80px 0 0 200px;
    transform: rotate(-5deg);
  }

  .bs-header {
    margin-bottom: 2.5rem;
  }

  .bs-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* 👇 MATIKAN SLIDER DI MOBILE: Ubah jadi grid/kolom numpuk ke bawah */
  .bs-track-container {
    overflow: visible;
    /* Biarkan konten memanjang ke bawah tanpa terpotong */
    padding: 0;
  }

  .bs-track {
    flex-direction: column;
    /* Mengubah susunan berbaris ke samping jadi atas-bawah */
    gap: 35px;
    /* Jarak antara produk atas dan bawah */
    transform: none !important;
    /* Paksa mematikan pergeseran dari JavaScript */
  }

  .bs-slide {
    width: 100%;
    padding: 0;
    /* Hapus jarak kiri-kanan */
  }

  /* Ukuran foto produk */
  .bs-image {
    width: 100%;
    height: 340px;
    /* Proporsi potrait agar botol skincare terlihat jelas */
    border-radius: 24px 0 24px 0;
    margin-bottom: 15px;
    object-fit: cover;
  }

  .bs-product-title {
    font-size: 1rem;
  }

  /* =========================================
     TESTIMONIAL SECTION MOBILE
     ========================================= */
  .testimonial-section {
    padding: 3rem 1rem;
  }

  .testi-header {
    margin-bottom: 2rem;
  }

  .testi-header .title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* 👇 Ubah susunan: Kartu di atas, tombol geser pindah ke bawah */
  .testi-carousel-wrapper {
    flex-wrap: wrap;
    /* Izinkan elemen turun ke baris baru */
    justify-content: center;
    gap: 15px;
    /* Jarak antar tombol di bawah */
    padding: 10px 0;
  }

  /* Area pergeseran (Slider) */
  .testi-track-container {
    flex: 0 0 100%;
    /* Paksa slider memakan lebar penuh */
    order: 1;
    /* Pastikan slider ada di urutan pertama (paling atas) */
    padding: 0;
  }

  /* Tombol kita posisikan di urutan ke-2 dan ke-3 (di bawah slider) */
  #testiPrevBtn {
    order: 2;
  }

  #testiNextBtn {
    order: 3;
  }

  .testi-slide {
    padding: 0 5px;
    /* Jarak kiri kanan kartu */
    padding-top: 60px;
    /* Ruang kosong di atas untuk tempat foto nongol */
  }

  .testi-card {
    padding: 60px 20px 30px 20px;
    /* Padding diubah: atas dibesarkan, kiri/kanan disamakan */
    text-align: center;
    /* Teks dibikin rata tengah biar rapi di HP */
    border-radius: 20px;
  }

  /* 👇 KUNCI: Pindahkan foto dari samping kiri ke atas-tengah */
  .testi-img-box {
    width: 100px;
    /* Foto dikecilkan proporsional untuk HP */
    height: 100px;
    border-width: 5px;
    /* Border putih sedikit ditipiskan */

    /* Atur posisinya presisi ke tengah-atas kartu */
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    /* Menarik 50% fotonya ke atas dan ke kiri biar pas di tengah */
  }

  .testi-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .testi-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    /* Dibuat sedikit kotak sesuai gaya tombol yang lain */
  }

  /* =========================================
     PREMIUM CTA SECTION MOBILE
     ========================================= */
  .premium-cta-section {
    padding: 4rem 1rem;
    /* Kurangi ruang kosong luar (atas-bawah) */
  }

  .cta-elevated-card {
    padding: 3rem 1.5rem;
    /* Kurangi ruang kosong di dalam kotak */
    border-radius: 32px;
    /* Lengkungan dikurangi sedikit agar proporsional di HP */
  }

  /* Efek cahaya di belakang teks dikecilkan */
  .cta-glow-bg {
    width: 300px;
    height: 300px;
  }

  .cta-headline {
    font-size: 1.55rem;
    /* Ukuran judul disesuaikan */
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cta-subtext {
    font-size: 0.95rem;
    /* Ukuran teks deskripsi disesuaikan */
    margin-bottom: 2rem;
    padding: 0 10px;
    /* Kasih sedikit nafas di kiri-kanan teks */
  }

  .cta-action {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .btn-wa-exclusive {
    width: 60%;
    /* Tombol dibuat memanjang (full-width) */
    max-width: 320px;
    /* Tapi tetap dibatasi agar rapi kalau layarnya agak lebar */
    padding: 14px 20px;
    font-size: 0.95rem;
    justify-content: center;
    /* Ikon dan teks di tengah */
  }

  .cta-trust-badge {
    font-size: 0.85rem;
    margin-top: 1rem;
  }

  /* =========================================
     FOOTER SECTION MOBILE
     ========================================= */
  .site-footer {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }

  /* Susunan berbaris ke bawah dan dipaksa rata tengah semua */
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Kolom di posisi tengah */
    text-align: center;
    /* Teks rata tengah */
    gap: 2.5rem;
  }

  /* Mengatur tata letak Logo agar presisi di tengah */
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .logo-col {
    margin-bottom: 0.5rem;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  /* Pusatkan daftar menu (ul) */
  .footer-links,
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 12px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.85rem;
  }

  /* 👇 KUNCI: Biar ikon SVG dan Teks Kontak (WA/Email) sejajar rapi di tengah */
  .footer-contact li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  /* Mengatur bagian Social Media ke tengah */
  .social-col {
    margin-top: 0.5rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .social-icons a svg {
    width: 24px;
    height: 24px;
  }

  /* Penyesuaian teks Copyright di paling bawah */
  .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    text-align: center;
  }

  /* Menyesuaikan hiasan background segitiga */
  .footer-shape-triangle {
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: -150px;
  }
}
/* --- Scroll Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.in-view, 
.reveal-left.in-view, 
.reveal-right.in-view, 
.reveal-scale.in-view {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }


/* --- LOADING SCREEN --- */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f7f9f8; /* Warna soft menyesuaikan tema */
  z-index: 99999; /* Pastikan selalu paling atas */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
  width: 200px;
  margin-bottom: 30px;
  animation: pulseLogo 2s infinite ease-in-out;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(26, 83, 76, 0.2);
  border-top-color: #1a534c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseLogo {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}
