/* ============================================================
   Takaful-hibah.com — about.css
   About / Profile page styles — syncs with styles.css tokens
   ============================================================ */


/* ── NAV ACTIVE STATE ────────────────────────────────────── */
.nav-link.active {
  color: var(--gold);
}


/* ══════════════════════════════════════════════════════════
   ABOUT HERO
══════════════════════════════════════════════════════════ */
.ab-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

.ab-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(22,58,100,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(160deg, rgba(13,27,42,0.9) 0%, rgba(17,33,53,0.9) 50%, rgba(13,27,42,0.9) 100%);
  pointer-events: none;
}

.ab-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.ab-hero-watermark {
  position: absolute;
  bottom: 62%;
  right: 25%;
  width: 55%;
  max-width: 1000px;
  pointer-events: none;
  opacity: 0.045;
  filter: blur(1px) grayscale(1) brightness(3);
  transform: rotate(-8deg);
  z-index: 1;
}
.ab-hero-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.ab-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ab-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-sub);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
}

.ab-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin: 0;
}
.ab-hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}

.ab-hero-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin: 0;
}

.ab-hero-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.03em;
}

.ab-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ab-hero-pills span {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--navy-bdr);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--body);
}

/* Photo frame */
.ab-hero-photo {
  position: relative;
}

.ab-hero-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 24px;
}

.ab-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(
    170deg,
    #f7e9a8 0%,
    #e0b84a 30%,
    var(--gold) 60%,
    #a87a0c 100%
  );
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.55),
    inset 0 -2px 4px rgba(0,0,0,0.18),
    0 6px 18px rgba(201,168,76,0.6),
    0 20px 55px rgba(0,0,0,0.5),
    0 4px 8px rgba(0,0,0,0.28);
}
.ab-badge-icon { font-size: 1.7rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }
.ab-photo-badge strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.ab-photo-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(13,27,42,0.65);
}


/* ══════════════════════════════════════════════════════════
   PERSONAL INTRO
══════════════════════════════════════════════════════════ */
.ab-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ab-intro-copy { display: flex; flex-direction: column; gap: 18px; }
.ab-intro-copy .section-label { align-self: flex-start; }
.ab-intro-copy h2 { margin: 0; }
.ab-intro-copy p { margin: 0; }
.ab-intro-copy em { color: var(--gold); font-style: normal; font-weight: 600; }

.ab-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ab-stat-card {
  background: var(--navy);
  border: 1px solid var(--navy-bdr);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ab-stat-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.ab-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.ab-stat-lbl {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════
   CAREER TIMELINE
══════════════════════════════════════════════════════════ */
.ab-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.ab-tl-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 24px;
}

.ab-tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab-tl-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ab-tl-dot-1 { background: linear-gradient(135deg, #1a3a6b, #2563a8); border-color: rgba(74,144,217,0.4); }
.ab-tl-dot-2 { background: linear-gradient(135deg, #7c1a1a, #c0392b); border-color: rgba(220,80,80,0.4); }
.ab-tl-dot-3 {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,168,76,0.5);
}

.ab-tl-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--navy-bdr) 0%, transparent 100%);
  margin: 8px 0;
}

.ab-tl-card {
  background: var(--navy2);
  border: 1px solid var(--navy-bdr);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s ease;
}
.ab-tl-card:hover { border-color: rgba(201,168,76,0.2); }

.ab-tl-card-featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, var(--navy2) 0%, rgba(22,33,53,0.95) 100%);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.12), 0 24px 56px rgba(0,0,0,0.25);
}

.ab-tl-badge-current {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

.ab-tl-period {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ab-tl-role {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.ab-tl-company {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.ab-tl-desc {
  font-size: 0.87rem;
  color: var(--body);
  line-height: 1.75;
  margin: 0;
}
.ab-tl-desc em { color: var(--gold-lt); font-style: normal; font-weight: 500; }

.ab-tl-lesson {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid rgba(255,255,255,0.1);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  margin-top: 4px;
}
.ab-tl-lesson-gold { border-left-color: var(--gold); background: rgba(201,168,76,0.05); }
.ab-lesson-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.ab-tl-lesson p {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.ab-tl-lesson-gold p { color: var(--body); }

.ab-tl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ab-tl-chips span {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-lt);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
}


/* ══════════════════════════════════════════════════════════
   TURNING POINT
══════════════════════════════════════════════════════════ */
.ab-turning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ab-turning-quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-turning-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  margin-bottom: 8px;
}

.ab-big-quote {
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.ab-turning-quote blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0;
  padding: 0;
  border: none;
}
.ab-turning-quote blockquote em {
  color: var(--gold-lt);
  font-style: normal;
  font-weight: 600;
}

.ab-turning-quote cite {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.ab-turning-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ab-turning-copy .section-label { align-self: flex-start; }
.ab-turning-copy h2 { margin: 0; }
.ab-turning-copy p { font-size: 0.9rem; margin: 0; }

.ab-turning-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ab-turning-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--body);
}
.ab-turning-list .tick {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   VALUE CARDS
══════════════════════════════════════════════════════════ */
.ab-value-card {
  background: var(--navy2);
  border: 1px solid var(--navy-bdr);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ab-value-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-4px);
}
.ab-val-icon {
  font-size: 2rem;
  line-height: 1;
}
.ab-value-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}
.ab-value-card p {
  font-size: 0.86rem;
  color: var(--body);
  line-height: 1.72;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   CREDENTIALS GRID
══════════════════════════════════════════════════════════ */
.ab-creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.ab-cred-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border: 1px solid var(--navy-bdr);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color 0.3s ease;
}
.ab-cred-item:hover { border-color: rgba(201,168,76,0.25); }
.ab-cred-icon { font-size: 1.6rem; flex-shrink: 0; }
.ab-cred-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 3px;
}
.ab-cred-item span {
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Watermark — tengah bawah pada mobile */
  .ab-hero-watermark {
    width: 90%;
    bottom: 30%;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    opacity: 0.035;
  }

  .ab-hero { min-height: auto; padding: 100px 0 60px; }
  .ab-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-hero-content { align-items: center; text-align: center; }
  .ab-hero-pills { justify-content: center; }
  .ab-hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .ab-hero-img { max-width: 320px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .ab-photo-badge { left: 50%; transform: translateX(-50%); bottom: -18px; white-space: nowrap; }

  .ab-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .ab-intro-copy { align-items: center; text-align: center; }
  .ab-intro-copy .section-label { align-self: center; }
  .ab-intro-stats { grid-template-columns: 1fr 1fr; gap: 12px; }

  .ab-tl-item { grid-template-columns: 48px 1fr; gap: 0 16px; }
  .ab-tl-dot { width: 40px; height: 40px; font-size: 1.1rem; }
  .ab-tl-card { padding: 20px 18px; }
  .ab-tl-role { font-size: 0.97rem; }

  .ab-turning-grid { grid-template-columns: 1fr; gap: 36px; }
  .ab-big-quote { font-size: 5rem; }
  .ab-turning-quote blockquote { font-size: 1rem; }
  .ab-turning-copy { align-items: center; text-align: center; }
  .ab-turning-copy .section-label { align-self: center; }
  .ab-turning-list { align-items: flex-start; text-align: left; }

  .ab-creds-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .ab-intro-stats { grid-template-columns: 1fr; }
  .ab-stat-num { font-size: 1.7rem; }
}
