/* Base layout for this page */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: #111827;
}

a:hover {
  text-decoration: underline;
}

.page-wrap.kontakt-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 16px 52px;
}

/* GENERAL WRAPPER */
.kontakt-wrap {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* HERO */
.kontakt-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.kontakt-title {
  font-size: 2.1rem;
  margin: 0 0 12px;
  color: #0f172a;
}

.kontakt-text {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.65;
}

/* smaller text inside cards */
.kontakt-text-small {
  margin-top: 6px;
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
}

.kontakt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kontakt-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 0.82rem;
}

/* HERO CARD */
.kontakt-hero-card {
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 20px 22px 18px;
  color: #e5e7eb;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.45);
}

.kontakt-hero-card h2 {
  font-size: 1.04rem;
  margin: 0 0 8px;
  color: #c7d2fe;
}

.kontakt-hero-card p {
  font-size: 0.9rem;
  margin: 0 0 10px;
  color: #e2e8f0;
}

.kontakt-hero-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.kontakt-hero-note {
  margin-top: 12px;
}

.kontakt-hero-link {
  font-size: 0.9rem;
  color: #fbbf24;
  text-decoration: none;
}

.kontakt-hero-link:hover {
  text-decoration: underline;
}

/* BUTTONS (PILLS) */
.btn-pill-primary,
.btn-pill-secondary {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pill-primary {
  background: #ff6b00;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-pill-secondary {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-weight: 500;
}

/* specific button on right column */
.kontakt-track-btn {
  margin-top: 6px;
}

/* MAIN CONTACT GRID */
.kontakt-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr);
  gap: 26px;
}

/* Left & Right columns */
.kontakt-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.kontakt-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARDS */
.kontakt-card {
  border-radius: 20px;
  background: #ffffff;
  padding: 22px 24px 18px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  border: 1px solid #e5e7eb;
}

.kontakt-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kontakt-card p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
}

/* LISTS */
.kontakt-list {
  padding-left: 16px;
  font-size: 0.92rem;
  color: #4b5563;
  margin: 0 0 8px;
}

.kontakt-list li {
  margin-bottom: 6px;
}

/* Special contact list links (phone & email) */
.kontakt-list-contacts a {
  color: #ff6b00;
  text-decoration: none;
}

.kontakt-list-contacts a:hover {
  text-decoration: underline;
}

/* Open hours list spacing */
.kontakt-list-open {
  margin-top: 6px;
}

/* MINI LINKS */
.kontakt-mini-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.84rem;
  margin-top: 10px;
}

.kontakt-mini-links a {
  color: #111827;
  text-decoration: none;
}

.kontakt-mini-links a:hover {
  color: #ff6b00;
}

/* MAP */
.kontakt-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.kontakt-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .kontakt-hero-row {
    grid-template-columns: 1fr;
  }

  .kontakt-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-wrap.kontakt-page {
    padding-top: 100px;
  }
}
