/* Sticky tab bar */
.city-tabs {
  position: sticky;
  top: 72px;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--sand-mid);
  padding: 0 6vw;
}

.city-tab {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.15rem 1.3rem;
  min-height: 44px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.city-tab:hover {
  color: var(--indigo);
}
.city-tab.active {
  color: var(--indigo-dark);
  border-bottom-color: var(--gold);
}

/* City panels */
.city-panels {
  padding: 60px 6vw 40px;
  background: var(--cream);
}

.city-panel {
  display: none;
}
.city-panel.active {
  display: block;
  animation: panelFade 0.45s ease;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* City hero image */
.city-hero {
  position: relative;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.city-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.city-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 29, 63, 0.3), rgba(17, 29, 63, 0.75));
}
.city-hero h2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 0 1.5rem;
}

.city-neighborhoods {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: -1.6rem 0 2.6rem;
  text-align: center;
}
.city-neighborhoods strong {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

/* Listings: mosques + halal markets */
.city-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.listing-header {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--indigo-dark);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
}

.place-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 0.9rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.place-card:hover {
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
  transform: translateY(-2px);
}

.place-card h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--indigo-dark);
  margin-bottom: 0.3rem;
}
.place-address {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}
.place-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 0.25rem;
}
.place-directions {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.2s ease;
}
.place-directions:hover {
  color: var(--gold);
}

/* Community note */
.community-note {
  background: var(--sand);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2.2rem 2.5rem;
  margin: 3rem 0;
}
.community-note p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--indigo);
  line-height: 1.6;
}

/* City WhatsApp CTA */
.city-wa-box {
  background: var(--indigo);
  border-radius: 4px;
  padding: 2.6rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.city-wa-box p {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--sand);
  line-height: 1.4;
  max-width: 560px;
}

/* Community photo callout */
.community-photo-box-wrap {
  background: var(--cream);
  padding-top: 20px;
  padding-bottom: 20px;
}

.community-photo-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--indigo);
  border-radius: 4px;
  overflow: hidden;
}
.community-photo-box img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.community-photo-text {
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.community-photo-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  color: var(--sand);
  line-height: 1.2;
}
.community-photo-text p:not(.section-eyebrow) {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.7);
  line-height: 1.75;
}
.community-photo-text .section-eyebrow {
  margin-bottom: 0;
}
.community-photo-text .btn-primary {
  margin-top: 0.6rem;
}

/* Bottom callout (city not listed) */
.cities-callout {
  background: var(--cream);
  padding-top: 40px;
}
.cities-callout-inner {
  background: var(--sand-mid);
  border-radius: 4px;
  padding: 3.2rem 3rem;
  text-align: center;
}
.cities-callout-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--indigo-dark);
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cities-callout-inner p {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.cities-callout-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
