* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  
  /* Color variables */
  --primary-color: #C200C5;
  --primary-gradient: linear-gradient(135deg, #5F0061 0%, #C200C5 100%);
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-sm: 0.875rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Border radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Global App Styles */
.App {
  min-height: 100vh;
  position: relative;
}

/* Reset default styles */
#root {
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Global typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #5F0061, #C200C5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #C200C5, #5F0061);
}

/* Loading animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER STYLES */
.navbar {
  background: #FFFFFF;
  transition: all 0.4s ease-in-out;
  padding: 0.75rem 0;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: #FFFFFF;
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-brand {
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  text-decoration: none;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1);
}

.navbar-brand:hover .brand-logo-img {
  transform: scale(1.05);
}

.navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1px;
}

.navbar-nav .nav-link {
  color: #000000;
  font-weight: 700;
  margin: 0 8px;
  padding: 0;
  background: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #C200C5;
  background-color: transparent;
  transform: none;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.25rem 0;
  background: white;
  margin-top: 0.3rem;
}

.dropdown-item {
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  color: #333;
  font-weight: 500;
  border-radius: 6px;
}

.dropdown-item:hover {
  color: white;
  background-color: #C200C5;
  transform: translateX(3px);
}

.navbar-toggler {
  border: 2px solid #C200C5;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  margin-left: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(194, 0, 197, 0.2);
}

