/* Contact card + swisstopo map. Used on /kontakt. */

.contact-page {
  max-width: 72rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.contact-card {
  background: var(--steel, #1c1c1e);
  border: 1px solid rgba(255, 209, 0, 0.16);
  border-radius: 18px;
  padding: 1.75rem;
}

.contact-card h2,
.contact-card h3 {
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--yellow, #ffd100);
}

.contact-card .company {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text, #f2f2f4);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.75rem 1.1rem;
  align-items: baseline;
  font-size: 0.98rem;
  margin: 0;
  color: rgba(242, 242, 244, 0.88);
}

.contact-list span {
  color: var(--muted, #9a9aa3);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-list a,
.legal-page .contact-list a {
  color: var(--text, #f2f2f4);
  font-weight: 600;
}

.contact-list a:hover,
.legal-page .contact-list a:hover {
  color: var(--yellow, #ffd100);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 209, 0, 0.1);
  border: 1px solid rgba(255, 209, 0, 0.25);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow, #ffd100);
}

.socials a:hover {
  background: rgba(255, 209, 0, 0.18);
  border-color: var(--yellow, #ffd100);
}

.socials a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 380px;
  height: 100%;
  background: #1a1a1a;
  position: relative;
}

#satmap {
  width: 100%;
  min-height: 380px;
  height: 100%;
  background: #1a1a1a;
  z-index: 0;
}

.map-embed .leaflet-control-attribution {
  background: rgba(10, 10, 10, 0.72) !important;
  color: #c8c8cc !important;
  font-size: 11px;
}

.map-embed .leaflet-control-attribution a {
  color: var(--yellow, #ffd100) !important;
}

.map-embed .leaflet-control-zoom {
  border: 1px solid #2a2a2e !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin: 0 0 14px 12px !important;
  background: #1a1a1a !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.map-embed .leaflet-control-zoom a {
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  background: #1a1a1a !important;
  color: #f2f2f4 !important;
  border: 0 !important;
  font-size: 18px !important;
}

.map-embed .leaflet-control-zoom a:first-child {
  border-bottom: 1px solid #2a2a2e !important;
}

.map-embed .leaflet-control-zoom a:hover {
  background: #2a2a2e !important;
  color: #ffd100 !important;
}

.map-route-btn {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: #ffd100 !important;
  color: #0a0a0a !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  text-decoration: none !important;
}

.map-route-btn:hover {
  background: #ffe566 !important;
  transform: translateX(-50%) translateY(-2px);
  color: #0a0a0a !important;
}

.map-pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffd100;
  border: 3px solid #0a0a0a;
  box-shadow: 0 0 0 2px #ffd100, 0 4px 12px rgba(0, 0, 0, 0.5);
}
