/* Styling Utama Section Tentang Kami */
.about-section {
  padding: 70px 0;
  border-bottom: 1px solid #e2e8f0;
}

.bg-white {
  background: #ffffff;
}

.bg-light-section {
  background: #f8fafc;
}

.border-bottom-none {
  border-bottom: none;
}

/* Section 1: Pengenalan Utama */
.intro-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.intro-logo {
  width: 140px;
  height: auto;
  margin-bottom: 24px;
}

.intro-box h1 {
  font-size: 2.2rem;
  color: var(--primary-navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.intro-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Section 2 & 3: Layout Dua Kolom */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  background-color: #f1f5f9;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--primary-navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Badge & Kontak Bisnis */
.business-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 12px 20px;
  border-radius: 10px;
  color: #166534;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.business-contact:hover {
  background: #dcfce7;
  transform: translateY(-2px);
}

.icon-wa-biz {
  font-size: 1.2rem;
}

.slogan-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

/* ==========================================
   RESPONSIVE LAYAR HP & TABLET
   ========================================== */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .intro-logo {
    width: 100px;
    margin-bottom: 16px;
  }

  .intro-box h1 {
    font-size: 1.6rem;
  }

  .intro-box p {
    font-size: 0.95rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-grid.reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-img {
    max-height: 250px;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.92rem;
  }

  .business-contact {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }
}