:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(190, 24, 93, 0.08);
  --shadow-lg: 0 12px 40px rgba(190, 24, 93, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--slate-50);
}

.container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* Hero */
.hero {
  background: linear-gradient(145deg, #c45c38 0%, #a8483a 38%, var(--pink-800) 78%, #6b1d3a 100%);
  color: #fff;
  padding: 3.5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero__blob--1 {
  width: 22rem;
  height: 22rem;
  top: -7rem;
  right: -5rem;
  background: radial-gradient(circle, rgba(196, 92, 56, 0.55) 0%, rgba(139, 58, 42, 0.22) 55%, transparent 70%);
  animation: terracotta-drift 16s ease-in-out infinite;
}

.hero__blob--2 {
  width: 16rem;
  height: 16rem;
  bottom: -6rem;
  left: -3rem;
  background: radial-gradient(circle, rgba(168, 72, 50, 0.5) 0%, rgba(107, 40, 32, 0.2) 60%, transparent 72%);
  animation: terracotta-drift 20s ease-in-out infinite reverse;
}

.hero__blob--3 {
  width: 10rem;
  height: 10rem;
  top: 38%;
  right: 18%;
  background: radial-gradient(circle, rgba(176, 80, 48, 0.42) 0%, rgba(122, 48, 38, 0.16) 65%, transparent 75%);
  animation: terracotta-float 12s ease-in-out infinite;
}

.hero__ring {
  position: absolute;
  width: 14rem;
  height: 14rem;
  top: -3rem;
  left: 28%;
  border: 2px solid rgba(196, 92, 56, 0.35);
  border-radius: 50%;
  animation: terracotta-spin 28s linear infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 85%, rgba(139, 58, 42, 0.22) 0%, transparent 48%),
    radial-gradient(circle at 88% 12%, rgba(168, 72, 50, 0.2) 0%, transparent 42%);
  pointer-events: none;
  z-index: 0;
}

@keyframes terracotta-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 14px) scale(1.06); }
}

@keyframes terracotta-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(12px, -16px); opacity: 1; }
}

@keyframes terracotta-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lang-toggle {
  align-self: flex-end;
  display: flex;
  gap: 0.25rem;
  background: rgba(255,255,255,0.14);
  padding: 0.2rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lang-toggle__btn {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-toggle__btn.is-active {
  background: #fff;
  color: var(--pink-800);
}

html[lang="bn"] body {
  font-family: "Noto Sans Bengali", "DM Sans", system-ui, sans-serif;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__tagline {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  opacity: 0.92;
  max-width: 36ch;
}

.hero__cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--pink-800);
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  animation: hero-cta-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(236, 72, 153, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: hero-cta-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}

.hero__cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  animation: none;
}

.hero__cta:hover::after {
  animation: none;
}

.hero__cta:active {
  transform: translateY(0) scale(0.97);
}

.hero__cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@keyframes hero-cta-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(255, 255, 255, 0.55);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26), 0 0 0 10px rgba(255, 255, 255, 0);
    transform: scale(1.04);
  }
}

@keyframes hero-cta-shine {
  0%, 45% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.12);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  min-width: 7rem;
  backdrop-filter: blur(4px);
}

.stat__value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat__label {
  font-size: 0.8125rem;
  opacity: 0.85;
}

/* About */
.about {
  padding: 1.5rem 0 2rem;
}

.about p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 70ch;
}

.about strong {
  color: var(--pink-700);
  font-weight: 600;
}

/* Routes section */
.routes-section {
  padding: 2rem 0 3rem;
  scroll-margin-top: 1rem;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
}

.section-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
}

.header-search {
  display: flex;
  align-items: center;
}

