/* ===============================
   ABOUT PAGE
================================ */

.about-hero {
  padding: 90px 20px 60px;
  text-align: center;
}

.about-kicker {
  color: #c8a04f;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 640px;
  margin: auto;
}

/* CARD SECTION */
.about-section {
  padding: 40px 20px 80px;
}

.about-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 50px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.about-card h2 {
  color: #c8a04f;
  font-size: 24px;
  margin-bottom: 18px;
}

.about-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c8a04f;
  font-weight: bold;
}

/* TAGLINE */
.about-tagline {
  text-align: center;
  margin-top: 30px;
  font-weight: 700;
  color: #c8a04f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 32px;
  }

  .about-card {
    padding: 30px 24px;
  }
}

/* ===============================
   HORIZONTAL TIMELINE (LINE)
================================ */

.timeline-section {
  padding: 80px 20px;
  text-align: center;
}

.timeline-kicker {
  color: #c8a04f;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 60px;
}

.timeline-line-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.timeline-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c8a04f;
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.timeline-item {
  width: 160px;
  text-align: center;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #c8a04f;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.timeline-year {
  font-size: 17px;
  font-weight: 700;
  margin-top: 14px;
}

.timeline-text {
  font-size: 14px;
  color: #444;
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .timeline-line {
    display: none;
  }

  .timeline-items {
    flex-direction: column;
    gap: 35px;
  }
}

/* ===============================
   TIMELINE ANIMATION
================================ */

/* Initial hidden state */
.animate-timeline .timeline-line {
  transform: scaleX(0);
  transform-origin: left;
}

.animate-timeline .timeline-dot,
.animate-timeline .timeline-year,
.animate-timeline .timeline-text {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
}

/* Active animation */
.animate-timeline.active .timeline-line {
  transform: scaleX(1);
  transition: transform 1.2s ease-in-out;
}

.animate-timeline.active .timeline-item:nth-child(1) .timeline-dot,
.animate-timeline.active .timeline-item:nth-child(1) .timeline-year,
.animate-timeline.active .timeline-item:nth-child(1) .timeline-text {
  transition-delay: 0.2s;
}

.animate-timeline.active .timeline-item:nth-child(2) .timeline-dot,
.animate-timeline.active .timeline-item:nth-child(2) .timeline-year,
.animate-timeline.active .timeline-item:nth-child(2) .timeline-text {
  transition-delay: 0.4s;
}

.animate-timeline.active .timeline-item:nth-child(3) .timeline-dot,
.animate-timeline.active .timeline-item:nth-child(3) .timeline-year,
.animate-timeline.active .timeline-item:nth-child(3) .timeline-text {
  transition-delay: 0.6s;
}

.animate-timeline.active .timeline-item:nth-child(4) .timeline-dot,
.animate-timeline.active .timeline-item:nth-child(4) .timeline-year,
.animate-timeline.active .timeline-item:nth-child(4) .timeline-text {
  transition-delay: 0.8s;
}

.animate-timeline.active .timeline-item:nth-child(5) .timeline-dot,
.animate-timeline.active .timeline-item:nth-child(5) .timeline-year,
.animate-timeline.active .timeline-item:nth-child(5) .timeline-text {
  transition-delay: 1s;
}

/* Final visible state */
.animate-timeline.active .timeline-dot,
.animate-timeline.active .timeline-year,
.animate-timeline.active .timeline-text {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}


/* ===============================
   VISION & MISSION
================================ */

.vm-section {
  padding: 80px 20px;
  background: #fafafa;
}

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

.vm-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.vm-card h3 {
  color: #c8a04f;
  font-size: 22px;
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vm-wrapper {
    grid-template-columns: 1fr;
  }
}
