/* City landing pages — premium layout (matches 19cabs.com homepage) */

.city-page {
  --city-accent: #ffcc00;
  --city-accent-dim: rgba(255, 204, 0, 0.14);
}

/* Language suggestion banner — fixed directly under nav (no body padding gap) */
.city-lang-suggest {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.75rem 3rem 0.75rem 1.25rem;
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.28), rgba(255, 180, 0, 0.12));
  border-bottom: 1px solid rgba(255, 204, 0, 0.4);
  position: fixed;
  top: calc(var(--city-nav-offset, var(--nav-h, 68px)) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 190;
}

body.city-page main#main-content {
  padding-top: calc(
    var(--city-nav-offset, var(--nav-h, 68px)) + env(safe-area-inset-top, 0px) +
      var(--city-lang-bar-offset, 0px)
  );
}

.city-lang-suggest.is-hidden {
  display: none;
}

.city-lang-suggest__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.city-lang-suggest__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.city-lang-suggest__close {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.65;
  color: inherit;
  padding: 0.25rem;
}

.city-lang-suggest__close:hover {
  opacity: 1;
}

html[data-theme="light"] .city-lang-suggest {
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.45), rgba(255, 200, 0, 0.2));
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Hero */
.city-hero {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}

.city-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255, 204, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 60%, rgba(255, 180, 0, 0.08), transparent 50%);
  pointer-events: none;
}

.city-hero__grid {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.city-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}

.city-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  max-width: 38ch;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.city-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.city-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.city-hero__note {
  font-size: 0.88rem;
  opacity: 0.72;
  max-width: 44ch;
  margin: 0;
}

.city-hero__device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.city-hero__glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.35), transparent 68%);
  filter: blur(24px);
}

.city-hero__phone {
  position: relative;
  width: min(280px, 88%);
  height: auto;
  border-radius: 2rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Live app mock — city-specific pickup/drop */
.city-hero-mock {
  position: relative;
  width: min(280px, 88%);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #fafafa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.city-hero-mock__screen {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  color: #000;
}

.city-hero-mock__map {
  position: relative;
  height: 168px;
  background: #dde3ea;
  overflow: hidden;
}

.city-hero-mock__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
  display: block;
}

.city-hero-mock__route-glow {
  position: absolute;
  left: 16%;
  top: 44%;
  width: 62%;
  height: 8px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  transform: rotate(-14deg);
  filter: blur(3px);
}

.city-hero-mock__route {
  position: absolute;
  left: 18%;
  top: 46%;
  width: 58%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transform: rotate(-14deg);
}

.city-hero-mock__bubble {
  position: absolute;
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: calc(100% - 16px);
}

.city-hero-mock__bubble--pickup {
  left: 8px;
  top: 24px;
}

.city-hero-mock__bubble--drop {
  left: 8px;
  top: 72px;
}

.city-hero-mock__bubble-badge {
  width: 34px;
  background: #f5c400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  padding: 4px 0;
  flex-shrink: 0;
}

.city-hero-mock__bubble-badge span:first-child {
  font-size: 16px;
}

.city-hero-mock__bubble-badge span:last-child {
  font-size: 7px;
  letter-spacing: 0.04em;
}

.city-hero-mock__bubble-body {
  padding: 5px 8px;
  min-width: 0;
}

