/* Container Utama */
.update-web-vadel {
  width: 100%;
  position: relative;
}

/* Navigasi */
.navigasi-bar {
  /* position: fixed; */
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: var(--white);
  padding: 10px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar a {
  font-size: 14px;
  font-weight: 500;
  color: #bdbdbd;
  transition: 0.3s;
}

.navbar a.active,
.navbar a:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.frame-18 {
  height: 100vh;
  background:
    linear-gradient(90deg, var(--primary-blue) 0%, rgba(1, 53, 125, 0.4) 100%),
    url("./img/background-header.png") center/cover;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: white;
}
.text-wrapper-14 {
  color: #ffffff;
}

.text-wrapper-15 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.1;
}

/* About & Director Section */
.about-container {
  padding: 100px 10%;
}

.director-box {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.director-image img {
  border-radius: 20px;
  box-shadow: 15px 15px 0 var(--primary-lime);
}

/* Visi Misi Grid */
.visi-misi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  padding: 40px;
  border-radius: 20px;
}

.card-visi {
  background: var(--primary-blue);
  color: white;
}
.card-misi {
  background: var(--bg-light);
  border: 1px solid #eee;
}

/* Product Section */
.product-section {
  background: var(--primary-lime);
  padding: 80px 10%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: white;
  padding: 60px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Responsive Mobile */
@media (max-width: 1024px) {
  .director-box {
    flex-direction: column;
    text-align: center;
  }
  .navbar {
    display: none;
  } /* Perlu hamburger menu untuk navigasi */
}

@media (max-width: 768px) {
  .frame-18 {
    padding: 0 5%;
    justify-content: center;
    text-align: center;
  }
  .about-container {
    padding: 60px 5%;
  }
}

/* Container Utama Tentang Kami */
.update-web-vadel .frame {
  position: relative;
  padding: 80px 50px;
  height: auto; /* Biarkan tinggi menyesuaikan konten */
  min-height: 100vh;
}

/* Row Header: Judul di Kiri, Stats di Kanan */
.about-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  gap: 60px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 35px;
  font-weight: 700;
  color: #01357d;
}

.stat-label {
  font-size: 14px;
  color: #01357d;
}

@media (max-width: 768px) {
  /* Membuat container statistik membungkus ke bawah jika ruang tidak cukup */
  .stats-container {
    display: flex;
    flex-wrap: wrap; /* Izinkan item turun ke bawah */
    gap: 20px; /* Kurangi jarak antar item dari 60px menjadi 20px */
    justify-content: center; /* Rata tengah agar rapi di HP */
    width: 100%;
  }

  /* Mengatur item statistik agar lebih fleksibel */
  .stat-item {
    flex: 1 1 100px; /* Minimal lebar 100px, bisa melebar sesuai ruang */
    text-align: center;
    min-width: fit-content;
  }

  .stat-number {
    font-size: 28px; /* Kecilkan sedikit ukuran angka di mobile */
  }

  /* Pastikan header row berubah menjadi kolom */
  .about-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
}
/* Grid Layout Konten */
.about-main-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Kiri sedikit lebih lebar */
  gap: 30px;
}

/* Kolom Kiri */
.left-column .main-image-wrapper img {
  width: 100%;
  border-radius: 25px;
  height: 350px;
  object-fit: cover;
  margin-bottom: 30px;
}

.about-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Kolom Kanan */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  padding: 30px;
  border-radius: 20px;
  color: white;
}

.card h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.card p {
  font-size: 13px;
  line-height: 1.5;
}

.vision-card {
  background-color: #01357d;
}
.mission-card {
  background-color: #becc19;
}

/* Kartu Direktur Khusus */
.director-card {
  background-color: #87c8b3;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 30px; /* Padding kiri saja, gambar menempel bawah */
  overflow: hidden;
  height: 250px;
}

.director-info {
  padding: 30px 0;
  flex: 1;
}

.director-img-fix {
  height: 100%;
  align-self: flex-end;
  object-fit: contain;
}

/* Penyesuaian Responsif untuk Judul */
@media (max-width: 768px) {
  .left-column .main-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .vision-mission-row {
    display: block;
  }

  .vision-card {
    margin-bottom: 20px;
  }

  .director-card {
    display: block;
    height: 100%;
    padding: 30px;
  }

  .director-img-fix {
    height: auto;
  }
}

/* Responsive untuk Mobile */
@media (max-width: 1024px) {
  .about-main-content {
    grid-template-columns: 1fr;
  }
  .about-header-row {
    flex-direction: column;
    gap: 30px;
  }
}

/* --- Tipografi & Judul Tentang Kami --- */

/* Label Kecil di atas Judul (Vadel Ksatria Samudera Indonesia) */
.text-wrapper-5 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #828282; /* Warna abu-abu soft */
  margin-bottom: 8px;
}

