/* =============================================================
   ABOUT PAGES — our-story.blade.php + why-choose-us.blade.php
   Prefix: sto- (Our Story), wcu- (Why Choose Us), shared: tan-stats
   ============================================================= */

/* ── Shared: Stats Strip ── */
.tan-stats {
  padding: 56px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.tan-stats__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.tan-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.tan-stats__item {
  padding: 0 32px;
  position: relative;
}
.tan-stats__item + .tan-stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--border-light);
}
.tan-stats__icon {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}
.tan-stats__number {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  font-family: var(--font-family-primary);
  margin-bottom: 8px;
}
.tan-stats__label {
  font-size: .82rem;
  color: var(--text-secondary);
  font-family: var(--font-family-primary);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── Shared: Bottom CTA (already in footer.css, just override colours here if needed) ── */

/* ─────────────────────────────────────────────────────────────
   OUR STORY PAGE
   ───────────────────────────────────────────────────────────── */

/* Story intro — 2 column */
.sto-intro {
  padding: 88px 0;
  background: #fff;
}
.sto-intro__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.sto-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sto-intro__text .tan-section-pill { margin-bottom: 16px; }
.sto-intro__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 24px;
  font-family: var(--font-family-primary);
}
.sto-intro__body {
  font-size: .98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 16px;
}
.sto-intro__body:last-of-type { margin-bottom: 32px; }
.sto-intro__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.sto-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sto-intro__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--font-family-primary);
  box-shadow: 0 4px 20px rgba(231,149,32,.4);
}
.sto-intro__badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.sto-intro__badge-label {
  font-size: .8rem;
  font-weight: 500;
  opacity: .9;
}

/* Mission / Vision / Values */
.sto-mvv {
  padding: 80px 0;
  background: var(--background-light);
}
.sto-mvv__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.sto-mvv__heading-wrap {
  text-align: center;
  margin-bottom: 52px;
}
.sto-mvv__heading-wrap .tan-section-pill { margin-bottom: 14px; }
.sto-mvv__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  font-family: var(--font-family-primary);
}
.sto-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sto-mvv__card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.sto-mvv__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.sto-mvv__icon {
  width: 64px;
  height: 64px;
  background: #fef3e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary-color);
}
.sto-mvv__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
  font-family: var(--font-family-primary);
}
.sto-mvv__card-body {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Nepal photo strip */
.sto-photos {
  padding: 0;
}
.sto-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 400px;
}
.sto-photos__item {
  overflow: hidden;
}
.sto-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.sto-photos__item:hover img { transform: scale(1.06); }

/* ─────────────────────────────────────────────────────────────
   WHY CHOOSE US PAGE
   ───────────────────────────────────────────────────────────── */

/* Lead statement */
.wcu-lead {
  padding: 72px 40px;
  background: #fff;
  text-align: center;
}
.wcu-lead__container {
  max-width: 720px;
  margin: 0 auto;
}
.wcu-lead .tan-section-pill { margin-bottom: 16px; }
.wcu-lead__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 20px;
  font-family: var(--font-family-primary);
}
.wcu-lead__body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* 6-card reasons grid */
.wcu-reasons {
  padding: 24px 0 88px;
  background: #fff;
}
.wcu-reasons__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.wcu-reasons__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.wcu-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--background-light);
  border-radius: 18px;
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.wcu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: var(--primary-color);
}
.wcu-card__icon {
  width: 56px;
  height: 56px;
  background: #fef3e2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: background .25s;
}
.wcu-card:hover .wcu-card__icon { background: var(--primary-color); color: #fff; }
.wcu-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
  font-family: var(--font-family-primary);
}
.wcu-card__body {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* How we work — numbered steps */
.wcu-steps {
  padding: 80px 0;
  background: var(--background-light);
}
.wcu-steps__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.wcu-steps__heading-wrap {
  text-align: center;
  margin-bottom: 56px;
}
.wcu-steps__heading-wrap .tan-section-pill { margin-bottom: 14px; }
.wcu-steps__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  font-family: var(--font-family-primary);
}
.wcu-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.wcu-steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: 0;
}
.wcu-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.wcu-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-family-primary);
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(35,45,78,.25);
}
.wcu-step__num--active { background: var(--primary-color); }
.wcu-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  font-family: var(--font-family-primary);
}
.wcu-step__body {
  font-size: .87rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials on WCU page */
.wcu-testim {
  padding: 80px 0;
  background: #fff;
}
.wcu-testim__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.wcu-testim__heading-wrap {
  text-align: center;
  margin-bottom: 48px;
}
.wcu-testim__heading-wrap .tan-section-pill { margin-bottom: 14px; }
.wcu-testim__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  font-family: var(--font-family-primary);
}
.wcu-testim__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wcu-testim__card {
  background: var(--background-light);
  border-radius: 18px;
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  position: relative;
}
.wcu-testim__quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-color);
  opacity: .25;
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
}
.wcu-testim__quote {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 24px;
  font-style: italic;
}
.wcu-testim__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wcu-testim__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.wcu-testim__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wcu-testim__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
  font-family: var(--font-family-primary);
}
.wcu-testim__location {
  font-size: .8rem;
  color: var(--text-secondary);
  margin: 0;
}
.wcu-testim__stars { color: var(--primary-color); font-size: .85rem; margin-bottom: 6px; }

/* ─────────────────────────────────────────────────────────────
   HOME PAGE — tan-why section update
   Add "View Full Story" + "Why Choose Us" links at bottom
   ───────────────────────────────────────────────────────────── */
.tan-why__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .tan-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .tan-stats__item { padding: 24px 16px; }
  .tan-stats__item + .tan-stats__item::before { display: none; }
  .sto-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .sto-mvv__grid  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .wcu-reasons__grid { gap: 20px; }
  .wcu-card { flex: 0 0 calc(50% - 10px); }
  .wcu-steps__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wcu-steps__grid::before { display: none; }
  .wcu-testim__grid { grid-template-columns: 1fr; }
  .sto-photos__grid { grid-template-columns: 1fr 1fr; height: 280px; }
  .sto-photos__grid .sto-photos__item:last-child { display: none; }
}
@media (max-width: 600px) {
  .tan-stats__grid { grid-template-columns: 1fr 1fr; }
  .tan-stats__item { padding: 20px 12px; }
  .sto-intro__container,
  .sto-mvv__container,
  .sto-photos,
  .wcu-lead__container,
  .wcu-reasons__container,
  .wcu-steps__container,
  .wcu-testim__container { padding: 0 20px; }
  .sto-intro { padding: 56px 0; }
  .sto-mvv__grid { grid-template-columns: 1fr; }
  .wcu-card { flex: 0 0 100%; }
  .wcu-steps__grid { grid-template-columns: 1fr; }
  .sto-photos__grid { height: 220px; }
  .tan-why__footer { flex-direction: column; }
}
