

/* ======================================================
   [ ] DETIL PENGATURAN – TENTANG KAMI (GLOBAL PAGE) 
   - /page-tentang-kami.php
   - 
   ====================================================== */




.page-about__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.about-intro {
  max-width: 700px;
  margin-bottom: 60px;
}

.about-intro h1 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #0F172A;
}

.about-intro p {
  color: #475569;
  line-height: 1.7;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.about-split--reverse {
  direction: rtl;
}
.about-split--reverse * {
  direction: ltr;
}

.about-split__image img {
  width: 100%;
  border-radius: 16px;
}

.about-section {
  margin-bottom: 60px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-values__card {
  padding: 24px;
  border-radius: 16px;

  background:

  var(--odesa-surface);

  border:

  1px solid var(--odesa-border);

  box-shadow:

  var(--odesa-shadow);

  transition: 0.3s;
}

.about-values__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-policy {
  
  background:

  var(--odesa-accent-soft);

  border:

  1px solid var(--odesa-border);

  padding: 30px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }
}


/* ======================================================
   END PENGATURAN – TENTANG KAMI (GLOBAL PAGE) 
   - /page-tentang-kami.php
====================================================== */

.page-about {
  
  background:

  var(--odesa-bg);

  padding-top: 20px;
}

.about-split__text h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #0F172A;
}

.about-split__text p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-section h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #0F172A;
}

.about-section ul {
  padding-left: 18px;
  color: #475569;
  line-height: 1.7;
}

/* =========================================
   REVEAL ANIMATION (SCROLL)
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   tambahkan delay biar berurutan saat scroll halaman tentang kita detil
========================================================================= */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }


/* =========================================
   PARALLAX IMAGE
========================================= */

.parallax {
  overflow: hidden;
  border-radius: 16px;
}

.parallax img {
  width: 100%;
  height: auto;

  transform: translateY(0);
  transition: transform 0.2s linear;
  will-change: transform;
}