/* ═══════════════════════════════════════════════
   about-us-1.css — Hero
   ═══════════════════════════════════════════════ */

:root {
  --green-hero:  #0d3d22;
  --green-dark:  #145228;
  --white:       #ffffff;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

/* ── SECTION WRAPPER ───────────────────────────── */
.about-us-1 {
  width: 100%;
  padding: 80px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}

/* ── CARD ──────────────────────────────────────── */
.about-us-1__card {
  position: relative;
  width: 100%;
  max-width: 1160px;
  border-radius: 300px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 80px 52px;
  background: var(--green-hero);
}

/* Clip hanya untuk bg image + overlay */
.about-us-1__clip {
  position: absolute;
  inset: 0;
  border-radius: 300px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.about-us-1__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}

.about-us-1__clip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,82,40,0.1) 0%,
    rgba(20,82,40,0.5) 100%
  );
}

/* ── CONTENT ───────────────────────────────────── */
.about-us-1__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  animation: fadeUp 0.65s ease both;
}

.about-us-1__title {
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 900px;
  letter-spacing: -0.01em;
}

.about-us-1__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* ── BUTTONS ───────────────────────────────────── */
.about-us-1__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 860px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.65s 0.15s ease both;
}

.about-us-1__btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  border: 2.5px solid var(--white);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.about-us-1__btn--primary {
  background: var(--white);
  color: var(--green-dark);
  min-width: 270px;
}

.about-us-1__btn--secondary {
  background: transparent;
  color: var(--white);
  min-width: 270px;
}

.about-us-1__btn:active {
  transform: translateY(0);
}

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-14px); }
}

@media (max-width: 1200px) {

  .about-us-1 {
    padding: 64px 28px 0;
  }

  .about-us-1__card {
    border-radius: 80px;
    padding: 56px 48px 48px;
  }

  .about-us-1__clip {
    border-radius: 80px;
  }

  .about-us-1__title {
    font-size: 40px;
  }

  .about-us-1__subtitle {
    font-size: 15px;
    max-width: 760px;
  }
}

/* ───────────────────────────────────────────────
   1024px
   ─────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .about-us-1 {
    padding: 48px 24px 0;
  }

  .about-us-1__card {
    padding: 52px 40px 44px;
    border-radius: 56px;
  }

  .about-us-1__clip {
    border-radius: 56px;
  }

  .about-us-1__title {
    font-size: 34px;
    margin-top: 12px;
    margin-bottom: 18px;
  }

  .about-us-1__subtitle {
    font-size: 14px;
    margin-bottom: 44px;
  }

  .about-us-1__actions {
    gap: 18px;
    flex-wrap: wrap;
  }

  .about-us-1__btn {
    padding: 14px 24px;
    font-size: 0.92rem;
  }

  .about-us-1__btn--primary,
  .about-us-1__btn--secondary {
    min-width: 220px;
  }
}

/* ───────────────────────────────────────────────
   740px
   ─────────────────────────────────────────────── */
