/* ============================================================
   about.css —  Dwarkadhish Cab  About Page
   Extends main.css without overriding it
   ============================================================ */


/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.08);
}
.stat-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
  position: relative;
  transition: background .3s;
}
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s var(--ease-expo);
}
.stat-item:hover::after { width: 60%; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label-text {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ── Mission / Vision cards ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: all .35s var(--ease-expo);
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.mv-card-icon {
  width: 58px; height: 58px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.4rem;
  transition: all .3s;
}
.mv-card:hover .mv-card-icon { background: var(--gold); color: var(--white); }
.mv-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.mv-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.75; }

/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  transition: all .35s var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}
.value-card:hover::before { opacity: 1; }
.value-card > * { position: relative; z-index: 1; }
.value-card:hover h4,
.value-card:hover p { color: var(--white); }
.value-card:hover .value-num { color: rgba(255,255,255,.15); }
.value-card:hover { border-color: transparent; box-shadow: var(--shadow-md); }
.value-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 10px;
  transition: color .35s;
}
.value-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; transition: color .35s; }
.value-card p { font-size: .82rem; color: var(--gray-500); line-height: 1.65; transition: color .35s; }

/* ── Team / Highlights timeline ── */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-pale) 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -38px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(200,146,42,.2);
}
.timeline-year {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.timeline-item h4 { font-size: .98rem; color: var(--navy); margin-bottom: 6px; }
.timeline-item p { font-size: .85rem; color: var(--gray-500); line-height: 1.65; }

/* ── About image collage ── */
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.collage-grid .col-tall {
  grid-row: 1 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 2/3;
}
.collage-grid .col-sq {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.collage-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-silk);
}
.collage-grid .col-tall:hover img,
.collage-grid .col-sq:hover img { transform: scale(1.05); }

/* ── CTA About ── */
.about-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a6e 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.18) 0%, transparent 70%);
  pointer-events: none;
}
.about-cta h2 { font-size: clamp(1.5rem,2.8vw,2.2rem); color: var(--white); margin-bottom: 10px; }
.about-cta h2 span { color: var(--gold-light); font-style: italic; }
.about-cta p { color: rgba(255,255,255,.7); font-size: .95rem; }
.about-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-cta { grid-template-columns: 1fr; text-align: center; padding: 48px 32px; }
  .about-cta-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .collage-grid { grid-template-columns: 1fr; }
  .collage-grid .col-tall { grid-row: auto; aspect-ratio: 16/9; }
  .page-hero { height: 340px; }
  .about-cta { padding: 36px 22px; border-radius: var(--radius-lg); }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
  .values-grid { grid-template-columns: 1fr; }
}