/* ========================================
   ABOUT PAGE - CREATIVE STYLES
   ======================================== */

/* Hero Section - Bold Typography */
.about-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #14287b 0%, #1a3498 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 30px;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  display: block;
  color: #d9ddea;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-title {
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  word-spacing: 0.05em;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-accent {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(254, 242, 46, 0.08);
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 768px) {
  .about-hero {
    height: 350px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }
}

/* Journey Timeline Section */
.about-journey {
  padding: 100px 30px;
  background: #ffffff;
}

.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #14287b, #d9ddea);
}

.journey-item {
  position: relative;
  margin-bottom: 60px;
  width: 48%;
}

.journey-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 50px;
}

.journey-item:nth-child(even) {
  margin-left: 52%;
  text-align: left;
  padding-left: 50px;
}

.journey-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #d9ddea;
  border: 4px solid #14287b;
  border-radius: 50%;
  top: 10px;
}

.journey-item:nth-child(odd) .journey-dot {
  right: -63px;
}

.journey-item:nth-child(even) .journey-dot {
  left: -63px;
}

.journey-content h3 {
  color: #14287b;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.journey-content p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .journey-timeline::before {
    left: 0;
  }

  .journey-item,
  .journey-item:nth-child(odd),
  .journey-item:nth-child(even) {
    width: 100%;
    margin: 0 0 50px 0;
    padding-left: 50px;
    text-align: left;
  }

  .journey-item:nth-child(odd) .journey-dot,
  .journey-item:nth-child(even) .journey-dot {
    left: -30px;
    right: auto;
  }
}

/* Values Section */
.about-values {
  padding: 100px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  padding: 50px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.value-card-primary {
  background: #14287b;
  color: #ffffff;
}

.value-card-primary h3 {
  color: #d9ddea;
}

.value-card-secondary {
  background: #d9ddea;
  color: #14287b;
}

.value-card-secondary h3 {
  color: #14287b;
}

.value-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.value-card-primary .value-icon {
  color: #d9ddea;
}

.value-card-secondary .value-icon {
  color: #14287b;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.about-stats {
  padding: 80px 30px;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  padding: 30px;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  border-left: 4px solid #d9ddea;
  border-radius: 5px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #14287b;
  margin-bottom: 10px;
}

.stat-label {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.stat-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #d9ddea 0%, #14287b 100%);
  border-radius: 2px;
}

/* Reasons Section */
.about-reasons {
  padding: 100px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.reason-item {
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(20, 40, 123, 0.15);
}

.reason-number {
  font-size: 50px;
  font-weight: 800;
  color: #d9ddea;
  margin-bottom: 15px;
  display: block;
  line-height: 1;
}

.reason-item h3 {
  color: #14287b;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.reason-item p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.about-cta {
  padding: 80px 30px;
  background: linear-gradient(135deg, #14287b 0%, #1a3498 100%);
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.about-cta .btn-primary {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  background: #d9ddea;
  color: #14287b;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
  background: #ffffff;
  color: #14287b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
}

.section-header p {
  color: #d9ddea;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header h2 {
  color: #14287b;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .about-cta .cta-content h2 {
    font-size: 32px;
  }

  .reasons-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