/* HERO SECTION STYLES */
.hero-section {
  /* background: linear-gradient(135deg, #5F0061 0%, #C200C5 100%); */
  background-image: url('/assets/img/hero-bg.png');
  background-position: center;
  background-size: cover;
  color: white;
  overflow: hidden;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 12rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-primary {
  background-color: #C200C5;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(194, 0, 197, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(194, 0, 197, 0.4);
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  width: 1000px;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 2.5rem auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

/* FOOTER STYLES */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 60px 0 20px 0;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.company-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.company-logo {
  flex-shrink: 0;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.company-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.company-details address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e879f9;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.contact-info i {
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* FLOATING CONTACT STYLES */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-contact.visible {
  opacity: 1;
  visibility: visible;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #229ED9);
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-btn.email {
  background: linear-gradient(135deg, #EA4335, #FBBC05);
}

.contact-btn.phone {
  background: linear-gradient(135deg, #4285F4, #34A853);
}

/* RESPONSIVE STYLES */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-section {
    padding: 120px 0 80px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .company-info {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-section .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .floating-contact {
    bottom: 20px;
    right: 20px;
  }
  
  .contact-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .navbar .container {
    padding: 0 15px;
  }
  
  .brand-logo-img {
    height: 40px;
  }
}

/* FEATURES SECTION STYLES */
.features-section {
  background-color: #f7f9fc;
  padding: 50px 0;
  height: 50vh;
  display: flex;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 20px;
  background-color: #f7f9fc;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 10px;
  word-break: break-word;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
  max-height: 120px;
  overflow: hidden;
  word-break: break-word;
  margin: 0;
}

@media (max-width: 1200px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
    padding: 40px 10px;
  }
  .feature-card {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* PRODUCTS SECTION STYLES */
/* Container Utama */
.products-section {
  padding: 100px 0;
  background-color: #f8f9fa; /* Latar belakang abu-abu sangat muda */
}

/* Wrapper untuk membatasi lebar konten */
.products-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Padding untuk responsivitas */
}

/* Judul Utama */
.products-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4rem;
  line-height: 1.2;
}

/* Kartu Produk */
.product-card {
  background: white;
  padding: 2.5rem 1.5rem; /* Menyesuaikan padding agar card terlihat lebih tinggi */
  border-radius: 20px; /* Sudut membulat */
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); /* Bayangan lembut */
  position: relative;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05); /* Border tipis */
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Menghapus semua efek hover pada card untuk mencocokkan gambar */
.product-card:hover {
  transform: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.05);
}

/* Hilangkan pseudo-element ::before */
.product-card::before {
  display: none;
}

/* Ikon Produk */
.product-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-icon img {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
}

/* Menghilangkan efek hover pada ikon */
.product-card:hover .product-icon img {
  transform: none;
}

/* Judul di dalam kartu */
.product-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

/* Deskripsi di dalam kartu */
.product-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Menghilangkan semua animasi */
.product-card {
  opacity: 1;
  transform: none;
  animation: none;
}

/* ABOUT SECTION STYLES */
.about-section {
  background-color: #162d57;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 70vh;
  padding: 100px 0;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Warna teks "Tentang Kami" diubah menjadi putih */
}

.description {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }
  
  .description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .about-section {
    padding: 80px 0;
  }
}

/* STATS SECTION STYLES */
.stats-section {
  padding: 40px 0 10px; /* Kurangi padding bawah */
  background: #ffffff;
  height: 30vh;
  display: flex;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Jarak antar kartu */
}

/* Card compact */
.stat-card {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Mulai dari kiri untuk ikon dan teks */
  flex-direction: row; /* Ikon dan teks berdampingan */
  gap: 15px; /* Jarak antar ikon dan teks disesuaikan */
  background: #f5f7fa;
  border-radius: 12px; /* Sudut melengkung */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Bayangan halus */
  padding: 20px; /* Padding lebih besar untuk ruang yang luas */
  margin: 0;
  transition: transform .3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* Ukuran ikon disesuaikan menjadi persegi */
  height: 80px;
  overflow: hidden; /* Pastikan ikon tidak meluber */
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Pastikan ikon tidak dipotong */
}

/* Text Container */
.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Teks mulai dari kiri */
  text-align: left; /* Teks rata kiri */
}

/* Teks */
.stat-number {
  font-size: 1.8rem; /* Ukuran font angka lebih besar */
  font-weight: 700;
  color: #6a1b9a; /* Warna ungu */
  margin: 0 0 5px; /* Tambahkan margin bawah */
  line-height: 1;
}

.stat-desc {
  font-size: 0.85rem; /* Ukuran font deskripsi disesuaikan */
  color: #555555;
  margin: 0;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 767px) { /* Sesuaikan breakpoint */
  .stats-section { 
    padding: 20px 0 10px; 
  }
  .stat-number { 
    font-size: 1.5rem; 
  }
  .stat-icon { 
    width: 60px; 
    height: 60px; 
  }
  .stat-card { 
    padding: 15px; 
    flex-direction: column; 
    gap: 10px; 
  }
  .stats-section .container { 
    flex-direction: column; 
    gap: 10px; 
  }
  .stat-desc { 
    font-size: 0.8rem; 
  }
  .stat-content { 
    align-items: center; 
    text-align: center; 
  }
}

/* INFO SECTION STYLES */
.info-section {
  padding: 100px 0;
  background-color: #FFFFFF; /* Latar belakang putih konsisten */
}

.info-section .container {
  width: 100%;
  max-width: 1200px; /* Batas lebar maksimum */
  margin: 0 auto;   /* Posisi otomatis ke tengah */
  padding: 0 15px;  /* Padding untuk responsif */
  position: relative; /* Penting untuk z-index */
  z-index: 1; /* Pastikan konten berada di atas pseudo-element */
}

.info-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000; /* Warna teks hitam konsisten */
  margin-bottom: 3rem;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.5rem; /* Menambah jarak bawah dari carousel */
}

.carousel-controls .btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #C200C5;      /* Warna border ungu */
  background: white;
  color: #C200C5;                 /* Warna ikon ungu */
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(194, 0, 197, 0.2);
}

.carousel-controls .btn:hover {
  background: #C200C5;            /* Latar hover ungu */
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 0, 197, 0.3);
}

.carousel-controls .btn i {
  font-size: 1.1rem;
}

.carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}

.carousel-inner {
  border-radius: 20px;
}

/* Responsive design for info section */
@media (max-width: 767.98px) {
  .info-section {
    padding: 80px 0;
  }
  
  .info-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .carousel-controls {
    justify-content: center;
  }
}

/* BENEFITS SECTION STYLES */
/* Container Utama */
.benefits-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

/* Pseudo-element untuk pola latar belakang */
.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(0, 123, 255, 0.02) 50%, transparent 51%);
  background-size: 20px 20px;
  z-index: 0; /* Pastikan pseudo-element berada di belakang */
}

