/* =============================================================
   ABOUT PAGE — about.css
   ============================================================= */

/* ── ABOUT INTRO ──────────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-images {
  position: relative;
  height: 580px;
}
.about-main-img {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 82%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-img {
  position: absolute; bottom: 0; right: 0;
  width: 52%; height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-accent-img img { width: 100%; height: 100%; object-fit: cover; }
.about-year-badge {
  position: absolute;
  top: 45%; left: 66%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  width: 108px; height: 108px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.about-year-badge .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-year-badge .lbl { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.3; margin-top: 2px; }
.about-intro-text p { font-size: 0.96rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; margin-top: 24px; }

/* ── VISION MISSION ───────────────────────────────────────── */
.vm-section { background: var(--off-white); }
.vm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.vm-card:hover::before { transform: scaleX(1); }
.vm-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem;
  margin-bottom: 22px;
}
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.vm-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.82; }
.vm-card ul { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.vm-card ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }
.vm-card ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }

/* ── TEAM SECTION ─────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-img {
  height: 260px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-img-placeholder { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: rgba(255,255,255,0.2); }
.team-info { padding: 26px 22px; }
.team-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.team-role { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-bio { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; }

/* ── MEMBERSHIPS ──────────────────────────────────────────── */
.memberships-section { background: var(--navy-deep); padding: 90px 0; }
.memberships-section .section-title { color: var(--white); }
.memberships-section .section-tag { color: var(--gold-light); }
.memberships-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.membership-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.membership-item:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.membership-item i { font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; display: block; }
.membership-item h5 { font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.membership-item p { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ── BBEE SECTION ─────────────────────────────────────────── */
.bbee-section { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); padding: 90px 0; }
.bbee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.bbee-badge-wrap { display: flex; align-items: center; justify-content: center; }
.bbee-badge {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(17,37,53,0.4);
  border: 6px solid rgba(255,255,255,0.2);
}
.bbee-badge .level { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.bbee-badge .number { font-family: var(--font-display); font-size: 5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.bbee-badge .eme { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.bbee-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--navy-deep); margin-bottom: 18px; line-height: 1.15; }
.bbee-text p { font-size: 0.96rem; color: rgba(17,37,53,0.7); line-height: 1.85; margin-bottom: 14px; }
.bbee-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.bbee-fact { background: rgba(17,37,53,0.08); border-radius: var(--radius-md); padding: 16px; }
.bbee-fact h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-deep); margin-bottom: 4px; }
.bbee-fact p { font-size: 0.82rem; color: rgba(17,37,53,0.65); line-height: 1.5; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1000px) {
  .memberships-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-intro-grid, .bbee-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-images { height: 360px; }
  .vm-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .bbee-badge-wrap { margin-bottom: 16px; }
}
@media (max-width: 600px) {
  .vm-grid, .team-grid { grid-template-columns: 1fr; }
  .memberships-grid { grid-template-columns: 1fr 1fr; }
  .bbee-facts { grid-template-columns: 1fr; }
  .about-intro-images { height: 300px; }
}
