/* =========================
   CITY PAGE BASE
========================= */

.cityPG {
  min-height: 100vh;
}

/* =========================
   HERO SECTION
========================= */

.cityHero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.cityHeroOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 45, 0.55);
  z-index: 0;
}

.cityHeroInner {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
}

.cityBadge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 900;
  color: #00ccb7;
  margin-bottom: 1rem;
}

.cityHero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1;
  font-weight: 950;
  margin-bottom: 1.2rem;
}

.cityHero p {
  max-width: 720px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* HERO BUTTONS */
.cityHeroButtons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btnPrimary {
  background: #00ccb7;
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.btnGhost {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

/* =========================
   FACTS SECTION
========================= */

.cityFacts {
  padding: 3rem 0;
}

.cityFactsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.cityFact {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.6rem;
  text-align: center;
}

.cityFact h3 {
  color: #00ccb7;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.cityFact p {
  color: var(--gray);
  font-weight: 700;
}

/* =========================
   ABOUT SECTION
========================= */

.cityAbout,
.cityHighlights,
.cityActivities {
  padding: 4rem 0;
}

.cityTwoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cityTwoCol img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.cityTwoCol h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
  color: #14384a;
  margin-bottom: 1rem;
}

.cityTwoCol p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* LIST */
.cityList {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.cityList li {
  margin-bottom: 0.5rem;
  color: var(--gray);
}

/* =========================
   SECTION HEAD
========================= */

.sectionHead {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.cityLabel {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 900;
  color: #00ccb7;
  margin-bottom: 1rem;
}

/* =========================
   CARDS GRID (FIXED)
========================= */

.cityCardGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.cityGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

/* CITY CARDS */
.cityCard {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.3s;
}

.cityCard:hover {
  transform: translateY(-6px);
}

.cityCard img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cityCard h3 {
  padding: 1rem 1rem 0.5rem;
  color: #14384a;
}

.cityCard p {
  padding: 0 1rem 1.2rem;
  color: var(--gray);
}

/* =========================
   MAP STRIP (UNIQUE FEATURE)
========================= */

.cityNote {
  text-align: center;
  padding: 3rem 0;
}

.cityNote .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cityNote p {
  max-width: 600px;
  color: var(--gray);
  line-height: 1.6;
}

.cityNoteLabel {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 900;
  color: #00ccb7;
  align-items: center !important;
}

.cityNoteBtn {
  background: #00ccb7;
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  align-items: center;
}


/* =========================
   MINI BUTTONS (ACTIVITIES)
========================= */

.cityMiniGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cityMiniCard {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
  color: #14384a;
  transition: 0.3s;
}

.cityMiniCard:hover {
  background: #00ccb7;
  color: white;
  transform: translateY(-6px);
}

.cityActivitiesInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {

  .cityFactsGrid,
  .cityCardGrid,
  .cityGrid,
  .cityMiniGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cityTwoCol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .cityHero {
    min-height: 520px;
  }

  .cityHero p {
    font-size: 1rem;
  }

  .cityFactsGrid,
  .cityCardGrid,
  .cityGrid,
  .cityMiniGrid {
    grid-template-columns: 1fr;
  }

  .cityTwoCol img {
    height: 280px;
  }
}