/* About Page Specific Styles */

/* Hero Section - About */
.hero-about {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, white 50%, rgba(13, 148, 136, 0.05) 100%);
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-about {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.hero-about .hero-inner {
  max-width: 800px;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}

.section-gray {
  background: var(--color-gray-50);
}

/* Mission Section */
.mission-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.mission-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .mission-content h2 { font-size: 2.5rem; }
}

.mission-content h2 span {
  color: var(--color-primary);
}

.mission-content p {
  color: var(--color-gray-600);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  background: var(--color-gray-200);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-image-placeholder {
  color: var(--color-gray-400);
  font-size: 1rem;
  text-align: center;
  padding: 2rem;
}

/* Values Section */
.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .values-header h2 { font-size: 2.5rem; }
}

.values-header p {
  font-size: 1.25rem;
  color: var(--color-gray-500);
  max-width: 500px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-primary);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Section */
.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .team-header h2 { font-size: 2.5rem; }
}

.team-header p {
  font-size: 1.25rem;
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.team-images {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-images { grid-template-columns: repeat(2, 1fr); }
}

.team-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
  background: white;
}

.team-image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .team-image-card img { height: 350px; }
}

.team-image-card:hover img {
  transform: scale(1.03);
}

.team-image-placeholder {
  width: 100%;
  height: 300px;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
}

@media (min-width: 768px) {
  .team-image-placeholder { height: 350px; }
}

.team-image-info {
  padding: 1.5rem 2rem;
}

.team-image-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.team-image-info p {
  color: var(--color-gray-500);
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  background: var(--color-primary);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  color: white;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}