/* ==== Global ==== */
html, body {
  font-family: 'Inter', system-ui, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 200vh;
  overflow-x: hidden;
  background-color: #e2edee; /* satu kali saja */
}

/* ==== HEADER ==== */
#mainHeader {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll dan hover */
#mainHeader.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

#mainHeader:hover {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Container */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigasi Link */

nav.nav-links a {
  position: relative;
  text-decoration: none;
}

nav.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(to right,#6b0b03, #25221e);
  transition: width 0.3s ease;
}

nav.nav-links a:hover::after {
  width: 100%;
}

/* === Underline untuk halaman aktif === */
nav.nav-links a.active::after {
  width: 100%;
}


/* Desktop only */
@media (min-width: 768px) {
  nav.nav-links {
    display: flex !important;
    gap: 1.5rem;
  }
}

/* ==== Logo Default (Putih) ==== */
.logo {
  width: 250px;
  height: auto;
  transition: filter 0.3s ease, opacity 0.3s ease;
  filter: brightness(0) invert(1); /* Logo putih */
}

/* Logo kembali normal saat scroll dan hover */
#mainHeader.scrolled .logo,
#mainHeader:hover .logo,
.logo:hover {
  filter: none; /* Kembali ke logo asli */
}

/* Tombol Toggle Mobile (Putih default) */
#menuToggle svg {
  color: white;
  transition: color 0.3s ease;
}

/* ==== Default nav (putih sebelum scroll) ==== */
#mainHeader:not(.scrolled) nav.nav-links a {
  color: white;
  transition: color 0.3s ease;
}

/* Hover efek saat belum scroll: putih → merah tua / biru terang */
#mainHeader:not(.scrolled) nav.nav-links a:hover {
  color: #950417; /* Bisa diganti Tailwind blue-300: #93c5fd */
}

/* ==== Saat scroll atau hover header: nav hitam ==== */
#mainHeader.scrolled nav.nav-links a,
#mainHeader:hover nav.nav-links a,
#mainHeader.scrolled #menuToggle svg,
#mainHeader:hover #menuToggle svg {
  color: #1f2937; /* Tailwind gray-800 */
}


/* Hover efek setelah scroll: jadi biru */
#mainHeader.scrolled nav.nav-links a:hover,
#mainHeader:hover nav.nav-links a:hover {
  color: #950417; /* Tailwind blue-600 */
}

/* Responsive header fix untuk mobile */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1rem; /* kecilin padding */
  }

  .logo {
    width: 150px; /* kecilin logo biar muat */
  }

  /* Pastikan toggle menu tetap di kanan */
  #menuToggle {
    margin-left: auto;
  }

  /* Sembunyikan nav-links di mobile (diganti mobile menu) */
  nav.nav-links {
    display: none !important;
  }
}


/* === DROPDOWN PRODUK DESKTOP === */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #f3f4f6;
  color: #950417;
}

/* Tampilkan dropdown desktop saat hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* === HAMBURGER BUTTON === */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle:focus {
  outline: none;
}

.menu-icon {
  width: 24px;
  height: 24px;
  stroke: #333;
  transition: stroke 0.2s ease-in-out;
}

.menu-toggle:hover .menu-icon {
  stroke: #751006;
}

/* Sembunyikan tombol hamburger di layar besar */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none; /* default hidden */
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 8px 16px;
}

.mobile-menu.active {
  display: block; /* muncul saat ada class active */
}

/* Link style */
.mobile-link {
  display: block;
  padding: 8px 0;
  color: #4a4a4a;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.mobile-link:hover {
  color: #751006;
}

/* Submenu Mobile */
.mobile-dropdown-menu {
  display: none;
  padding-left: 12px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

/* Pastikan mobile menu hanya berlaku di mobile */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}








/* ==== HERO SECTION ==== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full layar */
  overflow: hidden;
 
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slide background */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Durasi transisi lebih singkat */
}

.hero-slide.active {
  opacity: 1;
  /* Hapus animasi Ken Burns dari elemen ini */
  animation: none;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenburns 18s ease-in-out infinite;
  z-index: 1; /* Pastikan berada di bawah konten teks */
}

/* Animasi Ken Burns */
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

/* ==== KONTEN TEKS ==== */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertikal tengah */
  align-items: center; /* Horizontal tengah */
  text-align: center;
  padding: 0 16px;
}

.hero-text-wrapper {
  color: white;
  max-width: 900px;
}

/* Judul */
.hero-title {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Deskripsi */
.hero-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tombol */
/* Tombol */
.hero-buttons {
  display: flex;
  gap: 12px;
  animation: none !important;
  flex-wrap: wrap;
  justify-content: center; /* Tengah (default mobile) */
  margin-top: 1.5rem;
}

/* Tombol */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #000000;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.btn-hero:hover {
  background-color: #751006; /* Warna latar belakang tombol saat hover */
  color: #ffffff; /* Warna teks tombol saat hover */
  transform: translateY(-2px);
}

