/* ============================================================
   ABOUT PAGE (FIXED CONTRAST VERSION)
   ============================================================ */

/* 🎯 Page Scope */
.about-page {
  background: #f8faf9;
}

/* ============================================================
   HERO FIX (MAIN ISSUE SOLVED HERE)
   ============================================================ */
.about-page .hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;

  /* ✅ LIGHT BACKGROUND FOR CONTRAST */
  background: linear-gradient(135deg, #eaf7f0 0%, #dff3ea 100%);
  color: var(--green-dark);
}

/* subtle pattern */
.about-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0,0,0,0.04) 2px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.4;
}

/* fix text */
.about-page .hero h1 {
  color: var(--green-dark);
}

.about-page .hero p {
  color: #919392;
}

/* breadcrumb fix */
.about-page .breadcrumb {
  color: #6b8f7f;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.story-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.since-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: white;
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.since-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.since-text {
  font-size: .72rem;
  font-weight: 600;
  opacity: .85;
  margin-top: 3px;
}

/* ============================================================
   VMV SECTION
   ============================================================ */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.vmv-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.vmv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.vmv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.vmv-card h3 {
  margin-bottom: 12px;
}

.values-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
}

.values-list li i {
  color: var(--green);
  font-size: .8rem;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 56px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-light), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-bottom: 40px;
  align-items: start;
}

.timeline-item.right {
  direction: rtl;
}

.timeline-item.right .timeline-content {
  direction: ltr;
  text-align: right;
}

.timeline-item.right .timeline-year {
  direction: ltr;
}

.timeline-year {
  grid-column: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 0 4px white, 0 0 0 6px var(--green-light);
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding: 0 24px;
}

.timeline-content h4 {
  color: var(--green-dark);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: .88rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.about-cta {
  padding: 0 0 80px;
}

.about-cta-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: white;
}

.about-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .timeline::before {
    left: 28px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }

  .timeline-item.right {
    direction: ltr;
  }

  .timeline-item.right .timeline-content {
    text-align: left;
  }

  .timeline-year {
    grid-column: 1;
  }

  .timeline-content {
    grid-column: 2;
    padding-left: 20px;
  }

  .about-cta-card {
    flex-direction: column;
    text-align: center;
  }
}