.city-hero-mock__bubble-label {
  font-size: 8px;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.city-hero-mock__bubble-addr {
  font-size: 10px;
  font-weight: 600;
  color: #000;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.city-hero-mock__sheet {
  padding: 10px 12px 12px;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

.city-hero-mock__loc-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.city-hero-mock__loc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid #ebebeb;
}

.city-hero-mock__loc-row:last-child {
  border-bottom: none;
}

.city-hero-mock__loc-gutter {
  width: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.city-hero-mock__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}

.city-hero-mock__dot--drop {
  border-radius: 2px;
  background: #545454;
}

.city-hero-mock__line {
  width: 2px;
  height: 14px;
  background: #e0e0e0;
  margin: 2px 0;
}

.city-hero-mock__loc-label {
  font-size: 9px;
  color: #6e6e6e;
  font-weight: 500;
}

.city-hero-mock__loc-value {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-hero-mock__vehicles {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.city-hero-mock__vehicle {
  flex: 1;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 6px 4px;
  text-align: center;
  background: #f3f3f3;
}

.city-hero-mock__vehicle--on {
  background: #fff;
  border-color: #000;
  box-shadow: 0 0 0 1px #000 inset;
}

.city-hero-mock__vehicle-icon {
  font-size: 16px;
  line-height: 1;
}

.city-hero-mock__vehicle-name {
  font-size: 9px;
  font-weight: 700;
  margin-top: 2px;
}

.city-hero-mock__vehicle-fare {
  font-size: 8px;
  color: #545454;
  margin-top: 1px;
  font-weight: 600;
}

.city-hero-mock__cta {
  margin-top: 10px;
  background: #f5c400;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
}

html[data-theme="light"] .city-hero-mock {
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .city-hero__phone {
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Services grid */
.city-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-service-card {
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius, 16px) + 2px);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.city-service-card:hover {
  transform: translateY(-2px);
}

.city-service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--city-accent-dim);
  color: var(--city-accent, #ffcc00);
}

.city-service-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.city-service-card__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.88;
}

/* Landmarks */
.city-landmarks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-landmark-pill {
  padding: 1rem 1.1rem;
  border-radius: var(--radius, 16px);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.city-landmark-pill strong {
  font-size: 0.98rem;
}

.city-landmark-pill span {
  font-size: 0.85rem;
  opacity: 0.78;
  line-height: 1.45;
}

/* Airports, railway stations, colleges — SEO POI lists */
.city-pois__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-pois__block {
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid var(--uber-gray-200, #e2e2e2);
  border-radius: calc(var(--uber-radius-lg, 12px) + 2px);
  background: #fff;
}

.city-pois__heading {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
}

.city-pois__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 28rem;
  overflow: auto;
}

.city-poi-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.city-poi-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.city-poi-item strong {
  font-size: 0.88rem;
  line-height: 1.35;
  color: #111;
}

.city-poi-item span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--uber-gray-600, #6b6b6b);
}

.city-pois__seo-text {
  max-width: 1120px;
  margin: 1rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--uber-gray-600, #6b6b6b);
  opacity: 0.85;
}

@media (max-width: 960px) {
  .city-pois__grid {
    grid-template-columns: 1fr;
  }

  .city-pois__list {
    max-height: none;
  }
}

/* POI image cards — airports, stations, temples (Wikimedia CC) */
.city-poi-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
}

.city-poi-gallery--transport {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.city-poi-gallery--religious {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.city-poi-card {
  overflow: hidden;
  border: 1px solid var(--uber-gray-200, #e2e2e2);
  border-radius: calc(var(--uber-radius-lg, 12px) + 2px);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.city-poi-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--uber-gray-100, #f3f3f3);
}

.city-poi-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-poi-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.city-poi-card--text .city-poi-card__body {
  padding: 1.15rem 1.1rem 1.25rem;
}

.city-poi-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #111;
}

.city-poi-card__sub {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--uber-gray-600, #6b6b6b);
}

.city-poi-card__credit {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--uber-gray-600, #6b6b6b);
  opacity: 0.85;
}

.city-poi-card__credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.city-religious .section-intro {
  margin-bottom: 0.25rem;
}

.city-areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.65rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-area-pill {
  padding: 0.85rem 1rem;
  border-radius: var(--radius, 14px);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.city-area-pill strong {
  font-size: 0.92rem;
}

.city-area-pill span {
  font-size: 0.78rem;
  opacity: 0.75;
  line-height: 1.4;
}

a.city-area-pill--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

a.city-area-pill--link:hover,
a.city-area-pill--link:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent, #c8f542) 40%, transparent);
}

.city-areas__routes-link {
  max-width: 1120px;
  margin: 1rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.95rem;
}

.city-areas__routes-link a {
  font-weight: 600;
}

/* Route pages — area-to-area mesh */
.city-route-mesh__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-route-mesh__grid--index {
  margin-top: 1.5rem;
}

.city-route-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius, 14px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}

.city-route-link:hover,
.city-route-link:focus-visible {
  transform: translateY(-2px);
}

.city-route-link__from,
.city-route-link__to {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.city-route-link__arrow {
  opacity: 0.55;
  flex-shrink: 0;
}

.city-route-mesh__more {
  max-width: 1120px;
  margin: 1.25rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.95rem;
}

.city-route-mesh__more a {
  font-weight: 600;
}

.city-route-hero__endpoints {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  border-radius: var(--radius, 14px);
  flex-wrap: wrap;
}

.city-route-hero__point {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.city-route-hero__label {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.city-route-hero__arrow {
  font-size: 1.25rem;
  opacity: 0.5;
}

.city-route-index {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.city-route-seo .lead {
  margin-bottom: 0.75rem;
}

.city-areas__seo-text {
  max-width: 1120px;
  margin: 1rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  line-height: 1.55;
  opacity: 0.55;
}

/* Why grid */
.city-unique__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-unique-card {
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius, 16px) + 2px);
}

.city-unique-card--accent {
  border: 1px solid color-mix(in srgb, var(--accent, #c8f542) 35%, transparent);
}

.city-unique-card--wide {
  grid-column: span 3;
}

.city-unique-card--bike {
  background: color-mix(in srgb, var(--accent, #c8f542) 6%, transparent);
}

.city-unique-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.city-unique-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.88;
}

.city-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-why-card {
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius, 16px) + 2px);
}

.city-why-card--wide {
  grid-column: span 3;
}

.city-why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.city-why-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.88;
}

/* Download */
.city-download {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.city-download .download-intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.city-download__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--uber-gray-200, #e2e2e2);
  border-radius: calc(var(--uber-radius-lg, 12px) + 4px);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.city-download__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.15rem, 2.5vw, 1.75rem);
  min-height: 100%;
}

.city-download__col--rider {
  border-right: 1px solid var(--uber-gray-200, #e2e2e2);
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.1) 0%, #fff 42%);
}

.city-download__col--driver {
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.city-download__col-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.city-download__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.city-download__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.city-download__icon--rider {
  color: #14110a;
  background: var(--city-accent, #ffcc00);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.35);
}

.city-download__icon--driver {
  color: #fff;
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.city-download__col-copy {
  max-width: 22rem;
}

.city-download__col .download-label {
  display: block;
  margin: 0 0 0.35rem;
}

.city-download__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display, var(--font-ui));
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #000;
}

.city-download__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--uber-gray-600, #6b6b6b);
}

.city-download__stores {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  width: 100%;
  max-width: 19.5rem;
}

.city-download__stores--single {
  max-width: 15.5rem;
}

.city-download__stores .store-badge-mega {
  width: 100%;
  justify-content: flex-start;
  box-sizing: border-box;
}

@media (min-width: 720px) {
  .city-download__col--rider .city-download__stores:not(.city-download__stores--single) {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .city-download__col--rider .city-download__stores .store-badge-mega {
    flex: 1 1 11.5rem;
    min-width: 11.5rem;
    max-width: calc(50% - 0.35rem);
  }
}

@media (max-width: 720px) {
  .city-download__panel {
    grid-template-columns: 1fr;
  }

  .city-download__col--rider {
    border-right: none;
    border-bottom: 1px solid var(--uber-gray-200, #e2e2e2);
  }
}

/* Nearby + directory */
.city-nearby__grid,
.city-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.6rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-nearby__grid a,
.city-directory__grid a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.city-nearby__grid a:hover,
.city-directory__grid a:hover {
  border-color: var(--city-accent);
  background: var(--city-accent-dim);
}

/* Homepage city chips */
.city-chips--linked {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.city-chips--linked .chip {
  text-decoration: none;
  color: inherit;
}

.city-chips--linked .chip--city {
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
}

/* Sticky CTA */
.city-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .city-hero__grid {
    grid-template-columns: 1fr;
  }

  .city-hero__device {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .city-hero-mock {
    width: min(220px, 72%);
  }

  .city-why__grid {
    grid-template-columns: 1fr;
  }

  .city-unique__grid {
    grid-template-columns: 1fr;
  }

  .city-why-card--wide {
    grid-column: span 1;
  }

  .city-unique-card--wide {
    grid-column: span 1;
  }

  .city-sticky-cta {
    display: flex;
    justify-content: center;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  }

  .city-sticky-cta .btn {
    width: 100%;
    max-width: 420px;
  }
}

/* Homepage geo banner */
.city-geo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.22), rgba(255, 180, 0, 0.1));
  border-bottom: 1px solid rgba(255, 204, 0, 0.35);
  position: relative;
  z-index: 40;
}

.city-geo-banner.is-hidden {
  display: none;
}

.city-geo-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.city-geo-banner__city {
  font-weight: 700;
}

.city-geo-banner__cta {
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.city-geo-banner__dismiss {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  opacity: 0.7;
}

html[data-theme="light"] .city-geo-banner {
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.35), rgba(255, 200, 0, 0.15));
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 720px) {
  .city-geo-banner {
    padding-right: 2.5rem;
  }
}

/* Breadcrumb + SEO authority (crawlable local keywords) */
.city-breadcrumb {
  max-width: var(--content-max, 72rem);
  margin: 0 auto;
  padding: 0.35rem 1.25rem 0;
}

.city-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.55));
}