.search-toggle,
.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.search-toggle {
  gap: 0.3rem;
  min-width: 2.25rem;
  height: 2.2rem;
  padding: 0 0.7rem 0 0.55rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(190, 24, 93, 0.32);
  animation: search-pulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-toggle svg {
  width: 1rem;
  height: 1rem;
  animation: search-icon-nudge 2.2s ease-in-out infinite;
}

.search-toggle:hover {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  box-shadow: 0 10px 24px rgba(190, 24, 93, 0.5);
  transform: translateY(-2px) scale(1.04);
  animation: none;
}

.search-toggle:hover svg {
  animation: search-icon-spin 0.55s ease;
}

.search-toggle:active {
  transform: translateY(0) scale(0.96);
}

.search-toggle:focus-visible {
  outline: 3px solid rgba(236, 72, 153, 0.45);
  outline-offset: 3px;
}

.search-toggle[aria-expanded="true"] {
  background: var(--pink-800);
  box-shadow: 0 0 0 3px var(--pink-200);
  animation: none;
}

.search-toggle[aria-expanded="true"] svg {
  animation: none;
}

@keyframes search-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(190, 24, 93, 0.32);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.5);
    transform: scale(1.03);
  }
}

@keyframes search-icon-nudge {
  0%, 70%, 100% { transform: rotate(0deg) scale(1); }
  78% { transform: rotate(-12deg) scale(1.08); }
  86% { transform: rotate(10deg) scale(1.08); }
  94% { transform: rotate(-4deg) scale(1.02); }
}

@keyframes search-icon-spin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(20deg) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .search-toggle,
  .search-toggle svg,
  .search-toggle:hover svg,
  .hero__cta,
  .hero__cta::after,
  .hero__blob,
  .hero__ring {
    animation: none;
  }
}

.search-submit {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--pink-700);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 999px;
}

.search-submit svg {
  width: 1.1rem;
  height: 1.1rem;
}

.search-submit:hover {
  background: var(--pink-100);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.45);
}

.search-overlay[hidden] {
  display: none;
}

.search-bubble {
  width: min(380px, 100%);
  padding: 1.1rem 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.28);
}

.search-bubble__label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-700);
}

.search-bubble__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.filters {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto auto;
  gap: 0.85rem 0.75rem;
  align-items: end;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.filter-swap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.85rem;
  padding: 0;
  color: var(--pink-700);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 10px;
  cursor: pointer;
}

.filter-swap svg {
  width: 1.2rem;
  height: 1.2rem;
}

.filter-swap:hover {
  background: var(--pink-100);
}

.filter-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.4rem;
  padding: 0 0.85rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pink-700);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  cursor: pointer;
}

.filter-action svg {
  width: 1rem;
  height: 1rem;
}

.filter-action:hover {
  background: var(--pink-100);
}

.nearest-hint {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-700);
}

.nearest-hint[hidden] {
  display: none;
}

.combo__alt {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
}

.combo__group {
  padding: 0.45rem 0.7rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink-700);
}

.combo__list {
  max-height: 20rem;
}

.map-panel {
  margin: 0 0 1.25rem;
}

.map-panel[hidden] {
  display: none;
}

.map-panel__title {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: var(--slate-800);
}

.route-map {
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
  z-index: 1;
}

.fare__math {
  width: 100%;
  font-size: 0.78rem;
  color: var(--slate-600);
  line-height: 1.45;
}

.show-on-map {
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pink-700);
  cursor: pointer;
}

.show-on-map:hover {
  text-decoration: underline;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.filter-field__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-700);
}

.combo {
  width: 100%;
  position: relative;
}

.combo input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.combo__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 2.85rem;
  padding: 0 1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.combo__search svg {
  width: 1.1rem;
  height: 1.1rem;
}

.combo__search:hover {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
}

.combo__search:focus-visible {
  outline: 3px solid rgba(236, 72, 153, 0.35);
  outline-offset: 2px;
}

.combo input:focus,
#search:focus {
  outline: none;
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
  background-color: #fff;
}

.combo input::placeholder,
#search::placeholder {
  color: var(--slate-400);
}

.combo__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  max-height: 16rem;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.combo__option {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--slate-700);
  cursor: pointer;
}

.combo__option mark {
  background: var(--pink-100);
  color: var(--pink-800);
  font-weight: 600;
  padding: 0;
}

.combo__option[aria-selected="true"],
.combo__option:hover {
  background: var(--pink-50);
  color: var(--slate-800);
}

.combo__empty {
  padding: 0.7rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.filter-clear {
  height: 2.85rem;
  padding: 0 1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pink-700);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 10px;
  cursor: pointer;
}

.filter-clear:hover {
  background: var(--pink-100);
}

#search {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.9rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--slate-800);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 999px;
}

.results-hint {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pink-800);
  background: #fef08a;
  border: 1px solid #facc15;
  border-radius: 999px;
}

