/* General Body Styling */
body {
  margin: 0;
  font-family: Arial, sans-serif; /* Fallback font */
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0; /* Jarak atas/bawah */
  transform: translateY(-120%); /* Mulai dari tersembunyi di atas */
  transition: transform 0.4s ease-in-out;
  background-color: transparent;
}
.site-header.visible {
  transform: translateY(0); /* Muncul ke posisi normal */
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* Beri jarak di sisi kiri/kanan */
  display: flex;
  justify-content: center; /* Menengahkan nav-links (pill) */
  align-items: center;
  position: relative; /* Penting untuk penempatan logo */
}
.logo {
  text-decoration: none; /* Biarkan ini agar tidak ada garis bawah */
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.logo img {
  height: 55px; /* <-- Atur tinggi logo Anda di sini */
  width: auto; /* <-- Biarkan auto agar proporsi gambar tetap bagus */
  display: block; /* Mencegah spasi ekstra di bawah gambar */
}
.nav-links {
  background-color: #ffffff;
  border-radius: 50px; /* Membuat bentuk pill */
  padding: 12px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px; /* Jarak antar menu */
}
.nav-links a {
  color: #333; /* Teks menu warna gelap di atas pill putih */
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #fb8f11; /* DIUBAH ke Warm Gold */
}

/*
====================================
CSS UNTUK MENU HAMBURGER (RESPONSIVE)
====================================
*/

/* 1. Tombol Hamburger (Ikon) */
.menu-toggle {
  display: none; /* Sembunyikan di desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* Pastikan di atas overlay */
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333; /* Warna icon (ganti ke #fff jika ingin putih) */
  transition: all 0.3s ease-in-out;
}

/* 2. Menu Overlay Fullscreen (Mobile) */
.nav-links-mobile {
  display: block;
  position: fixed;
  top: 0;
  right: -100%; /* Mulai dari luar layar di kanan */
  width: 100%;
  height: 100vh; /* Setinggi layar penuh */
  background-color: #ffffff;
  z-index: 1000; /* Di bawah tombol, di atas konten */
  transition: right 0.5s ease;

  /* Tengahkan link di dalam overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* Susun link ke bawah */
  align-items: center;
  gap: 40px; /* Jarak antar link */
}

.nav-links-mobile a {
  color: #333; /* Warna teks gelap di atas background putih */
  text-decoration: none;
  font-size: 1.8em; /* Ukuran font besar */
  font-weight: 600;
}

.nav-links-mobile a:hover {
  color: #fb8f11; /* Warna hover Warm Gold */
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Mengisi seluruh tinggi viewport */
  background-image: url("../Asset/bghero.png"); /* Ganti dengan URL gambar hero Anda */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden; /* Pastikan tidak ada scroll di hero */
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 100%
  ); /* Gradien transparan */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 90%;
  opacity: 0; /* Mulai dengan transparan */
  transition: opacity 1.5s ease-out;
}
.hero-subtitle {
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
}
.hero-title {
  font-family: "Avenir Next Rounded", "Proxima Nova", "Poppins", sans-serif;
  letter-spacing: 0.4em;
  font-weight: 500;
  font-size: 4vw;
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-profile {
  font-family: "Orbitron", sans-serif; /* Atau Mokoto */
  font-size: 3vw; /* Ukuran font responsif */
  letter-spacing: 5px;
  margin-top: 10px;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.hero-footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  opacity: 0.7;
}
.brand-name {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: Arial, sans-serif;
  font-size: 1.1em;
}
.website-link {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: Arial, sans-serif;
}

/* About Us Section Styling */
.about-us-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.about-us-section .container {
  max-width: 1000px;
  margin: 0 auto;
}
.about-us-section .section-title {
  font-size: 3em;
  color: #0d365f; /* Steel Blue */
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #fb8f11; /* Warm Gold */
  border-radius: 2px;
}
.vision-mission-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Agar responsif */
  gap: 40px;
  /* Biarkan 'align-items' kosong agar default-nya (stretch) */
}
.vision-card,
.mission-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Pastikan "overflow: hidden;" DIHAPUS dari sini */
}
.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ▼▼▼ INI ADALAH KODE UNTUK EFEK STICKY ▼▼▼ */
.vision-content-sticky {
  position: -webkit-sticky; /* Untuk Safari */
  position: sticky;
  top: 120px; /* Jarak dari atas (sesuaikan dengan tinggi navbar Anda) */
}

.card-title {
  font-size: 2.2em;
  color: #0d365f; /* Steel Blue */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.card-title::after {
  content: "";
  position: absolute;
  left: 50%; /* <-- UBAH INI */
  transform: translateX(-50%); /* <-- TAMBAHKAN INI */
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #fb8f11; /* Warm Gold */
  border-radius: 1.5px;
}

