/* ========================================
   About Page — Volstrin
   ======================================== */

/* ====== About Hero ====== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-hero h1 span {
  color: var(--gold);
}

.about-hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 620px;
}

/* ====== Our Story ====== */
.about-story {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-stat {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.story-stat h3 {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.story-stat p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ====== Timeline ====== */
.timeline-section {
  padding: 100px 0;
  background: var(--light);
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

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

.timeline-year {
  min-width: 72px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-content {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  flex: 1;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====== Values ====== */
.values-section {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 51, 0.08);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====== Accreditations ====== */
.accreditations-section {
  padding: 100px 0;
  background: var(--light);
}

.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.accreditation-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.accreditation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 51, 0.08);
}

.accreditation-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.accreditation-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.accreditation-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====== Leadership ====== */
.leadership-section {
  padding: 100px 0;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 51, 0.08);
}

.leader-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}

.leader-initials {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.leader-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.leader-title {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====== Testimonials ====== */
.testimonials-section {
  padding: 100px 0;
  background: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 51, 0.08);
}

.testimonial-stars {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .accreditations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero { padding: 120px 0 80px; }
  .about-hero h1 { font-size: 36px; }

  .story-stat-stack { grid-template-columns: 1fr 1fr; }
  .story-content h2 { font-size: 28px; }

  .timeline::before { left: 36px; }
  .timeline-year { min-width: 56px; font-size: 13px; }
  .timeline-content { padding: 20px 24px; }

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