/* =====================================================
   ABOUT PAGE STYLES – Professional Redesign
   ===================================================== */

/* INTRO SECTION */
.about-intro-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-badge {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(255, 10, 6, 0.3);
}

.intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.intro-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION HEADER STYLE */
.section-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 10, 6, 0.3);
  line-height: 1;
  margin-bottom: 12px;
}

.section-title-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.section-subtitle-new {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* STORY & MISSION SECTION */
.story-mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.story-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.story-card-new,
.mission-card-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.story-card-new:hover,
.mission-card-new:hover {
  transform: translateY(-8px);
  border-color: var(--brand-red);
  box-shadow: 0 12px 40px rgba(255, 10, 6, 0.2);
}

.card-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 10, 6, 0.2);
}

.card-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 10, 6, 0.4);
  line-height: 1;
}

.card-title-new {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.card-content-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-content-new p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.mission-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-list-new li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-icon-new {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.mission-list-new li span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* VALUES SECTION */
.values-section-new {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.values-header-new {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card-new:hover {
  transform: translateY(-8px);
  border-color: var(--brand-red);
  box-shadow: 0 12px 40px rgba(255, 10, 6, 0.2);
}

.value-icon-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255, 10, 6, 0.3);
}

.value-card-new h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px 0;
}

.value-card-new p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* HERITAGE SECTION */
.heritage-section-new {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.heritage-header-new {
  text-align: center;
  margin-bottom: 50px;
}

.heritage-layout-new {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.heritage-content-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.heritage-description-new {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.heritage-features-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.heritage-feature-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid rgba(255, 10, 6, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.heritage-feature-new:hover {
  border-color: var(--brand-red);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(255, 10, 6, 0.15);
}

.heritage-feature-new .feature-icon-new {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 10, 6, 0.3);
}

.heritage-feature-new .feature-content-new h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px 0;
}

.heritage-feature-new .feature-content-new p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .story-mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }

  .heritage-layout-new {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .intro-title,
  .section-title-new,
  .card-title-new {
    font-size: 2rem;
  }

  .section-number,
  .card-number {
    font-size: 2.5rem;
  }

  .story-card-new,
  .mission-card-new {
    padding: 32px 24px;
  }

  .values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage-feature-new {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .intro-title,
  .section-title-new,
  .card-title-new {
    font-size: 1.75rem;
  }

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

  .value-card-new,
  .story-card-new,
  .mission-card-new {
    padding: 24px 20px;
  }
}