.vision-card p,
.mission-card ol {
  font-size: 1.15em;
  line-height: 1.7;
  color: #555;
  text-align: justify; /* <-- TAMBAHKAN INI */
}
.mission-card ol {
  list-style-type: decimal;
  padding-left: 25px;
}
.mission-card li {
  margin-bottom: 10px;
}

/* ==========================
   OUR SERVICE SECTION STYLING (FIXED)
=========================== */
.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9; /* Cocokkan dengan About Us */
  text-align: center;
  position: relative;
}
.services-section .section-title {
  font-size: 3em;
  color: #0d365f; /* Steel Blue */
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #fb8f11; /* Warm Gold */
  border-radius: 2px;
}
.services-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* JANGAN TAMBAHKAN 'width' DI SINI, JS AKAN MENGATURNYA */
}

.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 24px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  box-sizing: border-box;
  flex-shrink: 0;

  /* (Desktop: 8 kartu di track 400%) */
  width: 10.5%; /* (12.5% per kartu - 2% margin) */
  margin: 0 1%; /* Total 2% margin */
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.3rem;
  color: #0d365f;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.4;
  min-height: 55px;
  text-align: center;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 120px;
  text-align: justify; /* <-- TAMBAHKAN INI */
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.service-list li::before {
  content: "•";
  color: #e64a19;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 12px;
  line-height: 0.8;
  flex-shrink: 0;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.2s ease;
  opacity: 30%;
}
.slider-button:hover {
  background-color: #f9f9f9;
  border-color: #ccc;
}

.slider-button.prev {
  left: 10px;
}

.slider-button.next {
  right: 10px;
}

/* =========== Product Section =========== */
.products {
  padding: 4rem 5% 6rem 5%; /* Sedikit mengurangi padding atas */
  text-align: center;
  background-color: white;
}

.section-title {
  font-size: 2.5rem;
  color: #f5ba41;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* [FIX-1] Wrapper baru untuk slider agar panah tidak terpotong */
.slider-container {
  position: relative;
  width: 90%; /* Dibuat lebih lebar agar tidak sempit */
  margin: 0 auto;
}

.product-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden; /* Biarkan overflow hidden di sini */
  cursor: grab; /* Ganti kursor menjadi grab */
}
/* .product-slider.grabbing {
  cursor: grabbing; 
} */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
/* .slider-track.fade-out {
  opacity: 0;
  
}
.slider-track.fade-in {
  opacity: 1;
} */

.slide {
  min-width: 20%; /* 5 item di desktop */
  padding: 0.5rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.9);
}

.slide.active {
  opacity: 1;
  transform: scale(1.1);
}

/* [FIX-2] Membuat semua gambar slider setara tingginya */
.slide img {
  width: 100%;
  height: 150px; /* Atur tinggi yang sama untuk semua gambar */
  object-fit: cover; /* Memastikan gambar terisi tanpa distorsi */
  border-radius: 8px;
}

/* [FIX-1] Penyesuian posisi panah */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 1.8rem; /* Sedikit diperkecil agar lebih proporsional */
  cursor: pointer;
  padding: 0.7rem 1.2rem;
  border-radius: 50%; /* Dibuat bulat agar lebih modern */
  z-index: 10;
  transition: background-color 0.3s ease;
  opacity: 30%;
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Panah sekarang diposisikan relatif terhadap .slider-container */
.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

/* =========== Kotak Timbul Display Produk =========== */
.product-display {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 80%;
  margin: 4rem auto 0 auto;
  text-align: left;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.products .section-title {
  font-size: 3em;
  color: #0d365f; /* Steel Blue */
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #fb8f11; /* Warm Gold */
  border-radius: 2px;
}

.product-display-image {
  flex-basis: 40%;
  text-align: center;
}

.product-display-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: none;
}

.product-display-info {
  flex-basis: 60%;
}

.product-display-info h3 {
  margin-top: 0;
  font-size: 2rem;
  color: #f5ba41;
  margin-bottom: 1rem;
}

.product-display-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #555;
  text-shadow: none;
}

/* =========== Tombol / Buttons =========== */
.product-buttons {
  display: flex;
  flex-wrap: wrap; /* Agar tombol turun ke bawah jika tidak muat */
  gap: 1rem;
}
.btn-wa {
  background-color: green;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-right: 0; /* Dihapus karena sudah pakai gap dari .product-buttons */
}
.btn-dark,
.btn-dark-get-quote {
  background-color: #343a40;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-right: 0; /* Dihapus karena sudah pakai gap dari .product-buttons */
}

.btn-wa:hover {
  background-color: rgb(1, 97, 1);
}
.btn-dark-get-quote:hover {
  background-color: #23272b;
}