/* Tambahkan container untuk membatasi lebar */
.benefits-section .container {
  max-width: 1200px; /* Ukuran maksimal 1200px */
  margin: 0 auto; /* Menengahkan container */
  padding: 0 15px; /* Padding untuk responsif */
  position: relative; /* Penting untuk z-index */
  z-index: 1; /* Pastikan konten berada di atas pseudo-element */
}

/* Judul Utama */
.benefits-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6a00ff; /* Warna ungu seperti di gambar */
  margin-bottom: 1.5rem;
}

/* Sub-judul */
.benefits-section .lead {
  font-size: 1.2rem; /* Ukuran font lebih kecil agar mirip gambar */
  color: #666;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  line-height: 1.6;
}

/* Kartu Manfaat */
.benefit-card {
  background: linear-gradient(135deg, #6a00ff 0%, #a400ff 100%); /* Gradien ungu sebagai latar belakang default */
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2); /* Bayangan lebih kuat */
  position: relative;
  height: 100%;
  border: none; /* Hilangkan border */
  margin-bottom: 2rem;
  color: white; /* Teks default berwarna putih */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hilangkan pseudo-element ::before pada kartu */
.benefit-card::before {
  display: none;
}

/* Efek hover pada kartu */
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); 
}

/* Ikon */
.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.benefit-icon img {
  width: 100px; /* Ukuran ikon lebih besar */
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3)); 
}

/* Efek hover pada ikon */
.benefit-card:hover .benefit-icon img {
  transform: scale(1.1); 
}

/* Judul di dalam kartu */
.benefit-card h4 {
  font-size: 1.2rem; 
  font-weight: 700;
  color: white; 
  line-height: 1.3;
  margin: 0; 
}

/* Responsive design */
@media (max-width: 991.98px) {
  .benefits-section {
    padding: 80px 0;
  }
  
  .benefits-section h2 {
    font-size: 2rem;
  }
  
  .benefit-card {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .benefits-section h2 {
    font-size: 1.75rem;
  }
  
  .benefits-section .lead {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .benefit-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .benefit-icon img {
    width: 80px;
  }
  
  .benefit-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .benefits-section {
    padding: 60px 0;
  }
  
  .benefits-section .lead {
    margin-bottom: 2.5rem;
  }
  
  .benefit-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-card h4 {
    font-size: 1.1rem;
  }
  
  .benefit-icon {
    margin-bottom: 1rem;
  }
}

/* TESTIMONIAL SECTION STYLES */
.testimonial-section {
  background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
  height: 600px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: #1f2937;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #9333ea; /* Warna ungu yang lebih tua */
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
  position: relative;
}

.testimonial-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px; /* Ruang untuk scrollbar */
}

.testimonial-cards::-webkit-scrollbar {
  height: 8px;
}

.testimonial-cards::-webkit-scrollbar-thumb {
  background-color: #d946ef;
  border-radius: 4px;
}

.testimonial-cards::-webkit-scrollbar-track {
  background-color: #f3e8ff;
  border-radius: 4px;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex: 0 0 calc(33.333% - 20px); /* Menampilkan 3 kartu per slide */
  scroll-snap-align: start;
  transition: transform 0.3s ease-in-out;
  border-top: 3px solid transparent; /* Untuk efek garis ungu */
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: linear-gradient(90deg, #d946ef, #e879f9);
  transition: left 0.3s ease-out, right 0.3s ease-out;
}

.testimonial-card:hover::before {
  left: 0;
  right: 0;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  font-size: 1.2rem;
  color: #f59e0b;
}

.star.empty {
  color: #ddd;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 2rem;
  color: #d946ef;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.4;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.9rem;
  margin-top: auto;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #d8b4fe;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #9333ea;
}

.dot:hover {
  background-color: #b388ff;
}

@media (max-width: 768px) {
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }
}

/* FAQ SECTION STYLES */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question.active {
  background: linear-gradient(135deg, #5F0061 0%, #C200C5 100%);
  color: white;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ADDITIONAL RESPONSIVE STYLES */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .product-card,
  .feature-card {
    margin-bottom: 2rem;
  }
  
  .about-content {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .product-icon,
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-section {
    padding: 2rem 1.5rem;
  }
  
  .cta-section h3 {
    font-size: 1.5rem;
  }
}
