/* Deepam Cabs — airport round-trip landing (bangalore-airport-taxi-round-trip.html) */

.airport-round-trip-page .hero.hero--airport-round-trip {
  min-height: clamp(280px, 42vh, 420px);
}

.airport-round-trip-page .airport-fare-note {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted, #5c6470);
}

.airport-round-trip-page .airport-content-prose {
  max-width: 48rem;
}

.airport-round-trip-page .airport-content-prose p + p {
  margin-top: 1rem;
}

.airport-round-trip-page .airport-content-prose a {
  color: var(--color-primary, #152736);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.airport-round-trip-page .round-trip-fare-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin: 1rem 0 0.5rem;
  font-size: 1.125rem;
}

.airport-round-trip-page .round-trip-fare-highlight strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary, #152736);
}

.airport-round-trip-page .area-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.airport-round-trip-page .area-links-grid a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--color-surface-alt, #f4f6f9);
  color: var(--color-primary, #152736);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.airport-round-trip-page .area-links-grid a:hover {
  background: #e8edf3;
  box-shadow: 0 1px 4px rgba(21, 39, 54, 0.08);
}

.airport-round-trip-page .related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.airport-round-trip-page .related-service-card {
  display: block;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.airport-round-trip-page .related-service-card:hover {
  border-color: var(--color-primary, #152736);
  box-shadow: 0 4px 16px rgba(21, 39, 54, 0.08);
}

.airport-round-trip-page .related-service-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.35rem;
  color: var(--color-primary, #152736);
}

.airport-round-trip-page .related-service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted, #5c6470);
}

.airport-round-trip-page .steps-list {
  counter-reset: round-trip-step;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  max-width: 40rem;
}

.airport-round-trip-page .steps-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
  counter-increment: round-trip-step;
}

.airport-round-trip-page .steps-list li::before {
  content: counter(round-trip-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-primary, #152736);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .airport-round-trip-page .hero.hero--airport-round-trip {
    min-height: 260px;
  }

  .airport-round-trip-page .area-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