/* ==========================
   CSS UNTUK MODAL (POP-UP)
=========================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;

  /* Sembunyikan secara default */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
  /* Tampilkan saat .show ditambahkan */
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px; /* Atur lebar maksimum modal */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;

  /* Animasi saat muncul */
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2.5rem; /* Perbesar tombol close */
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #333;
}

.modal-content h3 {
  margin-top: 0;
  color: #0d365f; /* Steel Blue */
}

/* Style untuk judul produk di dalam modal */
#analysis-modal-product-title {
  font-size: 1.5rem;
  color: #fb8f11; /* Warm Gold */
  margin-bottom: 15px;
}
/* ------------------- */
/* --- Projects Section --- */
/* ------------------- */

/* --- Penyesuaian Judul Section Projects --- */

/* 1. Membuat section #projects rata tengah */
/* Ini penting agar h2 dan garis bawahnya bisa di tengah */
#projects {
  background-color: var(--soft-gray);
  padding-bottom: 80px;
  overflow: hidden;
  text-align: center; /* <-- TAMBAHKAN INI */
}

/* 2. Memberi style pada H2 di dalam #projects */
/* Style ini disamakan dengan .section-title Anda */
#projects .container h2 {
  font-size: 3em;
  color: #0d365f; /* Steel Blue */
  margin-bottom: 60px;
  position: relative;
  display: inline-block; /* Penting agar bisa di-center oleh parent */
}

/* 3. Menambahkan garis bawah emas */
#projects .container h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #fb8f11; /* Warm Gold */
  border-radius: 2px;
}

.scrolling-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Jarak antara dua baris */
}

.scrolling-row {
  display: flex;
  gap: 40px;
  padding: 40px;
  /* Jarak antar kartu proyek */
  flex-wrap: nowrap;
  /* Memastikan item tidak pindah baris */
}

/* Menghentikan animasi saat di-hover */
.scrolling-row[data-animated="true"]:hover {
  animation-play-state: paused;
}

/* Terapkan animasi hanya jika atribut data-animated=true */
.scrolling-row[data-animated="true"] {
  /* Variabel untuk perhitungan animasi */
  --card-width: 400px;
  --animation-duration: 18s;

  /* Gunakan variabel untuk kalkulasi */
  animation: scroll var(--animation-duration) linear infinite;
}

.scrolling-row[data-direction="right"] {
  animation-direction: reverse;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 10px));
    /* -50% dari total lebar, -10px untuk setengah gap */
  }
}

