/* ================= CONTACT HERO ================= */

.contact-hero {
  text-align: center;
  padding: 3.25rem 1.5rem 2.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  color: var(--coral-red);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.5rem 0;
}

.hero-subtext {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ================= MAP ================= */

.map-wrapper {
  position: relative;
  margin-top: 0.5rem;
}

.world-map {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
  opacity: 0.9;
}

/* Marker base (future use) */
.map-marker {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--coral-red);
  border-radius: 50%;
  cursor: pointer;
}

.map-marker::after {
  content: attr(data-label);
  position: absolute;
  top: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.map-marker:hover::after {
  opacity: 1;
}

/* ================= CONTACT OPTIONS ================= */

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.contact-card {
  background: #ffffff;
  border: 1.5px solid #d1d5db; /* stronger border */
  border-radius: 18px;
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04); /* subtle lift */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 22px;
  height: 22px;
  display: block;
}


.contact-card h3 {
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/*.contact-link {
  color: var(--deep-blue);
  font-weight: 500;
}*/
.contact-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: var(--deep-blue);
  background: #ffffff;
}

.contact-button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: var(--deep-blue);
  background: #ffffff;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .world-map {
    max-width: 100%;
  }
}
