/* ═══════════════════════════════════════════════════════ Leadership CSS ═══════════════════════════════════════════════════════ */
/* ─── LEADERSHIP PAGE HERO (.hero) ─── */
.hero-sun {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,169,23,0.12) 0%, transparent 70%);
  border: 1px solid rgba(232,169,23,0.1);
  pointer-events: none;
}
.abt {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 2rem 3rem 3rem;
  max-width:1200px;
  margin: 0 auto;
}
/* Scroll indicator inside .hero */
  .profile-section {
    position: relative;
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .profile-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .profile-image-wrapper {
    position: sticky;
    top: 120px;
  }
  .profile-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--off-white);
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.1);
  }
  .profile-image-frame::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--solar-gold), transparent 50%, var(--slate));
    z-index: -1;
  }
  .profile-image-frame img {
    width: 100%;
    display: block;
    border-radius: 20px;
  }
  .profile-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: var(--off-white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(10, 22, 40, 0.06);
  }
  .contact-item:hover {
    background: var(--accent-glow);
    border-color: rgba(232, 169, 23, 0.2);
    transform: translateX(4px);
  }
  .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background:var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
  }

  /* ─── TEXT CONTENT ─── */
  .profile-text {
    padding-top: 0.5rem;
  }
  .profile-role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--solar-gold);
    background: var(--accent-glow);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
  }
  .profile-name {
    font-family:'Inter',DM Sans;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
  }
  .profile-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    margin-bottom: 2.5rem;
  }

  /* ─── ACHIEVEMENTS GRID ─── */
  .achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  .achievement {
    padding: 1.75rem;
    background: linear-gradient(135deg, var(--off-white), var(--warm-white));
    border-radius: 16px;
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: all 0.4s;
  }
  .achievement:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 22, 40, 0.08);
  }
  .achievement-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background:var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .achievement-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
  }
  .achievement h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  .achievement p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }

  /* ─── BIO PARAGRAPHS ─── */
  .bio-body h2 {
    font-family:'Inter',DM Sans;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }
  .bio-body p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
  }
  .bio-body p:last-child {
    margin-bottom: 0;
  }

  /* ─── GLOBAL PRESENCE ─── */
  .presence {
    margin-top: 3rem;
    padding: 2rem;
    background:var(--blue);
    border-radius: 16px;
    color: var(--off-white);
  }
  .presence-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
  }
  .presence-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .country-tag {
    padding: 0.4rem 1rem;
    background: rgba(168, 196, 224, 0.1);
    border: 1px solid rgba(168, 196, 224, 0.15);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--light-blue);
    font-weight: 500;
    transition: all 0.3s;
  }
  .country-tag:hover {
    background: rgba(232, 169, 23, 0.15);
    border-color: rgba(232, 169, 23, 0.3);
    color: var(--solar-amber);
  }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .abt { padding: 1.5rem 1.5rem 2rem; }

  .profile-section { padding: 4rem 1.5rem; }

  /* Stack image above text */
  .profile-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .profile-image-wrapper {
    position: static;
    max-width: 360px;
  }

  .achievements { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .abt { padding: 1rem 1rem 1.5rem; }

  .profile-section { padding: 2.5rem 1rem; }
  .profile-image-wrapper { max-width: 100%; }

  .profile-name { font-size: 2rem; }
  .profile-intro { font-size: 1rem; }

  .achievements { grid-template-columns: 1fr; }

  .presence-countries { gap: 0.35rem; }
}