.project-card {
  flex-shrink: 0;
  /* Mencegah kartu menyusut */
  width: var(--card-width);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card .project-info {
  padding: 20px;
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.project-card p {
  color: #777;
  font-size: 0.9rem;
}

/* --- Bagian Responsive untuk Projects --- */
@media (max-width: 768px) {
  /* ... (style responsif lain) ... */

  /*project kami */
  .scrolling-row[data-animated="true"] {
    --card-width: 290px;
    --animation-duration: 15s;
  }

  .scrolling-row {
    gap: 30px;
    padding: 20px 0;
  }

  .project-card h3 {
    font-size: 1.1rem;
  }

  /* ... (style responsif lain) ... */
}
/* =========== Footer Styling =========== */
.site-footer {
  background-color: #c1c9d1;
  color: #000000;
  padding: 5rem 5% 0;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  /* Auto-fit columns, minimal 220px, max 1fr */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3,
.footer-col h4 {
  color: rgb(10, 0, 0);
  margin-bottom: 1.25rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  max-width: 150px; /* Atur lebar logo, sesuaikan nilainya */
  margin-bottom: 1rem; /* Memberi jarak antara logo dan elemen di bawahnya */
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #1d1c1c;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
  padding: 0.25rem 0;
  margin-left: 9px;
}

.footer-col a:hover {
  color: rgb(146, 143, 143);
  padding-left: 5px;
}
.social-links a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #888;
}

/* --- Floating Whatsapp --- */
/* =========== Floating WhatsApp Button =========== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px; /* Jarak dari bawah */
  right: 20px; /* Jarak dari kanan */
  background-color: #25d366; /* Warna hijau WhatsApp */
  color: white;
  width: 60px; /* Lebar tombol */
  height: 60px; /* Tinggi tombol */
  border-radius: 50%; /* Membuat tombol lingkaran */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem; /* Ukuran ikon WhatsApp */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Efek bayangan */
  z-index: 1000; /* Pastikan di atas elemen lain */
  text-decoration: none; /* Hilangkan garis bawah default link */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp-btn:hover {
  background-color: #1da851; /* Warna saat dihover */
  transform: scale(1.05); /* Sedikit membesar saat dihover */
}

@media (max-width: 992px) {
  /* Product Section */
  .slide {
    min-width: 33.33%;
  }
  .product-display-info button {
    margin-top: 20px;
  }
  .footer-container {
    text-align: center; /* Teks footer rata tengah di mobile */
  }
  .footer-col {
    margin-bottom: 1rem;
  }
  .footer-col ul {
    display: inline-block; /* Agar list tetap rata kiri */
    text-align: left;
  }
  .footer-col a {
    align-items: center;
  }

  /* --- Floating Whatsapp --- */
  /* =========== Floating WhatsApp Button =========== */
  .floating-whatsapp-btn {
    position: fixed;
    bottom: 20px; /* Jarak dari bawah */
    right: 20px; /* Jarak dari kanan */
    background-color: #25d366; /* Warna hijau WhatsApp */
    color: white;
    width: 60px; /* Lebar tombol */
    height: 60px; /* Tinggi tombol */
    border-radius: 50%; /* Membuat tombol lingkaran */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem; /* Ukuran ikon WhatsApp */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Efek bayangan */
    z-index: 1000; /* Pastikan di atas elemen lain */
    text-decoration: none; /* Hilangkan garis bawah default link */
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .floating-whatsapp-btn:hover {
    background-color: #1da851; /* Warna saat dihover */
    transform: scale(1.05); /* Sedikit membesar saat dihover */
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  /* ▼▼▼ BAGIAN NAVBAR BARU (MENGGANTIKAN LOGIKA LAMA) ▼▼▼ */
  .navbar-container {
    padding: 0 20px; /* Atur ulang padding */
  }
  .logo {
    left: 20px; /* Logo tetap 20px dari tepi */
  }
  .logo img {
    height: 40px; /* Logo diperkecil */
  }

  /* 1. Sembunyikan navigasi desktop (pill) */
  .nav-links {
    display: none;
  }

  /* 2. Tampilkan tombol hamburger */
  .menu-toggle {
    display: block;
    right: 20px; /* Sesuaikan posisi di mobile */
  }

  /* 3. Tampilkan menu mobile saat .active (dari JS) */
  .nav-links-mobile.active {
    right: 0; /* Pindahkan ke dalam layar */
  }

  /* 4. Animasi Tombol Hamburger menjadi "X" */
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0; /* Sembunyikan bar tengah */
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #333; /* Ganti warna jadi gelap saat 'X' */
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #333; /* Ganti warna jadi gelap saat 'X' */
  }
  /* ▲▲▲ AKHIR BAGIAN NAVBAR BARU ▲▲▲ */

  .hero-title {
    font-size: 4vw;
  }
  .hero-profile {
    font-size: 4vw;
  }
  .hero-subtitle {
    font-size: 1em;
  }
  .hero-footer {
    flex-direction: column;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    gap: 5px;
    width: auto;
  }
  .brand-name,
  .website-link {
    position: static;
    transform: none;
    margin: 0;
  }
  .section-title {
    font-size: 2.2em;
  }
  .card-title {
    font-size: 1.8em;
  }
  .slider-track {
    /* JANGAN TAMBAHKAN 'width' DI SINI */
  }

  .service-card {
    /* --- INI PERUBAHAN UTAMANYA --- */
    /* (Mobile: 6 kartu di track 600%) */
    width: 14.666%; /* (16.666% per kartu - 2% margin) */
    margin: 0 1%;
  }

  /* Hapus tinggi minimum di mobile agar natural */
  .service-card-title {
    min-height: 0;
  }
  .service-card p {
    min-height: 0;
  }

  .slider-button.prev {
    left: 10px;
  }
  .slider-button.next {
    right: 10px;
  }

  /* Product Section */
  .section-title {
    font-size: 2rem; /* Perkecil judul di mobile */
  }
  .slider-arrow {
    display: none;
  }
  .product-slider {
    cursor: grab;
  }
  .product-slider.grabbing {
    cursor: grabbing; /* Ganti kursor saat sedang drag */
  }
  .slider-arrow.prev {
    display: none;
  }
  .slider-arrow.next {
    display: none; /* Sembunyikan panah di mobile */
  }

  /* Menampilkan 2 item di mobile */
  .slide {
    min-width: 50%;
  }

  /* Tata letak product-display menjadi vertikal */
  .product-display {
    flex-direction: column; /* Ubah jadi tumpukan vertikal */
    width: 90%; /* Gunakan lebih banyak lebar layar */
    text-align: center; /* Pusatkan teks untuk container */
  }

  .product-display-info {
    text-align: left; /* Kembalikan text-align kiri untuk paragraf */
  }

  .product-display-info h3 {
    font-size: 1.8rem;
  }
  .floating-whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    bottom: 15px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 7vw;
  }
  .hero-profile {
    font-size: 5vw;
  }
  .hero-subtitle {
    font-size: 0.9em;
  }
  .about-us-section {
    padding: 50px 15px;
  }
}
