.route-page .hero-section::after {
  background:
    linear-gradient(90deg, rgba(11, 16, 33, 0.86), rgba(10, 32, 68, 0.56) 42%, rgba(14, 16, 24, 0.78)),
    var(--route-hero-image, url("/assets/images/peshawar-1.jpg")) center / cover no-repeat;
}

.route-page section:not(.hero-section):not(.flight-quick-booking) {
  padding: 84px 0;
}

.route-page .soft {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f8ff 100%);
}

.route-page .grid,
.route-page .links,
.route-page .places,
.route-page .stats,
.route-page .table-cards {
  display: grid;
  gap: 1.3rem;
}

.route-page .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-page .links,
.route-page .table-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-page .places,
.route-page .stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-page .card,
.route-page .place,
.route-page .panel,
.route-page .stat,
.route-page .table-card {
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(23, 36, 66, 0.08);
}

.route-page .panel,
.route-page .stat {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.route-page .card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.route-page .table-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.route-page .place,
.route-page .panel {
  overflow: hidden;
}

.route-page .place img,
.route-page .panel img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.route-page .place img {
  aspect-ratio: 1 / 0.78;
}

.route-page .place div {
  padding: 1.1rem;
}

.route-page .panel img {
  aspect-ratio: 2 / 1;
}

.route-page .panel .body {
  padding: 1.5rem;
}

.route-page .badge,
.route-page .stat-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(46, 94, 170, 0.12);
  color: #2e5eaa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.route-page p,
.route-page li {
  line-height: 1.65;
}

.route-page .muted {
  color: var(--color-text-muted);
  text-align: center;
}

.route-page ul.clean,
.route-page ul.inline-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.route-page ul.clean li,
.route-page ul.inline-points li {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #f6faff;
  border: 1px solid rgba(46, 94, 170, 0.08);
}

.route-page ul.inline-points li {
  position: relative;
  padding-left: 2.8rem;
}

.route-page ul.inline-points li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2e5eaa;
  box-shadow: 0 0 0 6px rgba(46, 94, 170, 0.12);
}

.route-page .route-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.route-page .route-table th,
.route-page .route-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 42, 68, 0.09);
  vertical-align: top;
}

.route-page .route-table th {
  font-size: 0.95rem;
  color: var(--color-primary);
}

.route-page .price-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(252, 146, 70, 0.12);
  color: #a75316;
  font-weight: 800;
}

.route-page .contact-band,
.route-page .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.route-page .contact-band {
  margin-top: 1.2rem;
}

.route-page .contact-band a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #2e5eaa;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.route-page .table-card strong {
  display: block;
  color: var(--color-heading);
}

.route-page .faq-shell .faq-item,
.route-page .faq-question,
.route-page .faq-answer {
  text-align: center;
}

@media (max-width: 1100px) {

  .route-page .grid,
  .route-page .links,
  .route-page .places,
  .route-page .stats,
  .route-page .table-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {

  .route-page .grid,
  .route-page .links,
  .route-page .places,
  .route-page .stats,
  .route-page .table-cards {
    grid-template-columns: 1fr;
  }

  .route-page .route-table,
  .route-page .route-table tbody,
  .route-page .route-table tr,
  .route-page .route-table td {
    display: block;
    width: 100%;
  }

  .route-page .route-table thead {
    display: none;
  }

  .route-page .route-table tr {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(31, 42, 68, 0.09);
  }

  .route-page .route-table td {
    border: 0;
    padding: 0.35rem 0;
  }

  .route-page .route-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.15rem;
  }
}
