/* ===== ABOUT PAGE ===== */

/* NAV ACTIVE */
nav a.nav-active { color: var(--saffron); border-bottom: 2px solid var(--saffron); padding-bottom: 2px; }

/* ABOUT HERO */
.about-hero {
  position: relative;
  min-height: auto;
  height: auto;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5ee 0%, #fffaf5 50%, #f0fff4 100%);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,106,0,.08) 0%, rgba(19,136,8,.06) 100%);
  z-index: 1;
}
.about-hero-portrait {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
  animation: floatUp .8s ease both;
}
.about-hero-content {
  display: none !important;
  position: relative;
  z-index: 2;
  padding: 120px 0 60px 0;
  max-width: 600px;
}
.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--saffron);
  line-height: 1.1;
  margin-bottom: 10px;
}
.about-hero-content > p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: #888;
}
.breadcrumb a { color: var(--saffron); font-weight: 600; }
.breadcrumb i { font-size: .65rem; color: #bbb; }

/* INTRO */
.about-intro { background: #fff; }
.about-intro-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.about-intro-text h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 10px 0 20px;
}
.about-intro-text p {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-intro-text .btn-primary { margin-top: 8px; }
.about-main-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.about-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.about-strip-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  transition: .3s;
}
.about-strip-grid img:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(255,106,0,.2); }

/* VISION */
.vision-section { background: var(--light); }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vision-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border-top: 4px solid var(--saffron);
  transition: .3s;
}
.vision-card--green { border-top-color: var(--green); }
.vision-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(255,106,0,.15); }
.vision-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,106,0,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--saffron);
}
.vision-icon--green { background: rgba(19,136,8,.1); color: var(--green); }
.vision-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.vision-card p { font-size: .85rem; color: #666; line-height: 1.7; }

/* TIMELINE */
.timeline-section { background: #fff; }
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  z-index: 0;
}
.timeline-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item:nth-child(2) { transition-delay: .1s; }
.timeline-item:nth-child(3) { transition-delay: .2s; }
.timeline-item:nth-child(4) { transition-delay: .3s; }
.timeline-item:nth-child(5) { transition-delay: .4s; }
.tl-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 3px solid var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--saffron);
  box-shadow: 0 4px 16px rgba(255,106,0,.2);
  transition: .3s;
}
.timeline-item:hover .tl-icon { background: var(--saffron); color: #fff; }
.timeline-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.timeline-item p { font-size: .78rem; color: #777; line-height: 1.6; }

/* CTA */
.about-cta {
  background: linear-gradient(135deg, var(--saffron) 0%, #e05a00 100%);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.about-cta-inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.about-cta-inner p { font-size: 1rem; margin-bottom: 28px; opacity: .9; }
.about-cta .btn-primary {
  background: #fff;
  color: var(--saffron);
  font-size: 1rem;
  padding: 14px 36px;
}
.about-cta .btn-primary:hover { background: var(--dark); color: #fff; }

/* RESPONSIVE */
@media(max-width:992px) {
  .about-intro-wrap { grid-template-columns: 1fr; }
  
  .about-hero-content { padding: 100px 0 50px 0; }
  .about-hero-content h1 { font-size: 2.2rem; }
  .vision-grid { grid-template-columns: 1fr; gap: 20px; }
  .timeline::before { display: none; }
  .timeline { flex-direction: column; align-items: center; gap: 24px; }
  .timeline-item { min-width: unset; width: 100%; max-width: 400px; }
}
@media(max-width:768px) {
  .about-hero-content { padding: 80px 20px 40px; text-align: center; margin: 0 auto; max-width: 100%; }
  .about-hero { min-height: auto; height: auto; }
  .about-strip-grid { grid-template-columns: repeat(2, 1fr); }
  nav, .header .btn-primary { display: none; }
  .hamburger { display: block; }
}

/* ── READ MORE / READ LESS ───────────────────────────────────────── */
.about-more-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(.4,0,.2,1), opacity .45s ease;
  opacity: 0;
}
.about-more-wrap.open {
  max-height: 600px;
  opacity: 1;
}

.about-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 2px solid var(--saffron);
  background: transparent;
  color: var(--saffron);
  font-size: .85rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background .25s, color .25s;
}
.btn-read-more:hover {
  background: var(--saffron);
  color: #fff;
}
.btn-read-more i {
  font-size: .75rem;
  transition: transform .35s ease;
}

/* ── NEW INTERACTIVE TIMELINE ────────────────────────────────────── */

/* Year tabs */
.tl-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.tl-tab {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid #e0d8d0;
  background: #fff;
  color: #888;
  font-size: .85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: .25s;
  white-space: nowrap;
}
.tl-tab:hover { border-color: var(--saffron); color: var(--saffron); }
.tl-tab.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,106,0,.3);
}

/* Slides */
.tl-slides { position: relative; min-height: 260px; }
.tl-slide {
  display: none;
  animation: tlFadeIn .4s ease both;
}
.tl-slide.active { display: block; }
@keyframes tlFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tl-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  border: 1px solid #f0ebe4;
}
.tl-slide-inner.tl-no-img {
  grid-template-columns: 1fr;
}

/* Image column */
.tl-img-col {
  height: 320px;
  overflow: hidden;
}
.tl-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.tl-slide.active .tl-img-col img { transform: scale(1.03); }

/* Text column */
.tl-text-col {
  padding: 40px 40px 40px 0;
}
.tl-slide-inner.tl-no-img .tl-text-col {
  padding: 40px;
}
.tl-year-badge {
  display: inline-block;
  background: rgba(255,106,0,.1);
  color: var(--saffron);
  border: 1px solid rgba(255,106,0,.25);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.tl-text-col h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}
.tl-desc-preview,
.tl-desc-full {
  font-size: .92rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}
.tl-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 2px solid var(--saffron);
  color: var(--saffron);
  font-size: .8rem;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: .2s;
}
.tl-read-more:hover { background: var(--saffron); color: #fff; }
.tl-read-more i { font-size: .7rem; transition: transform .3s; }

/* Prev / Next nav */
.tl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.tl-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid #e0d8d0;
  background: #fff;
  color: #555;
  font-size: .82rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
}
.tl-nav-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.tl-nav-counter {
  font-size: .85rem;
  font-weight: 700;
  color: #aaa;
  min-width: 60px;
  text-align: center;
}

/* Responsive */
@media(max-width:768px) {
  .tl-slide-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tl-img-col { height: 220px; }
  .tl-text-col { padding: 24px 20px; }
  .tl-text-col h3 { font-size: 1.2rem; }
  .tl-tabs { justify-content: flex-start; }
}
@media(max-width:480px) {
  .tl-tab { padding: 7px 14px; font-size: .78rem; }
  .tl-nav-btn { padding: 8px 14px; font-size: .75rem; }
}

/* ── SCROLL TOP ───────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px; background: var(--saffron); color: #fff;
  border: none; border-radius: 50%; font-size: 1rem; cursor: pointer;
  opacity: 0; pointer-events: none; transition: .3s; z-index: 999;
  box-shadow: 0 4px 16px rgba(255,106,0,.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ── FONT INHERIT ─────────────────────────────────── */
input, select, textarea, button { font-family: 'Poppins', sans-serif; }

/* ── FLOAT UP KEYFRAME ────────────────────────────── */
@keyframes floatUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
