/* Optional, falls noch nicht global gesetzt */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.kontakt-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.kontakt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-head {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.kontakt-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.kontakt-head h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.2;
  color: #0f172a;
}

.kontakt-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.kontakt-info {
  display: grid;
  gap: 24px;
}

.kontakt-box,
.kontakt-form-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.kontakt-box h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.3;
  color: #0f172a;
}

.kontakt-box p,
.kontakt-address {
  margin: 0 0 16px;
  color: #334155;
  line-height: 1.7;
  font-style: normal;
}

.kontakt-box p:last-child,
.kontakt-address:last-child {
  margin-bottom: 0;
}

.kontakt-box a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.kontakt-box a:hover,
.kontakt-box a:focus {
  color: #d4af37;
}

.kontakt-map {
  overflow: hidden;
  border-radius: 14px;
}

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

.kontakt-form {
  display: grid;
  gap: 18px;
}

.kontakt-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kontakt-form-group label {
  font-weight: 700;
  color: #0f172a;
}

.kontakt-form-group input,
.kontakt-form-group select,
.kontakt-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2937;
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.kontakt-form-group input::placeholder,
.kontakt-form-group textarea::placeholder {
  color: #94a3b8;
}

.kontakt-form-group input:focus,
.kontakt-form-group select:focus,
.kontakt-form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.kontakt-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.kontakt-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.kontakt-checkbox input {
  margin-top: 4px;
  flex: 0 0 auto;
}

.kontakt-checkbox label {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.kontakt-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 180px;
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: #d4af37;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.kontakt-button:hover,
.kontakt-button:focus {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
}

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

@media (max-width: 600px) {
  .kontakt-section {
    padding: 60px 16px;
  }

  .kontakt-box,
  .kontakt-form-box {
    padding: 20px;
  }

  .kontakt-map iframe {
    height: 260px;
  }

  .kontakt-button {
    width: 100%;
  }
}


.form-status {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #b91c1c;
}

.kontakt-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


.ablauf-section {
  padding: 80px 20px;
  background: #ffffff;
}

.ablauf-container {
  max-width: 900px;
  margin: 0 auto;
}

.ablauf-head {
  text-align: center;
  margin-bottom: 50px;
}

.ablauf-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ablauf-head h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.2;
  color: #0f172a;
}

.ablauf-head p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

/* Timeline */
.ablauf-timeline {
  position: relative;
  padding-left: 70px;
}

.ablauf-line {
  position: absolute;
  top: 0;
  left: 17px;
  width: 4px;
  height: 100%;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.ablauf-line-fill {
  display: block;
  width: 100%;
  height: 0;
  background: #d4af37;
  border-radius: 999px;
  transition: height 0.15s linear;
}

.ablauf-step {
  position: relative;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ablauf-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.ablauf-step:last-child {
  margin-bottom: 0;
}

.ablauf-circle {
  position: absolute;
  left: -70px;
  top: 6px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #d4af37;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ablauf-content {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ablauf-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #0f172a;
}

.ablauf-content p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.ablauf-note {
  margin-top: 32px;
  padding: 20px 22px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
}

.ablauf-note p {
  margin: 0;
  color: #1f2937;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .ablauf-section {
    padding: 60px 16px;
  }

  .ablauf-timeline {
    padding-left: 54px;
  }

  .ablauf-line {
    left: 13px;
  }

  .ablauf-circle {
    left: -54px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .ablauf-content {
    padding: 18px;
  }

  .ablauf-content h3 {
    font-size: 19px;
  }
}