/* ── KONTAKT-GRID ──────────────────── */
.kontakt-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: stretch;
}

/* ── INFO-SEITE ────────────────────── */
.kontakt-info {
  display: flex; flex-direction: column;
}
.kontakt-info h2 {
  font-size: 1.4rem; font-weight: 800; margin-bottom: 20px;
}
.kontakt-info p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 24px;
}
.kontakt-details { list-style: none; margin-bottom: 20px; }
.kontakt-details li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.kontakt-details .kd-icon {
  font-size: 1.2rem; flex-shrink: 0; width: 28px; text-align: center; color: var(--green);
}
.kontakt-details .kd-icon .lucide { width: 22px; height: 22px; }
.kontakt-details a { color: var(--green); font-weight: 600; }
.kontakt-details strong { display: block; font-weight: 700; margin-bottom: 2px; }

.oeffnung {
  background: var(--green-light); border: 1.5px solid var(--green-mid);
  border-radius: 14px; padding: 20px 24px;
}
.oeffnung h3 {
  font-size: 0.9rem; font-weight: 700; margin-bottom: 10px;
}
.oeffnung p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0;
}

/* ── MAP ──────────────────────────── */
.kontakt-map {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.kontakt-map {
  flex-grow: 1;
}
.kontakt-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 0;
}

/* ── FORMULAR ──────────────────────── */
.kontakt-form {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 36px 32px;
}
.kontakt-form h2 {
  font-size: 1.2rem; font-weight: 800; margin-bottom: 24px;
}
.form-gruppe { margin-bottom: 18px; }
.form-gruppe label {
  display: block; font-size: 0.82rem; font-weight: 700;
  margin-bottom: 6px; color: var(--text);
}
.form-gruppe select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6b57' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-gruppe input,
.form-gruppe textarea,
.form-gruppe select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  background: var(--bg); color: var(--text);
  transition: border-color .15s;
}
.form-gruppe input:focus,
.form-gruppe textarea:focus {
  outline: none; border-color: var(--green);
}
.form-gruppe textarea { height: 140px; resize: vertical; }
.form-gruppe .required::after { content: ' *'; color: var(--red); }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 20px; cursor: pointer;
}
.form-checkbox input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; }
.form-checkbox span { flex: 1; min-width: 0; }
.form-checkbox a { color: var(--green); }

.form-submit {
  width: 100%; padding: 14px 24px;
  background: var(--green); color: var(--white);
  border: none; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background .18s;
}
.form-submit:hover { background: var(--green-dark); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-reassurance {
  margin: 12px 0 0; text-align: center;
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;
}

.form-success {
  display: none; background: var(--green-light);
  border: 1.5px solid var(--green-mid); border-radius: 14px;
  padding: 24px; text-align: center;
}
.form-success.visible { display: block; }
.form-success h3 { font-size: 1.1rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); }

.form-error {
  display: none; background: var(--red-light);
  border: 1.5px solid var(--red-border); border-radius: 10px;
  padding: 12px 16px; margin-bottom: 16px;
  font-size: 0.85rem; color: var(--red);
}
.form-error.visible { display: block; }

/* ── LEISTUNGS-CARDS ───────────────── */
.leistungen-quicklinks {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.leistungen-quicklinks .lq-card {
  flex: 1 1 calc(33.333% - 12px);
  max-width: calc(33.333% - 12px);
}
@media (max-width: 640px) {
  .leistungen-quicklinks .lq-card {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}
.lq-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 20px; text-decoration: none;
  color: inherit; text-align: center;
  transition: transform .2s, border-color .2s;
}
.lq-card:hover { transform: translateY(-3px); border-color: var(--green); }
.lq-card .lq-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; color: var(--green); }
.lq-card .lq-icon .lucide { width: 28px; height: 28px; }
.lq-card h4 { font-size: 0.85rem; font-weight: 700; }

/* ── SUPPORT-HINWEIS ──────────────── */
.support-hinweis {
  max-width: var(--container-max); margin: 0 auto;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: 18px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.sh-icon { font-size: 2rem; line-height: 1; }
.support-hinweis h3 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.support-hinweis p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0;
}
.support-hinweis .btn { white-space: nowrap; }
@media (max-width: 640px) {
  .support-hinweis {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .support-hinweis .btn { width: 100%; }
}

@media (max-width: 820px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}
  