/* Judul Utama Section (Tentang Kami) */
.update-web-vadel h2.text-wrapper-6 {
  font-size: clamp(
    32px,
    4vw,
    48px
  ); /* Ukuran dinamis: mengecil di HP, besar di Desktop */
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1.2;
}

/* Judul di dalam Kartu (Visi, Misi, Pesan Direktur) */
.card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

/* Deskripsi Teks di Kolom Kiri */
.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #4f4f4f;
  margin-top: 20px;
  text-align: justify;
}

/* Penyesuaian Responsif untuk Judul */
@media (max-width: 768px) {
  .update-web-vadel h2.text-wrapper-6 {
    font-size: 28px;
    text-align: center;
  }

  .text-wrapper-5 {
    text-align: center;
    display: block;
  }

  .card h3 {
    font-size: 22px;
  }
}

/* Container Utama Produk */
.update-web-vadel .frame-43 {
  position: relative;
  padding: 80px 50px;
  background-color: #becc19; /* Warna hijau limau sesuai file */
  height: auto;
  min-height: 100vh;
}

.product-header {
  margin-bottom: 50px;
  padding-left: 24px;
}

/* Grid System - Mengatur 5 kolom otomatis */
.product-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}

/* Kotak Produk Individual */
.product-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-image-box {
  background-color: #ffffff;
  border-radius: 8px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
}

.product-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-name {
  font-family: "Inter-Regular", Helvetica;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

/* Judul Header Product */
.update-web-vadel .text-wrapper-18 {
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 40px; /* Ukuran diperbesar sesuai gambar */
  margin-top: 10px;
}

/* Responsif untuk layar lebih kecil */
@media (max-width: 1200px) {
  .product-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- SECTION VALUE PERUSAHAAN (REVISI POSISI GAMBAR) --- */

.value-card-blue {
  background-color: #01357d;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Membagi dua sisi */
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  align-items: center; /* Menjaga elemen di tengah secara vertikal */
}

/* Kolom Kiri: Memberikan Margin/Padding agar gambar bergeser ke kanan */
.value-image-left {
  width: 100%;
  padding: 40px 0 40px 60px; /* Atas: 40px, Kanan: 0, Bawah: 40px, Kiri: 60px (Margin yang Anda minta) */
  display: flex;
  justify-content: center;
}

.value-image-left img {
  width: 100%;
  max-width: 500px; /* Membatasi lebar agar tidak terlalu besar */
  height: auto;
  border-radius: 20px; /* Membuat sudut gambar ikut melengkung agar serasi */
  object-fit: cover;
}

/* Kolom Kanan: Teks & Gambar Bawah */
.value-content-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.value-text-wrapper .text-wrapper-15 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.value-text-wrapper .text-wrapper-3 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  opacity: 0.95;
}

/* Gambar di Bawah Teks */
.value-image-bottom {
  width: 100%;
  margin-top: 10px;
}

.value-image-bottom img {
  width: 100%;
  height: 200px; /* Mengatur tinggi agar proporsional */
  object-fit: cover;
  border-radius: 15px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
  .value-card-blue {
    grid-template-columns: 1fr;
    border-radius: 30px 30px 0 0;
  }

  .value-image-left {
    padding: 30px; /* Padding merata di layar kecil */
  }

  .value-content-right {
    padding: 30px;
  }
}

/* --- SECTION P3K --- */
.frame-27 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Teks sedikit lebih lebar dari gambar */
  gap: 60px;
  padding: 100px 10%;
  align-items: center;
  background-color: #ffffff;
}

/* Kolom Teks */
.frame-28 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.frame-29 .text-wrapper-5 {
  font-size: 14px;
  font-weight: 600;
  color: #828282;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.frame-29 .text-wrapper-6 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-blue);
}

.siap-ini-versi-yang {
  font-size: 16px;
  line-height: 1.8;
  color: #4f4f4f;
  text-align: justify;
}

/* Kolom Gambar */
.frame-30 {
  width: 100%;
}

.img-4 {
  width: 100%;
  height: auto;
  border-radius: 30px; /* Membuat sudut gambar melengkung halus */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Memberi kedalaman pada gambar */
  object-fit: cover;
}

/* --- RESPONSIVE P3K --- */
@media (max-width: 1024px) {
  .frame-27 {
    grid-template-columns: 1fr; /* Menumpuk vertikal di tablet/HP */
    padding: 60px 5%;
    gap: 40px;
  }

  .frame-28 {
    order: 1; /* Teks tetap di atas */
  }

  .frame-30 {
    order: 2; /* Gambar di bawah teks saat mobile */
  }

  .frame-29 .text-wrapper-6 {
    font-size: 32px;
  }
}

