/* ABOUT PAGE STYLES */

/* ===== ABOUT HERO ===== */
.about-hero {
  background: linear-gradient(150deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,107,53,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 80px 24px 60px;
  animation: fadeInUp 0.7s ease both;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.about-hero-content h1 span { color: #8bb7f0; }

.about-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ah-stat { text-align: center; }
.ah-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 6px;
}
.ah-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; font-weight: 500; }
.ah-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

.about-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.about-hero-wave svg { display: block; }

/* ===== STORY SECTION ===== */
.about-story-section { background: var(--off-white); }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-card-big {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.story-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.sicon-item {
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sicon-item span { font-size: 2rem; }
.sicon-item small { font-size: 0.75rem; font-weight: 700; }

.sicon-item.blue { background: rgba(21,101,192,0.08); color: var(--primary); }
.sicon-item.cyan { background: rgba(0,188,212,0.08); color: #00ACC1; }
.sicon-item.orange { background: rgba(21,41,82,0.08); color: var(--primary); }
.sicon-item.purple { background: rgba(124,77,255,0.08); color: #7C4DFF; }

.story-badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
.sbadge {
  flex: 1;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
}

.story-float-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.sfc-icon { font-size: 2rem; }
.sfc-val { font-size: 1.4rem; font-weight: 900; color: white; font-family: var(--font-heading); }
.sfc-label { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

.story-content p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.sh-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}

.sh-icon { font-size: 1rem; flex-shrink: 0; }

/* ===== MISSION / VISION ===== */
.mission-vision-section { background: var(--white); }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.mv-card.mission { background: var(--gradient-primary); }
.mv-card.vision { background: linear-gradient(135deg, #1B5E20, #2E7D32); }
.mv-card.values { background: linear-gradient(135deg, #4A148C, #7B1FA2); }

.mv-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.mv-card h3 { color: white; font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.mv-card p { color: rgba(255,255,255,0.85); font-size: 0.875rem; line-height: 1.8; margin-bottom: 20px; }
.mv-points li { font-size: 0.82rem; color: rgba(255,255,255,0.8); padding: 5px 0; font-weight: 500; }

/* ===== TRUST SECTION ===== */
.trust-section { background: var(--off-white); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.trust-card:hover {
  border-top-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.trust-card-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.trust-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: #21446E; }
.trust-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.8; }

/* ===== TEAM SECTION ===== */
.team-section { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--mid-gray);
}

.team-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}

.team-avatar.blue { background: var(--gradient-primary); }
.team-avatar.orange { background: var(--gradient-primary); }
.team-avatar.green { background: linear-gradient(135deg, #1B5E20, #2E7D32); }
.team-avatar.purple { background: linear-gradient(135deg, #4A148C, #7B1FA2); }

.team-card h4 { font-size: 1rem; font-weight: 700; color: #21446E; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--primary-light); font-weight: 600; display: block; margin-bottom: 12px; }
.team-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }

.team-skills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.team-skills span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(21,101,192,0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-layout { grid-template-columns: 1fr; }
  .story-visual { max-width: 500px; }
  .mv-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-stats { gap: 20px; }
  .ah-divider { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
