/* ----------------------------
   CONTACT HERO
----------------------------- */

.page-hero--contact {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  padding: 4.5rem 0;
  color: #f9fafb;
  overflow: hidden;
}

.page-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.05);
  z-index: -2;
}

.page-hero--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.25), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  z-index: -1;
}

.page-hero--contact .page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 180px;
    align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero--contact .page-hero__text {
  max-width: 40rem;
}

@media (max-width: 640px) {
  .page-hero--contact {
    padding: 3.5rem 0 3.25rem;
  }

  .page-hero--contact .page-hero__inner {
    padding: 0 1.25rem;
  }
}

/* ----------------------------
   CONTACT SIDE / MAP CARD
----------------------------- */

.card--contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list--contact {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.list--contact li + li {
  margin-top: 0.25rem;
}

/* Map card */

.map-card {
  border-radius: 1.5rem;
  padding: 1rem 1rem 1.1rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.9);
}

.map-card__header {
  margin-bottom: 0.6rem;
}

.map-card__title {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
}

.map-card__subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.map-card__map {
  position: relative;
  margin-top: 0.6rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #020617;
  height: 260px;
}

.map-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-card__footer {
  margin-top: 0.6rem;
  display: flex;
  justify-content: flex-end;
}

.map-card__link {
  font-size: 0.85rem;
  color: #a5b4fc;
  text-decoration: none;
}
.map-card__link:hover {
  text-decoration: underline;
}

.split {
    margin-top: 2vh;
}
/* Split tweaks on smaller screens (optional) */
@media (max-width: 800px) {
  .split {
    flex-direction: column;
    gap: 1.5rem;
  }
}
