body {
  font-family: 'Metropolis', sans-serif;
  padding-top: 70px;
}

/* HERO */
/* HERO */
.hero {
  height: 90vh;
  background: url('image/hero.png') no-repeat;
  background-size: cover;
  background-position: right center; /* 🔥 penting: geser ke kanan */
  display: flex;
  align-items: center;
  position: relative;
}

/* OVERLAY LEBIH TIPIS */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.5); /* 🔥 dari 0.7 → 0.5 */
}

/* TEXT */
.hero-content {
  position: relative;
  max-width: 500px;
}

/* BUTTON */
.btn-orange {
  background-color: #ff7a00;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
}

.btn-orange:hover {
  background-color: #e66d00;
}

/* CUSTOMER LOGO */
.customer-logo {
  padding: 30px 0;
  background: #fff;
}

.logo-img {
  opacity: 0.5;
  filter: grayscale(100%);
  transition: 0.3s;
}

.logo-img:hover {
  opacity: 1;
  filter: none;
}

/* SECTION */
/* SECTION */
.who-split {
  background: #f5f5f5;
}

/* IMAGE */
.who-image {
  position: relative;
  background: url('image/who.png') no-repeat;
  background-size: contain; /* 🔥 WAJIB */
  background-position: left center; /* 🔥 biar fokus kiri */
  background-color: #f5f5f5; /* biar nyatu */
  min-height: 420px;
  overflow: hidden;
}

/* FADE KE KANAN */
.who-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px; /* 🔥 sedikit lebih kecil biar gak makan gambar */
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(245,245,245,0) 0%,
    rgba(245,245,245,1) 100%
  );
}

/* TEXT */
.who-text {
  padding: 80px 100px;
  max-width: 700px;
}

/* TITLE */
.who-text h2 {
  color: #6b6b6b;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.who-text p {
  color: #7a7a7a;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* BUTTON */
.btn-soft {
  margin-top: 20px;
  background: #bfbfbf;
  color: white;
  border-radius: 10px;
  padding: 10px 22px;
  border: none;
}

.btn-soft:hover {
  background: #a8a8a8;
}

/* BUTTON */
.btn-soft {
  margin-top: 20px;
  background: #bfbfbf;
  color: white;
  border-radius: 10px;
  padding: 10px 22px;
  border: none;
}

.btn-soft:hover {
  background: #a8a8a8;
}

/* BUTTON */
.btn-soft {
  margin-top: 20px;
  background: #bfbfbf;
  color: white;
  border-radius: 10px;
  padding: 10px 22px;
  border: none;
}

.btn-soft:hover {
  background: #a8a8a8;
}

/* NEGARA */
/* SECTION */
.negara-section {
  background: #f5f5f5;
  padding: 80px 0;
}

/* TEXT */
.negara-text h2 {
  font-size: 48px;
  font-weight: 400;
  color: #6b6b6b;
}

.negara-text h2 span {
  color: #ff7a00;
  font-weight: 700;
}

.negara-text p {
  color: #7a7a7a;
  line-height: 1.8;
  margin-top: 15px;
}

.negara-text .bold {
  font-weight: 600;
}

/* IMAGE */
.negara-img {
  max-width: 100%;
  height: auto;
}
/* SECTION */
.section {
  padding: 80px 0;
}

/* CARD */
.card {
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* FOOTER */
/* FOOTER */
.footer {
  background: #f5f5f5;
  padding: 60px 0 30px;
  font-size: 14px;
  color: #7a7a7a;
}

/* LOGO */
.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-text {
  margin-bottom: 15px;
}

/* INPUT */
.footer-input {
  display: flex;
  max-width: 300px;
  margin-bottom: 15px;
}

.footer-input input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 8px 10px;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.footer-input button {
  background: #eee;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 0 5px 5px 0;
}

/* SOCIAL */
.footer-social i {
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

/* TITLE */
.footer h6 {
  color: #6b6b6b;
  margin-bottom: 10px;
}

/* LIST */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 6px;
  cursor: pointer;
}

/* BUTTON */
.btn-gray {
  background: #bfbfbf;
  color: white;
  border-radius: 10px;
  padding: 8px 18px;
  border: none;
}

.btn-gray:hover {
  background: #a8a8a8;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  font-size: 12px;
  color: #9a9a9a;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .who-image {
    min-height: 300px;
  }

  .who-text {
    padding: 40px 20px;
  }
}
/* SECTION */
.produk-section {
  background: #ffffff;
  padding: 80px 0;
}

/* CARD */
.produk-card {
  background: #eeeeee;
  padding: 40px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

/* IMAGE */
.produk-img {
  height: 140px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* TITLE */
.produk-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
}

/* DESC */
.produk-card p {
  font-size: 14px;
  color: #777;
  min-height: 60px;
}

/* BUTTON */
.produk-card .btn {
  margin-top: 10px;
  border-radius: 8px;
  font-size: 14px;
  padding: 8px 16px;
}

/* HOVER EFFECT */
.produk-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* SECTION */
.bisnis-section {
  background: #f5f5f5;
}

/* IMAGE */
/* IMAGE */
.bisnis-image {
  position: relative;
  background: url('image/bisnis.png') no-repeat;
  background-size: contain; 
  background-position: left center; 
  background-color: #f5f5f5; /* biar nyatu */
  min-height: 420px;
  overflow: hidden;
}

/* FADE KE KANAN */
.bisnis-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px; 
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(245,245,245,0) 0%,
    rgba(245,245,245,1) 100%
  );
}

/* TEXT */
.bisnis-text {
  padding: 80px;
  max-width: 600px;
}

/* TITLE */
.bisnis-text h2 {
  font-weight: 400;
  color: #6b6b6b;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ORANGE TEXT */
.bisnis-text h2 span {
  color: #ff7a00;
  font-weight: 500;
}

/* PARAGRAPH */
.bisnis-text p {
  color: #7a7a7a;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* HIGHLIGHT */
.bisnis-text .highlight {
  font-weight: 600;
  margin-top: 10px;
}

/* BUTTON */
.btn-gray {
  margin-top: 20px;
  background: #bfbfbf;
  color: white;
  border-radius: 10px;
  padding: 10px 22px;
  border: none;
}

.btn-gray:hover {
  background: #a8a8a8;
}

/* BUTTON */
.btn-gray {
  margin-top: 20px;
  background: #bfbfbf;
  color: white;
  border-radius: 10px;
  padding: 10px 22px;
  border: none;
}

.btn-gray:hover {
  background: #a8a8a8;
}

/* SECTION */
.cta-section {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

/* TITLE */
.cta-section h2 {
  font-weight: 400;
  color: #6b6b6b;
  font-size: 32px;
  line-height: 1.5;
}

/* BOLD PART */
.cta-section h2 b {
  font-weight: 700;
  color: #4a4a4a;
}

/* PARAGRAPH */
.cta-section p {
  max-width: 700px;
  margin: 20px auto;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.8;
}

/* BUTTON */
.btn-cta {
  margin-top: 20px;
  background: #bfbfbf;
  color: white;
  border-radius: 10px;
  padding: 10px 25px;
  border: none;
}

.btn-cta:hover {
  background: #a8a8a8;
}