/* =====================================
   ABOUT PAGE STYLES
===================================== */

.hero-section {
  background: linear-gradient(135deg, var(--primary), rgba(0, 240, 255, 0.3));
  padding: 4rem 1rem;
  text-align: center;
  color: var(--text-main);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Mission Section */
.mission-section {
  padding: 3rem 0;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

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

.mission-content p:last-child {
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  background: rgba(0, 240, 255, 0.05);
  padding: 3rem 0;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.2);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin: 0 0 1rem 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Inquiry Section */
.inquiry-section {
  padding: 3rem 0;
}

.inquiry-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.inquiry-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2rem;
}

.inquiry-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

/* Timeline / Story Section */
.story-section {
  padding: 3rem 0;
  background: rgba(0, 240, 255, 0.05);
}

.story-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.timeline-item {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 350px;
}

.timeline-item:nth-child(even) {
  margin-left: 0;
}

.timeline-item:nth-child(odd) {
  margin-right: 0;
}

.timeline-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: var(--bg-darker);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 1;
}

.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  padding: 3rem 0;
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.partners-section > div > p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 20, 147, 0.05));
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .mission-content h2 {
    font-size: 1.5rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-year {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }

  .timeline-item {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    margin: 0 0 2rem 0;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
  }

  .timeline-year {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }
}