@media (max-width: 740px) {

  .about-us-1 {
    padding: 32px 16px 0;
  }

  .about-us-1__card {
    border-radius: 32px;
    padding: 38px 22px 34px;
  }

  .about-us-1__clip {
    border-radius: 32px;
  }

  .about-us-1__content {
    max-width: 100%;
  }

  .about-us-1__title {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .about-us-1__subtitle {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 580px;
  }

  .about-us-1__actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .about-us-1__btn {
    flex: 1;
    max-width: 240px;
    min-width: 0;
    margin-bottom: 0;
  }
}

/* ───────────────────────────────────────────────
   580px
   ─────────────────────────────────────────────── */
@media (max-width: 580px) {

  .about-us-1 {
    padding: 24px 14px 0;
  }

  .about-us-1__card {
    padding: 34px 18px 30px;
    border-radius: 28px;
  }

  .about-us-1__clip {
    border-radius: 28px;
  }

  .about-us-1__title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .about-us-1__subtitle {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .about-us-1__actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
  }

  .about-us-1__btn {
    width: 100%;
    max-width: 320px;
    min-width: unset;
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}

/* ───────────────────────────────────────────────
   480px
   ─────────────────────────────────────────────── */
@media (max-width: 480px) {

  .about-us-1 {
    padding: 24px 12px 0;
  }

  .about-us-1__card {
    border-radius: 24px;
    padding: 60px 18px 60px;
  }

  .about-us-1__clip {
    border-radius: 24px;
  }

  .about-us-1__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .about-us-1__subtitle {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .about-us-1__btn {
    font-size: 0.84rem;
    padding: 12px 14px;
    border-radius: 10px;
  }
}

/* ═══════════════════════════════════════════════
   about-us-2.css
   ═══════════════════════════════════════════════ */

/* ── WRAPPER ───────────────────────────────────── */
.about2 {
  width: 100%;
  background: #ffffff;
  padding: 80px 40px 160px;
}

.about2__inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Mission & Vision ─────────────────────────── */
.about2__mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.about2__mv-card {
  background: #f4f8f5;
  border: 1px solid #d0ddd4;
  padding: 48px 44px 52px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.about2__mv-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about2__mv-card:nth-child(1) {
  transition-delay: 0s;
  border-right: none;
}

.about2__mv-card:nth-child(2) {
  transition-delay: 0.1s;
}

.about2__mv-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 14px;
}

.about2__mv-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  color: #1a5c2a;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about2__mv-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: #444;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 32px;
}

.about2__mv-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-style: italic;
  color: #555;
  line-height: 1.65;
  margin-top: auto;
}

/* ── Modern Alternative ───────────────────────── */
.about2__modern {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin-top: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 60%;
  min-height: 320px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.about2__modern.visible {
  opacity: 1;
  transform: translateY(0);
}

.about2__mod-left {
  background: #1a4d2e;
  padding: 52px 48px 52px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.about2__mod-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.about2__mod-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.about2__mod-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about2__mod-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about2__mod-icon {
  width: 22px;
  height: 22px;
  color: #4dd9c0;
  flex-shrink: 0;
}

.about2__mod-item-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
}

.about2__mod-right {
  position: relative;
  overflow: hidden;
  transform: translateX(-80px);
}

.about2__mod-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ───────────────────────────────────────────────
   LAPTOP
   ─────────────────────────────────────────────── */
@media (max-width: 1200px) {

  .about2__modern{
    grid-template-columns: 52% 58%;
    min-height: 360px;
  }

  .about2__mod-left{
    padding: 36px 28px;
  }

  .about2__mod-right{
    transform: translateX(-80px);
  }

  .about2__mod-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

}

/* ───────────────────────────────────────────────
   TABLET
   ─────────────────────────────────────────────── */
@media (max-width: 900px) {

  .about2 {
    padding: 60px 24px 80px;
  }

  /* ── Mission Vision ── */
  .about2__mv {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about2__mv-card {
    padding: 32px 24px;
  }

  /* ❌ hapus border kanan karena sudah 1 kolom */
  .about2__mv-card:nth-child(1) {
    border-right: none;
  }

  /* ── Modern Section ── */
  .about2__modern {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* 🔥 GAMBAR DI ATAS */
  .about2__mod-right {
    grid-row: 1;
    transform: none;
    min-height: 340px;
  }

  .about2__mod-left {
    grid-row: 2;
    clip-path: none;
    padding: 40px 32px;
  }

  .about2__mod-img {
    position: absolute;
    inset: 0;
  }
}

/* ───────────────────────────────────────────────
   MOBILE
   ─────────────────────────────────────────────── */
@media (max-width: 576px) {

  .about2 {
    padding: 48px 16px 72px;
  }

  .about2__mv {
    gap: 14px;
  }

  .about2__mv-card {
    padding: 24px 20px;
  }

  .about2__mv-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .about2__mv-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .about2__mv-quote {
    font-size: 0.82rem;
  }

  .about2__modern {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  /* 🔥 INI YANG BIKIN GAMBAR DI ATAS */
  .about2__mod-right {
    grid-row: 1;
    min-height: 240px;
    transform: none;
  }

  .about2__mod-left {
    grid-row: 2;
    padding: 28px 20px;
  }

  .about2__mod-title {
    font-size: 1rem;
  }

  .about2__mod-desc {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .about2__mod-item-label {
    font-size: 0.8rem;
  }
}

/* ───────────────────────────────────────────────
   SMALL MOBILE
   ─────────────────────────────────────────────── */
@media (max-width: 400px) {

  .about2__mv-card {
    padding: 20px 16px;
  }

  .about2__mod-left {
    padding: 24px 16px;
  }

  .about2__mod-right {
    min-height: 200px;
    transform: none;
    grid-row: 1;
  }

  .about2__mod-left {
    grid-row: 2;
  }

  .about2__mv-title,
  .about2__mod-title {
    font-size: 1rem;
  }

  .about2__mv-desc,
  .about2__mod-desc {
    font-size: 0.8rem;
  }

}

/* ═══════════════════════════════════════════════
   about-us-3.css — "The Trajectory of Innovation"
   Timeline vertikal: item kiri & kanan bergantian
   BG: parallax fixed airport
   Breakpoints: 1024 | 740 | 480
   ═══════════════════════════════════════════════ */

/* ── SECTION ───────────────────────────────────── */
.about3 {
  position: relative;
  width: 100%;
  padding: 96px 40px 100px;

  background-image: url('../assets/about-us/about-us-3-bg.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #3a4550;
}

/* dark overlay */
.about3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 36, 0.68);
  pointer-events: none;
  z-index: 0;
}

.about3__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── HEADING ───────────────────────────────────── */
.about3__head {
  text-align: center;
  margin-bottom: 72px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about3__head.visible {
  opacity: 1;
  transform: translateY(0);
}

.about3__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about3__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ── TIMELINE CONTAINER ────────────────────────── */
.about3__timeline {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Garis vertikal tengah */
.about3__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.25);
  z-index: 0;
}

/* ── TIMELINE ITEM ─────────────────────────────── */
.about3__item {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;   /* kiri | dot | kanan */
  align-items: center;
  min-height: 180px;
  padding: 36px 0;

  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about3__item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.about3__item:nth-child(1) { transition-delay: 0.00s; }
.about3__item:nth-child(2) { transition-delay: 0.15s; }
.about3__item:nth-child(3) { transition-delay: 0.30s; }
.about3__item:nth-child(4) { transition-delay: 0.45s; }

/* ── DOT ───────────────────────────────────────── */
.about3__dot {
  grid-column: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c8b800;       /* gold/yellow sesuai desain */
  border: 3px solid rgba(255,255,255,0.3);
  justify-self: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about3__item.visible .about3__dot {
  box-shadow: 0 0 0 6px rgba(200, 184, 0, 0.20);
}

.about3__item:hover .about3__dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 10px rgba(200, 184, 0, 0.18);
}

/* ── CONTENT ───────────────────────────────────── */
.about3__content {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

/* Item ganjil (1,3): content kiri, slot kanan kosong */
.about3__item--left .about3__content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  align-items: flex-end;
}

/* Item genap (2,4): content kanan, slot kiri kosong */
.about3__item--right .about3__content {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  align-items: flex-start;
}

/* empty slot — ocupy the other column */
.about3__item--left  .about3__dot { grid-column: 2; grid-row: 1; }
.about3__item--right .about3__dot { grid-column: 2; grid-row: 1; }

/* ── YEAR ──────────────────────────────────────── */
.about3__year {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #d4c400;             /* gold */
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

/* ── EVENT TITLE ───────────────────────────────── */
.about3__event-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* ── EVENT DESC ────────────────────────────────── */
.about3__event-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 360px;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

/* ── 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about3 { padding: 72px 28px 80px; }
  .about3__head { margin-bottom: 56px; }
  .about3__content { padding: 0 28px; }
}

/* ── 740px — timeline jadi single column kiri ────── */
@media (max-width: 740px) {

  .about3 {
    padding: 56px 20px 64px;
    background-attachment: scroll;
    overflow: hidden;
  }

  .about3__head {
    margin-bottom: 40px;
  }

  /* garis timeline */
  .about3__timeline::before {
    left: 14px;
    transform: none;
  }

  /* layout mobile */
  .about3__item {
    grid-template-columns: 28px 1fr;
    align-items: flex-start;

    min-height: auto;
    padding: 28px 0;
  }

  /* DOT */
  .about3__dot {
    grid-column: 1;
    grid-row: 1;

    justify-self: start;
    align-self: flex-start;

    width: 14px;
    height: 14px;

    margin-top: 40px;
    margin-left: -17px;
  }

  /* content */
  .about3__item--left .about3__content,
  .about3__item--right .about3__content {
    grid-column: 2;
    grid-row: 1;

    text-align: left;
    align-items: flex-start;

    padding-left: 14px;
  }

  .about3__event-desc {
    max-width: 100%;
  }
}

/* ── 480px ───────────────────────────────────────── */
@media (max-width: 480px) {

  .about3 {
    padding: 44px 14px 52px;
  }

  .about3__head {
    margin-bottom: 32px;
  }

  .about3__timeline::before {
    left: 12px;
  }

  .about3__item {
    grid-template-columns: 24px 1fr;
    padding: 22px 0;
  }

  .about3__dot {
    width: 12px;
    height: 12px;

    margin-top: 40px;
    margin-left: -17px;
  }

  .about3__item--left .about3__content,
  .about3__item--right .about3__content {
    padding-left: 12px;
  }

  .about3__year {
    font-size: 2rem;
  }

  .about3__event-title {
    font-size: 0.95rem;
  }

  .about3__event-desc {
    font-size: 0.82rem;
  }
}

/* ═══════════════════════════════════════════════
   about-us-4.css — Bilingual Content Cards
   EN kiri | ID kanan — border tipis, bg hijau pucat
   Breakpoints: 1024 | 740 | 480
   ═══════════════════════════════════════════════ */

/* ── SECTION ───────────────────────────────────── */
.about4 {
  width: 100%;
  background: #ffffff;
  padding: 160px 40px 80px;
}

.about4__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ── CARD ──────────────────────────────────────── */
.about4__card {
  background: #f0f5f1;
  border: 1.5px solid #c4d4c8;
  border-radius: 4px;
  padding: 44px 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;

  /* scroll reveal */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.about4__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about4__card:nth-child(1) { transition-delay: 0.00s; }
.about4__card:nth-child(2) { transition-delay: 0.10s; }

/* ── LANG BADGE ────────────────────────────────── */
.about4__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a5c2a;
  margin-bottom: 24px;
}

.about4__lang-icon {
  width: 18px;
  height: 18px;
  color: #1a5c2a;
  flex-shrink: 0;
}

.about4__lang-icon svg { width: 100%; height: 100%; }

/* ── CARD TITLE ────────────────────────────────── */
.about4__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 24px;
}

/* Divider bawah title */
.about4__title::after {
  content: '';
  display: block;
  margin-top: 18px;
  height: 1px;
  background: #c4d4c8;
}

/* ── DESC ──────────────────────────────────────── */
.about4__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: #444;
  line-height: 1.80;
}

/* ID card: teks italic */
.about4__card--id .about4__desc {
  font-style: italic;
  color: #3a3a3a;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

/* ── 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about4 { padding: 56px 28px 200px; }
  .about4__inner { gap: 20px; }
  .about4__card { padding: 36px 32px 44px; }
}

/* ── 740px — 1 kolom ─────────────────────────────── */
@media (max-width: 740px) {
  .about4 { padding: 44px 20px 160px; }
  .about4__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about4__card:nth-child(2) { transition-delay: 0.08s; }
}

/* ── 480px ───────────────────────────────────────── */
@media (max-width: 480px) {
  .about4 { padding: 32px 14px 100px; }
  .about4__card { padding: 28px 20px 32px; }
  .about4__title { font-size: 1.05rem; }
  .about4__desc  { font-size: 0.86rem; }
}

/* ═══════════════════════════════════════════════
   about-us-5.css — Our Team Carousel
   ═══════════════════════════════════════════════ */

.about5 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  padding: 80px 40px 250px;
}

/* ── TITLE ─────────────────────────────────────── */
.about5__bg-title {
  font-size: 7.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  background: linear-gradient(
    to bottom,
    rgba(26, 77, 46) 30%,
    rgba(255, 255, 255) 76%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── CAROUSEL CONTAINER ────────────────────────── */
.about5__carousel {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  position: relative;
  perspective: 1000px;
  margin-top: 80px;
}

.about5__track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── CARD ──────────────────────────────────────── */
.about5__card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.about5__card a {
  display: block;
  width: 100%;
  height: 100%;
}

.about5__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Position classes */
.about5__card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}

.about5__card.center img { filter: none; }

.about5__card.left-2 {
  z-index: 1;
  transform: translateX(-400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.about5__card.left-2 img  { filter: grayscale(100%); }

.about5__card.left-1 {
  z-index: 5;
  transform: translateX(-200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.about5__card.left-1 img  { filter: grayscale(100%); }

.about5__card.right-1 {
  z-index: 5;
  transform: translateX(200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.about5__card.right-1 img { filter: grayscale(100%); }

.about5__card.right-2 {
  z-index: 1;
  transform: translateX(400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.about5__card.right-2 img { filter: grayscale(100%); }

.about5__card.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── MEMBER INFO ───────────────────────────────── */
.about5__info {
  text-align: center;
  margin-top: 40px;
  transition: all 0.5s ease-out;
}

.about5__name {
  color: rgb(26, 77, 46);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.about5__name::before,
.about5__name::after {
  content: '';
  position: absolute;
  top: 100%;
  width: 100px;
  height: 2px;
  background: rgb(26, 77, 46);
}

.about5__name::before { left: -120px; }
.about5__name::after  { right: -120px; }

.about5__role {
  color: #848696;
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
  margin-top: -15px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* ── DOTS ──────────────────────────────────────── */
.about5__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.about5__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(26, 77, 46);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about5__dot.active {
  background: rgb(26, 77, 46);
  transform: scale(1.2);
}

/* ── NAV ARROWS ────────────────────────────────── */
.about5__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(26, 77, 46);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: none;
  outline: none;
}

.about5__arrow:hover {
  background: rgb(26, 77, 46);
  transform: translateY(-50%) scale(1.1);
}

.about5__arrow--left  { left: 20px;  padding-right: 3px; padding-bottom: 4px; }
.about5__arrow--right { right: 20px; padding-left: 3px;  padding-bottom: 4px; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

/* =========================
   TABLET
   ========================= */
@media (max-width: 1024px) {

  .about5__bg-title{
    font-size: 6rem;
  }

}

/* =========================
   TABLET KECIL
   ========================= */
@media (max-width: 915px) {

  .about5__bg-title{
    font-size: 4.5rem;
  }

  .about5__card{
    width: 200px;
    height: 280px;
  }

  .about5__card.left-2{
    transform: translateX(-250px) scale(.8) translateZ(-300px);
  }

  .about5__card.left-1{
    transform: translateX(-120px) scale(.9) translateZ(-100px);
  }

  .about5__card.right-1{
    transform: translateX(120px) scale(.9) translateZ(-100px);
  }

  .about5__card.right-2{
    transform: translateX(250px) scale(.8) translateZ(-300px);
  }

  .about5__name{
    font-size: 2rem;
  }

  .about5__role{
    font-size: 1.2rem;
  }
}

/* =========================
   MOBILE BESAR
   ========================= */
@media (max-width: 768px) {

  .about5{
    min-height: auto;
    padding: 60px 20px 120px;
  }

  .about5__bg-title{
    font-size: 3.8rem;
    top: 20px;
    text-align: center;
    width: 100%;
  }

  .about5__carousel{
    height: 320px;
    margin-top: 70px;
    overflow: hidden;
  }

  .about5__card{
    width: 170px;
    height: 240px;
  }

  .about5__card.left-2{
    transform: translateX(-140px) scale(.75);
    opacity: .4;
  }

  .about5__card.left-1{
    transform: translateX(-85px) scale(.85);
  }

  .about5__card.right-1{
    transform: translateX(85px) scale(.85);
  }

  .about5__card.right-2{
    transform: translateX(140px) scale(.75);
    opacity: .4;
  }

  .about5__name{
    font-size: 1.6rem;
    max-width: 90vw;
  }

  .about5__role{
    font-size: .95rem;
  }

}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 480px) {

  .about5{
    padding: 50px 16px 100px;
  }

  .about5__bg-title{
    font-size: 2.6rem;
  }

  .about5__carousel{
    height: 280px;
  }

  .about5__card{
    width: 140px;
    height: 200px;
  }

  .about5__card.left-2,
  .about5__card.right-2{
    display: none;
  }

  .about5__card.left-1{
    transform: translateX(-70px) scale(.8);
  }

  .about5__card.right-1{
    transform: translateX(70px) scale(.8);
  }

  .about5__name{
    font-size: 1.3rem;
  }

  .about5__role{
    font-size: .85rem;
  }

  .about5__name::before,
  .about5__name::after{
    display: none;
  }
}

/* =========================
   HP KECIL (320-345px)
   ========================= */
@media (max-width: 345px) {

  .about5{
    padding: 40px 12px 80px;
  }

  .about5__bg-title{
    font-size: 2.2rem;
  }

  .about5__carousel{
    height: 250px;
    margin-top: 50px;
  }

  .about5__card{
    width: 120px;
    height: 170px;
  }

  .about5__card.left-1{
    transform: translateX(-55px) scale(.75);
    opacity: .5;
  }

  .about5__card.right-1{
    transform: translateX(55px) scale(.75);
    opacity: .5;
  }

  .about5__name{
    font-size: 1.1rem;
  }

  .about5__role{
    font-size: .75rem;
  }

  .about5__dot{
    width: 10px;
    height: 10px;
  }

  .about5__arrow{
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .about5__arrow--left{
    left: 6px;
  }

  .about5__arrow--right{
    right: 6px;
  }
}