/* ═══════════════════════════════════════════
   Our Team Page Styles
   ═══════════════════════════════════════════ */

/* ══════════════════════════════
   1. HERO SECTION
   ══════════════════════════════ */
.team-hero {
  padding: 48px 0 56px;
  background: #fff;
  text-align: center;
}

.team-hero__content {
  max-width: 650px;
  margin: 0 auto;
}

.team-hero__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.team-hero__desc {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════
   2. SENIOR-LED PROMISE
   ══════════════════════════════ */
.team-promise {
  padding: 56px 0;
  background: #F8F9FA;
}

.team-promise__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.team-promise__header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.team-promise__header p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
}

.team-promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-promise__card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-promise__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.team-promise__icon {
  width: 56px;
  height: 56px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.team-promise__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 14px;
}

.team-promise__card p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════
   3. MULTIDISCIPLINARY STRUCTURE
   ══════════════════════════════ */
.team-structure {
  padding: 56px 0;
  background: #fff;
}

.team-structure__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

.team-structure__header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.team-structure__header p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
}

.team-structure__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.team-structure__card {
  background: #F8F9FA;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-structure__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.team-structure__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.team-structure__card-icon {
  width: 50px;
  height: 50px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.team-structure__card-num {
  width: 36px;
  height: 36px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.team-structure__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 14px;
}

.team-structure__card p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════
   4. LEADERSHIP TEAM
   ══════════════════════════════ */
.team-leadership {
  padding: 56px 0;
  background: #F8F9FA;
}

.team-leadership__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.team-leadership__header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.team-leadership__header p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
}

.team-leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-leadership__card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 40px 24px 36px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-leadership__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.team-leadership__avatar {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: #e9ecef;
  margin: 0 auto 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-leadership__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-leadership__avatar-placeholder {
  width: 100%;
  height: 100%;
  background: #e9ecef;
}

.team-leadership__card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.team-leadership__card p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════
   5. CTA
   ══════════════════════════════ */
.team-cta {
  padding: 56px 0;
  background: #fff;
}

.team-cta__card {
  text-align: center;
  background: #F8FAF9;
  border: 1px solid #E8F5E9;
  border-radius: 20px;
  border-bottom: 8px solid #0A882E;
  padding: 80px 40px;
  width: 100%;
}

.team-cta__card h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.team-cta__card p {
  font-size: 1.1rem;
  color: #64748B;
  margin-bottom: 40px;
}

.team-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.team-cta__btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: #0A882E;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all .2s;
  text-decoration: none;
}

.team-cta__btn-primary:hover {
  background: #086a23;
  transform: translateY(-2px);
  color: #fff;
}

.team-cta__btn-outline {
  display: inline-block;
  padding: 16px 36px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all .2s;
  text-decoration: none;
}

.team-cta__btn-outline:hover {
  border-color: #0A882E;
  color: #0A882E;
  transform: translateY(-2px);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .team-promise__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-leadership__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-hero {
    padding: 60px 0 80px;
  }
  .team-hero__title {
    font-size: 2.2rem;
  }
  .team-promise__header h2,
  .team-structure__header h2,
  .team-leadership__header h2,
  .team-cta__card h2 {
    font-size: 2.2rem;
  }
  .team-promise__grid,
  .team-structure__grid,
  .team-leadership__grid {
    grid-template-columns: 1fr;
  }
  .team-cta__card {
    padding: 60px 24px;
  }
  .team-cta__buttons {
    flex-direction: column;
  }
  .team-cta__btn-primary,
  .team-cta__btn-outline {
    width: 100%;
    text-align: center;
  }
}
