/* ==============================================
   ABOUT PAGE - MODERN STYLES
   ============================================== */

/* About Section */
.about-section {
  padding: 5rem 0;
  background: #fafafa;
}

/* Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-intro-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-intro-image {
  border-radius: 24px;
  overflow: hidden;
  height: 350px;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), #003366);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.about-image-placeholder i {
  font-size: 4rem;
}

.about-image-placeholder span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-stat {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 31, 77, 0.12);
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.about-stat-label {
  color: #667085;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Values Section */
.about-values-section {
  padding: 5rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.03),
    rgba(255, 140, 0, 0.03)
  );
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(0, 31, 77, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #667085;
  line-height: 1.6;
  margin: 0;
}

/* History Section */
.about-history-section {
  padding: 5rem 0;
  background: #fafafa;
}

.timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-secondary),
    var(--color-primary)
  );
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-date {
  width: 120px;
  padding: 0.75rem 1rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 50px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin: 0 2rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #667085;
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary), #003366);
}

.about-cta-content {
  text-align: center;
  color: white;
}

.about-cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Section Header */
.section-header-modern {
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 140, 0, 0.1);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title-modern {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.title-highlight {
  color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-image {
    order: -1;
    height: 280px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-stat {
    padding: 1.5rem;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-date {
    margin-bottom: 1rem;
  }

  .timeline-content {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