.city-breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.city-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.city-breadcrumb a:hover {
  text-decoration: underline;
}

.city-seo-authority__inner {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.city-seo-authority__sub {
  margin-top: 1.5rem;
  font-size: 1rem;
}

.city-seo-queries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.city-seo-query {
  font-size: 0.8125rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

html[data-theme="light"] .city-seo-query {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Patna intercity — one-way Bihar promotion */
.chip-intercity {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.35), rgba(255, 160, 0, 0.2));
  border: 1px solid rgba(255, 204, 0, 0.45);
  font-weight: 700;
}

.city-intercity__inner {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.5rem;
}

.city-intercity__lead strong {
  color: var(--accent, #f5c400);
}

.city-intercity__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .city-intercity__highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.city-intercity__highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .city-intercity__highlight {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

.city-intercity__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  background: #f5c400;
  color: #000;
}

.city-intercity__highlight strong {
  display: block;
  margin-bottom: 0.25rem;
}

.city-intercity__highlight p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.45;
}

.city-intercity__dest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.city-intercity-dest {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

html[data-theme="light"] .city-intercity-dest {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.city-intercity-dest__arrow {
  opacity: 0.55;
}

.city-intercity-dest__tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 204, 0, 0.25);
  color: inherit;
}

.city-intercity__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.city-intercity__note {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.75;
  max-width: 52ch;
}

.city-intercity__groups-wrap {
  display: grid;
  gap: 1.25rem;
}

.city-intercity__group-title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.9;
}

.city-intercity__name-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.city-intercity-name {
  font-size: 0.8125rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .city-intercity-name {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.city-intercity__seo-names {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .city-intercity__seo-names {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.city-intercity__seo-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.city-intercity__seo-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Patna promo — trust & airport/railway (RodBez-style service depth) */
.city-services__grid--promo {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.city-promo-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-promo-trust-card {
  padding: 1.15rem 1.25rem;
}

.city-promo-trust-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.city-promo-trust-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.45;
}

.city-promo-transfer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.city-promo-transfer-card {
  padding: 1.35rem 1.5rem;
}

.city-promo-transfer-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 204, 0, 0.25);
  margin-bottom: 0.6rem;
}

.city-promo-transfer-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.city-promo-transfer-card p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.5;
}

.city-promo-transfer__note {
  max-width: 52rem;
  margin: 1.25rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.88;
}

.city-promo-transfer__cta {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 1.25rem;
}