/* Gambar ikon */
.icon-small {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease; /* Transisi halus */
}

/* Efek hover untuk ikon (mengikuti tombol) */
.btn-hero:hover .icon-small {
  filter: invert(1); /* Ubah ikon menjadi putih saat tombol di-hover */
  transform: scale(1.1); /* Perbesar sedikit saat hover */
}



/* ==== DOT NAVIGATION ==== */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
}

/* ==== RESPONSIVE ==== */

/* Mobile - default */
.hero-title {
  font-size: 1.75rem; /* ~28px */
}

.hero-description {
  font-size: 1rem;
  text-align: center;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: 2rem; /* Lebih kecil dari sebelumnya (~32px) */
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-content {
    padding: 0 20px; /* Padding lebih kecil */
    align-items: flex-start; /* Rata kiri */
    text-align: left;
  }
  .hero-buttons {
    justify-content: flex-start; /* Rata kiri */
  }
  .btn-hero {
    padding: 6px 14px;
    font-size: 0.85rem;
  }

  .icon-small {
    width: 26px;
    height: 26px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
    padding-left: 4rem;
    justify-content: center;
  }
  .hero-title {
    font-size: 3rem; /* Lebih kecil dari sebelumnya (~48px) */
  }
  .hero-description {
    font-size: 1.125rem;
    text-align: left;
  }
  .hero-buttons {
    justify-content: flex-start; /* Rata kiri */
  }
  .btn-hero {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .icon-small {
    width: 30px;
    height: 30px;
  }
}

/* ==== BACKGROUND SLIDE ==== */
.hero-slide:nth-child(1) {
  background-image: url('../assets/discuss-image.webp');
}

.hero-slide:nth-child(2) {
  background-image: url('../assets/discuss-image2.webp');
}

.hero-slide:nth-child(3) {
  background-image: url('../assets/discuss-image3.webp');
}





/* ==== SECTION: Tentang Kami ==== */
#tentang {
  background: linear-gradient(to bottom, #e2edee, #ffffff);
  padding: 4rem 1.5rem;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Heading utama tentang */
#tentang h2 {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
  background: linear-gradient(to right, #6b0b03, #25221e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Container Tentang */
.tentang-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tentang-container {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 4rem;
  }
}

/* Kartu konten kiri */
.tentang-konten {
  flex: 1;
  background-color: #ffffff;
  border-left: 6px solid transparent;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Gradient border kiri */
.tentang-konten::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #6b0b03, #25221e);
  border-radius: 1rem 0 0 1rem;
}

/* Subjudul */
.tentang-subjudul {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

/* Judul isi konten */
.tentang-judul {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Paragraf */
.tentang-konten p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Highlight paragraf terakhir */
.tentang-highlight {
  font-weight: 600;
  color: #6b0b03;
  background-color: #fef2f2;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 10px rgba(107, 11, 3, 0.15);
}

/* Gambar kanan */
.tentang-gambar {
  flex: 1;
  display: flex;
  justify-content: center;
}

.gambar-produk {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 90%;
  object-fit: cover;
}

/* Animasi dan efek untuk "#1" */
.highlighted-number {
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(to right, #6b0b03, #e63946);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-right: 0.5rem;
  text-shadow: 2px 2px 8px rgba(107, 11, 3, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    text-shadow: 2px 2px 8px rgba(107, 11, 3, 0.4);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
  }
  100% {
    transform: scale(1);
    text-shadow: 2px 2px 8px rgba(107, 11, 3, 0.4);
  }
}





/* ===== Journey Section (Styled like Tentang) ===== */
.journey-section {
  background: linear-gradient(to bottom, #ffffff, #e2edee); /* Latar belakang soft */
  padding: 4rem 1.5rem;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.journey-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .journey-container {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 4rem;
  }
}

.highlighted-year {
  font-size: 2.75rem;
  font-weight: 900;
  display: inline-block;
  margin-right: 0.4rem;
  line-height: 1;

  background: linear-gradient(to right, #6b0b03, #e63946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  text-shadow: 1px 1px 6px rgba(107, 11, 3, 0.25);
  animation: growFade 2.5s ease-in-out infinite;
}

/* Optional Animasi: Pulse Elegan */
@keyframes growFade {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.95;
  }
}

.journey-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.journey-img {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 90%;
  object-fit: cover;
}

.journey-content {
  flex: 1;
  background-color: #ffffff;
  border-left: 6px solid transparent;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Gradient border kiri */
.journey-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #6b0b03, #25221e);
  border-radius: 1rem 0 0 1rem;
}

/* Subjudul */
.journey-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

/* Judul */
.journey-title {
  font-size: 2rem; /* Lebih besar dari sebelumnya */
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  text-align: left;

  background: linear-gradient(to right, #6b0b03, #0d0d0d); /* Gradient merah gelap ke merah terang */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}


/* Paragraf */
.journey-content p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Highlight akhir */
.journey-highlight {
  font-weight: 600;
  color: #6b0b03;
  background-color: #fef2f2;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 10px rgba(107, 11, 3, 0.15);
}



/* ==== Section Keunggulan ==== */
.section-keunggulan {
  background-color: transparent !important;
  padding: 3rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;

  background: linear-gradient(to right, #6b0b03, #25221e); /* Gradasi merah gelap ke hitam */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.06);
  letter-spacing: 0.5px;
}


/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Styling */
.card {
  position: relative;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* penting agar border tidak keluar */
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 8px;
  width: 100%;
  background: linear-gradient(to bottom, #6b0b03, #25221e); /* Biru gradasi */
}


.card-icon {
  width: 3rem;
  margin: 0 auto 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.card-text {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}




/* Section Brand Styling */
.section-brand {
  background-color: #ffffff;
  padding: 2.5rem 1rem;
}

.brand-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.brand-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;

  background: linear-gradient(to right, #6b0b03, #25221e); /* Merah tua ke gelap */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}


.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.brand-logo {
  height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}




/* ==== Section Testimoni ==== */
.section-testimoni {
  background: linear-gradient(to bottom right, #e2edee, #f9fafb); /* Soft gradient background */
  padding: 4rem 1.5rem;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.testimoni-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimoni-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  background: linear-gradient(to right, #6b0b03, #25221e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Grid Layout */
.testimoni-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimoni-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Kartu Testimoni */
.testimoni-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.testimoni-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #6b0b03, #25221e);
  border-radius: 1rem 0 0 1rem;
}

.testimoni-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimoni-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

.testimoni-author {
  font-weight: 600;
  color: #6b0b03;
  font-style: italic;
  text-align: right;
}


/* ==== CTA Section ==== */
.section-cta {
  background: linear-gradient(to right, #6b0b03, #25221e);
  padding: 2.5rem 1rem;
  color: #ede5e5;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-subtitle {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-button {
  background-color: white;
  color: #080808;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 9999px; /* rounded-full */
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #6b0b03; /* Tailwind's gray-200 */
  color: #f8f8fa;
}

/* ==== Footer ==== */
.footer-section {
  background-color: transparent !important;
  color: #050505;
  padding: 3rem 1.5rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* ... lainnya tetap sama */


.footer-column {
  flex: 1 1 300px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 1rem;
}

.footer-cert {
  width: 80px;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000509;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.social-icons {
  display: flex;
  justify-content: flex-start; /* bisa diubah ke center atau flex-end jika ingin ditengah atau kanan */
  align-items: center;
  margin-top: 1rem;
}

.social-icons img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.tokopedia-icon {
  width: 40px;
  height: 40px;
  object-fit: contain; /* menjaga rasio asli tanpa distorsi */
}

.social-icons img:hover {
  transform: scale(1.1);
}

.contact-info {
  display: inline-flex;
  align-items: left;
  gap: 8px;
  margin-bottom: 6px;
}

.inline-icon {
  width: 20px;
  height: 20px;
}


.subscribe-form {
  display: flex;
  flex-direction: column;
  max-width: 250px;
}

.subscribe-form input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.subscribe-form button {
  background: linear-gradient(to right,  #6b0b03, #f9f8f8, #6b0b03);
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background: linear-gradient(to right, #6b0b03, #25221e);
  color: rgb(255, 255, 255);
}

/* ==== Default sembunyikan dengan opacity ==== */
#scrollTopBtn,
#floatingChat,
#floatingChatIcon {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none; /* Tidak bisa diklik saat hidden */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Saat muncul */
#scrollTopBtn.show,
#floatingChat.show,
#floatingChatIcon.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Tombol Scroll */
#scrollTopBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6b0b03, #25221e);
  color: white;
  font-size: 1.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  animation: float 2.5s ease-in-out infinite;
}

/* Ikon Desktop */
.floating-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  width: 220px;
  max-width: 90vw;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.floating-chat:hover {
  transform: scale(1.05);
}

/* Mobile */
.floating-chat-container {
  display: none;
}
@media (max-width: 768px) {
  .floating-chat {
    display: none;
  }
  .floating-chat-container {
    display: block;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
    animation: bounce 2s infinite;
  }
  .floating-chat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

/* Animasi */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}



.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #000a0f;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid #000; /* Ubah warna garis jadi hitam */
  margin-bottom: 1rem;
}

