/* ==========================================================================
   ABOUT PAGE STYLES (about.php)
   ========================================================================== */

/* About Page Header */
.about-header {
  padding: 60px 0 48px;
  background: #fff;
  text-align: center;
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: #1a1a1a;
  line-height: 1.15;
}

.about-subtitle {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

.our-story-section,
.team-section,
.vision-mission-section,
.goals-section,
.values-section {
  padding: 80px 0;
}

.our-story-section,
.vision-mission-section,
.values-section {
  background: #fff;
}

.team-section,
.goals-section {
  background: #f8f9fa;
}

.story-content,
.section-header-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-icon,
.vm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 181, 122, 0.06);
  border-radius: 50%;
}

.story-icon i,
.vm-icon i {
  font-size: 40px;
  color: var(--accent);
}

.our-story-section h2,
.team-section h2,
.vision-mission-section h2,
.goals-section h2,
.values-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
}

.story-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.story-text p {
  margin-bottom: 20px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

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

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #222;
}

.team-title {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 20px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.email {
  background: #ea4335;
}

/* Vision & Mission Grid */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-card,
.mission-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 12px;
  background: #f8f9fa;
}

.vision-card h3,
.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 20px;
  color: #222;
}

.vm-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Goals Section */
.goals-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.goals-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.goals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.goal-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.goal-card:hover {
  transform: translateY(-3px);
}

.goal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 181, 122, 0.06);
}

.goal-icon i {
  font-size: 32px;
  color: var(--accent);
}

.goal-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #222;
}

.goal-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  padding: 30px 25px;
  border-radius: 12px;
  background: #f8f9fa;
  text-align: center;
}

.value-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px;
  color: #222;
}

.value-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-header {
    padding: 40px 0 30px;
  }

  .about-subtitle {
    font-size: 15px;
  }

  .our-story-section,
  .team-section,
  .vision-mission-section,
  .goals-section,
  .values-section {
    padding: 50px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .goals-categories {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .goals-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-card,
  .vision-card,
  .mission-card,
  .goal-card,
  .value-item {
    padding: 25px 20px;
  }

  .story-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .team-photo {
    width: 100px;
    height: 100px;
  }

  .vm-icon,
  .story-icon {
    width: 60px;
    height: 60px;
  }

  .vm-icon i,
  .story-icon i {
    font-size: 30px;
  }

  .goal-icon {
    width: 50px;
    height: 50px;
  }

  .goal-icon i {
    font-size: 26px;
  }
}