.results-hint[hidden] {
  display: none;
}

.results-hint mark {
  background: #fff;
  color: var(--pink-700);
  font-weight: 700;
  padding: 0.05em 0.35em;
  border-radius: 999px;
}

.results-hint--empty {
  color: #92400e;
  background: #ffedd5;
  border-color: #fdba74;
}

/* Route grid */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.route-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem 1.35rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.route-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.route-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--pink-100);
}

.route-card__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border-radius: 8px;
}

.route-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.35;
}

.route-card__meta {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.route-card__fare {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.7rem;
  margin: -0.35rem 0 1.1rem;
  padding: 0.7rem 0.85rem;
  background: var(--pink-50);
  border: 1px solid var(--pink-100);
  border-radius: 10px;
}

.fare__amount {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink-700);
}

.fare__detail,
.fare__full {
  font-size: 0.8125rem;
  color: var(--slate-600);
}

.fare__full {
  width: 100%;
  color: var(--slate-500);
}

.route-card__note {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--slate-600);
  background: var(--pink-50);
  border-left: 3px solid var(--pink-400);
  border-radius: 0 6px 6px 0;
}

/* Stop list */
.route-stops {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stop {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.35rem 0;
  position: relative;
}

.stop:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.1rem;
  bottom: -0.35rem;
  width: 2px;
  background: var(--pink-200);
}

.stop__dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--pink-300, #f9a8d4);
  border: 2px solid var(--pink-400);
  background: #fff;
}

.stop--start .stop__dot {
  background: var(--pink-500);
  border-color: var(--pink-600);
  box-shadow: 0 0 0 3px var(--pink-100);
}

.stop--end .stop__dot {
  background: var(--pink-700);
  border-color: var(--pink-800);
}

.stop__name {
  font-size: 0.9rem;
  color: var(--slate-700);
}

.stop--start .stop__name,
.stop--end .stop__name {
  font-weight: 600;
  color: var(--slate-800);
}

.stop--from .stop__dot,
.stop--to .stop__dot {
  background: var(--pink-600);
  border-color: var(--pink-700);
  box-shadow: 0 0 0 3px var(--pink-100);
}

.stop--from .stop__name,
.stop--to .stop__name {
  font-weight: 700;
  color: var(--pink-700);
}

.stop--via .stop__dot {
  background: var(--pink-200);
  border-color: var(--pink-400);
}

.stop--via .stop__name {
  color: var(--slate-800);
}

.stop--match .stop__dot {
  background: #fde68a;
  border-color: #f59e0b;
}

.route-card__title mark,
.stop__name mark,
.route-card__note mark {
  background: #fef08a;
  color: var(--pink-800);
  font-weight: 700;
  padding: 0 0.12em;
  border-radius: 3px;
}

/* Other cities */
.other-cities {
  padding: 2rem 0 3.5rem;
  background: var(--pink-50);
  border-top: 1px solid var(--pink-100);
}

.other-cities h2 {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
}

.city-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.city-card {
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.city-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--pink-700);
}

.city-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate-600);
}

/* Footer */
footer {
  padding: 1.75rem 0;
  background: var(--slate-800);
  color: var(--slate-400);
  font-size: 0.875rem;
}

footer p {
  margin: 0 0 0.35rem;
}

.footer-note {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.disclaimer {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--slate-400);
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem 3rem;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: center;
  }

  .filters {
    grid-template-columns: 1fr auto 1fr;
  }

  .combo__search,
  .filter-clear,
  .filter-actions {
    grid-column: 1 / -1;
  }
}

@media (min-width: 481px) and (max-width: 900px) {
  .filters {
    grid-template-columns: 1fr auto 1fr;
  }

  .combo__search,
  .filter-clear,
  .filter-actions {
    grid-column: 1 / -1;
  }
}

@media print {
  .hero,
  .filters,
  .header-search,
  .lang-toggle,
  .map-panel,
  .search-overlay,
  .filter-actions,
  .show-on-map,
  .other-cities {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .about,
  footer {
    page-break-inside: avoid;
  }

  .routes-section {
    padding: 0;
  }

  .route-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .results-hint {
    background: #fff;
    border: 1px solid #ccc;
  }
}
