/* ABOUT PAGE STYLES */

/* Hero Section */
.about-hero {
  padding: 140px 40px 80px;
  background: linear-gradient(135deg, #006064 0%, #004D40 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 196, 182, 0.15);
  border: 1px solid rgba(46, 196, 182, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
}

.about-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Mission & Vision */
.mv-section {
  padding: 80px 40px;
  background: var(--bg);
}

.mv-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mv-card {
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-blue);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.mv-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Story Section */
.story-section {
  padding: 100px 40px;
  background: #fff;
}

.story-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.story-content .section-tag { margin-bottom: 16px; }
.story-content h2 { margin-bottom: 24px; }
.story-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.quote-block {
  padding: 32px;
  background: var(--bg-warm);
  border-left: 4px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  margin-top: 40px;
}

.quote-text {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.quote-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

/* Timeline */
.timeline-section {
  padding: 100px 40px;
  background: var(--bg);
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border);
}

.timeline-item {
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid var(--teal);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  width: 45%;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.timeline-year {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.timeline-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 100px 40px;
  background: #fff;
}

.team-grid {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: center;
}

.team-card {
  text-align: center;
}

.team-avatar-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s;
}

.team-card:hover .team-avatar { transform: scale(1.05); }

.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social-link {
  color: var(--text-muted);
  transition: color 0.2s;
}

.team-social-link:hover { color: var(--blue); }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story-container { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-title { font-size: 40px; }
}

@media (max-width: 768px) {
  .mv-container { grid-template-columns: 1fr; }
  .timeline-container::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; justify-content: flex-end; }
  .timeline-content { width: calc(100% - 60px); }
  .team-grid { grid-template-columns: 1fr; }
}
