/* =========================================================
   CITY PAGE LAYOUT
========================================================= */

.city-page {
  margin-top: 9rem;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   HERO
========================================================= */

.city-hero {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s ease forwards;
}

.city-hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--heading);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.city-hero p {
  max-width: 650px;
  margin: 1rem auto 0;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================================
   INFO GRID
========================================================= */

.city-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* =========================================================
   GLASS CARD
========================================================= */

.city-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.city-info-grid .city-card:nth-child(1) {
  animation-delay: 0.2s;
}

.city-info-grid .city-card:nth-child(2) {
  animation-delay: 0.35s;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.city-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--heading);
}

.city-card p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* =========================================================
   MAP
========================================================= */

.map-container iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 14px;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.city-contact {
  margin-bottom: 4rem;
}

.city-contact .city-card {
  animation-delay: 0.5s;
}

/* FORM */
.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-main);
}

.contact-form textarea {
  resize: vertical;
}

/* BUTTON */
.contact-form button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 14px;
  border: none;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(207, 51, 62, 0.3);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .city-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .city-page {
    margin-top: 7rem;
  }

  .city-card {
    padding: 2rem 1.8rem;
  }
}
/* ACTIVE / FOCUS FORM FIELD */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(207, 51, 62, 0.15);
  background: #ffffff;
}
