/* ============================================
   About Page Styles
   ============================================ */

/* Hero */
.about-hero {
  background: linear-gradient(135deg, #1A9E8F 0%, #0D7A6E 60%, #0A6B5F 100%);
  color: var(--color-white);
  padding: var(--space-12) var(--container-padding) var(--space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero__label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.about-hero__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.about-hero__subtitle {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  max-width: 320px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

/* Mission & Vision */
.mv-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mv-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.mv-card--mission::before {
  background: var(--color-primary);
}

.mv-card--vision::before {
  background: var(--color-accent);
}

.mv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-3);
}

.mv-card--mission .mv-card__icon {
  background: var(--color-primary-bg);
}

.mv-card--vision .mv-card__icon {
  background: var(--color-accent-bg);
}

.mv-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

.mv-card__text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light), var(--color-accent));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-6);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-item__year {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.timeline-item__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

.timeline-item__text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.value-card {
  text-align: center;
  padding: var(--space-5) var(--space-3);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--color-primary-bg);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.value-card__icon {
  font-size: 32px;
  margin-bottom: var(--space-2);
}

.value-card__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 4px;
}

.value-card__text {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Team CTA */
.team-cta {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(135deg, var(--color-primary-bg), var(--color-white));
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-primary-bg);
}

.team-cta__image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-4);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.team-cta__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

.team-cta__text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  line-height: var(--line-height-relaxed);
}
