/* Deepam Cabs — Outstation one-way cab landing */

.oneway-fare-lead {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary);
}

.oneway-fare-lead strong {
  color: var(--green-dark);
}

.oneway-fare-lead__meta {
  display: block;
  margin-top: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}

.oneway-fare-note {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.trip-type-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.trip-type-card {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.trip-type-card--featured {
  border-color: rgba(57, 181, 74, 0.45);
  background: rgba(57, 181, 74, 0.06);
}

.trip-type-card h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.trip-type-card p {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.trip-type-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

.trip-type-card__link:hover {
  text-decoration: underline;
}

.content-prose h2 {
  margin: 2rem 0 1rem;
  font-size: 1.375rem;
  color: var(--primary);
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose p,
.content-prose li {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
}

.content-prose ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.content-prose .promo-note {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #b91c1c;
  font-size: 0.9375rem;
  font-weight: 600;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.benefit-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(57, 181, 74, 0.15);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.benefit-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
}

.benefit-list span {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.oneway-cta {
  text-align: center;
}

.hero__roundtrip-note {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.hero__roundtrip-note a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.hero__roundtrip-note a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .trip-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
