/* ============================================================
   GoRoute Cabs - about.css
   About page styles (about.html only)
   ============================================================ */

/* ── STORY SECTION ── */
.story-section {
  background: white;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left: quote card */
.story-visual {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  border-radius: 20px;
  padding: 48px 40px 40px;
  position: relative;
  overflow: hidden;
  color: white;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.story-quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 110px;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
  display: block;
}

.story-visual-quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.story-visual-author {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.story-visual-mini-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 1;
}

.svs-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.svs-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.svs-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* Right: story content */
.story-content {
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.story-content h2 em {
  color: var(--primary);
  font-style: normal;
}

.story-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-content p strong {
  color: var(--text);
}

.story-cta {
  margin-top: 28px;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--secondary);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.about-stat {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s;
}

.about-stat:last-child {
  border-right: none;
}
.about-stat:hover {
  background: rgba(255, 255, 255, 0.04);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.about-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

/* ── MISSION / VISION / APPROACH ── */
.mission-section {
  background: var(--bg-2);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.mission-card {
  background: white;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.09);
  border-color: var(--primary-border);
}

.mission-emoji-wrap {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
}

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.mission-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── CORE VALUES ── */
.values-section {
  background: white;
}

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

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 28px;
  background: var(--bg-2);
  border-radius: 14px;
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}

.value-item:hover {
  border-left-color: var(--primary);
  background: white;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
}

.value-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.22;
  min-width: 54px;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.25s;
}

.value-item:hover .value-num {
  opacity: 0.5;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── WHY CHOOSE US ── */
.why-choose {
  background: var(--bg-2);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.wc-card {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.wc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
  border-color: var(--primary-border);
}

.wc-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.wc-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.wc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── ORANGE CTA ── */
.about-cta-section {
  background: white;
}

.cta-orange-card {
  background: linear-gradient(135deg, #ff5520 0%, #ff3d00 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orange-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-orange-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-oc-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-oc-desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-oc-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-oc-btn-wa,
.cta-oc-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.cta-oc-btn-wa {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cta-oc-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: var(--primary);
}

.cta-oc-btn-call {
  background: #111827;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-oc-btn-call:hover {
  transform: translateY(-3px);
  background: #1f2937;
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .about-stat:nth-child(2) {
    border-right: none;
  }
  .about-stat:nth-child(3),
  .about-stat:nth-child(4) {
    border-bottom: none;
  }
  .about-stat:nth-child(4) {
    border-right: none;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .cta-orange-card {
    padding: 44px 24px;
  }
  .cta-oc-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-oc-btn-wa,
  .cta-oc-btn-call {
    width: 100%;
    justify-content: center;
  }
}

/* ── FAQ CENTRE ALIGN ── */
#about-faq .faq-list {
  max-width: 820px;
  margin: 0 auto;
}