/* --- SECTION LAYANAN KAMI (BIRU) --- */
.frame-31 {
  padding: 100px 10%;
  background-color: #01357d; /* Warna Biru Utama */
  color: #ffffff;
}

.frame-32 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* List Kebawah */
.pest-control-vertical-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column; /* Membuat list berjejer kebawah */
  gap: 15px;
}

.pest-control-vertical-list li {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px 0;
}

/* Bullet Point Custom (Garis Lime) */
.pest-control-vertical-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #becc19; /* Warna Lime */
  border-radius: 2px;
  display: inline-block;
}

/* Kolom Kanan: Galeri 2x2 */
.frame-33 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .frame-32 {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .frame-33 {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- SECTION GENERAL SERVICE --- */
.frame-39 {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Membagi dua: Kiri (Gambar), Kanan (Teks) */
  gap: 80px;
  padding: 100px 10%;
  align-items: center;
  background-color: #ffffff; /* Background Putih */
}

/* Kolom Gambar (Kiri) */
.frame-40 {
  width: 100%;
}

.img-5 {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

/* Kolom Teks (Kanan) */
.frame-41 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.frame-42 .text-wrapper-5 {
  font-size: 14px;
  font-weight: 600;
  color: #828282;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.frame-42 .text-wrapper-6 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-blue);
}

/* List Client Kebawah */
.client-list-vertical {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.client-list-vertical li {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-list-vertical li::before {
  content: "✓"; /* Menggunakan tanda centang sebagai poin */
  color: #becc19; /* Warna Lime */
  font-weight: bold;
  font-size: 20px;
}

/* Button Contact Us */
.btn-contact-service {
  display: inline-block;
  width: fit-content;
  padding: 15px 40px;
  background-color: #becc19; /* Warna Hijau Limau */
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-contact-service:hover {
  background-color: #a8b616; /* Warna sedikit lebih gelap saat hover */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(190, 204, 25, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .frame-39 {
    grid-template-columns: 1fr; /* Tumpuk vertikal di HP */
    padding: 60px 5%;
    gap: 40px;
    text-align: center;
  }

  .frame-40 {
    order: 2; /* Gambar di bawah teks saat mobile */
  }

  .frame-41 {
    order: 1;
    align-items: center;
  }

  .client-list-vertical {
    align-items: center;
  }
}
/* --- FOOTER CUSTOM BLUE --- */
.footer {
  background-color: #01357d; /* Latar Belakang Biru */
  padding: 80px 10%;
  color: #ffffff; /* Semua teks jadi putih */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

/* Bagian Kiri */
.footer-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.text-wrapper-11 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.text-wrapper-12 {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  font-size: 13px;
}

.link-privacy-policy {
  color: #becc19; /* Warna Lime agar menonjol */
  text-decoration: none;
}

.text-wrapper-13 {
  color: rgba(255, 255, 255, 0.6);
}

/* Logo Box (Rounded Putih seperti Button) */
.vadel-logo-card {
  background-color: #ffffff;
  width: fit-content;
  padding: 15px 35px;
  border-radius: 50px; /* Rounded penuh seperti button contact */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vadel-logo-card img {
  height: 35px;
  width: auto;
}

/* Bagian Kanan */
.footer-right {
  flex: 0.8;
}

.frame-16 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.email-info {
  font-weight: 500;
  color: #becc19; /* Aksen Lime */
}

.telephone-number a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.span-code {
  color: #becc19; /* +62 jadi warna lime */
}

.text-wrapper-10 {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.heading-stay-in {
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 60px;
  }

  .vadel-logo-card {
    margin-top: 20px;
  }
}

/* --- NAVIGASI STABIL --- */
.navigasi-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

  /* Desktop Style (Melayang) */
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  padding: 10px 30px;
  border-radius: 100px;
}

.navbar {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar a {
  font-size: 14px;
  font-weight: 500;
  color: #bdbdbd;
  transition: 0.3s;
  text-decoration: none;
}

.menu-toggle,
.hamburger {
  display: none; /* Sembunyikan di desktop */
}

/* --- MOBILE RESPONSIVE (MAX 768PX) --- */
@media (max-width: 768px) {
  .navigasi-bar {
    /* Reset posisi melayang agar pas dengan layar HP */
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 15px 5%; /* Gunakan % agar fleksibel */
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue, #01357d);
    transition: all 0.3s ease;
  }

  .navbar {
    position: fixed;
    right: -100%; /* Sembunyi total di kanan */
    top: 0;
    width: 80%; /* Menu tidak menutupi seluruh layar */
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    gap: 30px;
    display: flex; /* Aktifkan kembali karena sebelumnya di set display:none */
  }

  /* Trigger Menu */
  .menu-toggle:checked ~ .navbar {
    right: 0;
  }
}
