/* ==========================================================================
   KONTAKT – Manger Transporte GmbH & Co. KG
   ==========================================================================
*/
.page--kontakt main { 
    animation: fadeInUp 0.6s ease both;
}

/* ===========================
   CONTAINER
   =========================== */
.kontakt-container {
  max-width: 1050px;
  margin: 50px auto 0 px;
  font-family: 'Poppins', sans-serif;
  color: var(--clr-text);
  line-height: 1.6;
}

/* ===========================
   BOXEN-GRUNDSTIL
   =========================== */
.kontakt-box,
.zeiten-box,
.kontakt-formular,
.map-placeholder {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 45px;
  margin-bottom: 35px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.kontakt-box:hover,
.zeiten-box:hover,
.kontakt-formular:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}

/* ===========================
   FLEX-LAYOUT
   =========================== */
.kontakt-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
}

.kontakt-col {
  flex: 1;
  min-width: 300px;
}

/* ===========================
   HEADINGS
   =========================== */

.kontakt-col h3,
.zeiten-box h3,
.kontakt-formular h3 {
  color: var(--clr-accent-dark);
  font-weight: 700;
  font-size: 1.35em;
  margin-bottom: 0px;
}

.kontakt-col h4 {
  color: var(--clr-accent-dark);
  font-size: 1.05em;
  font-weight: 600;
   margin: 20px 0 8px;
 
}

.kontakt-col p {
  margin: 4px 0 10px;
  font-size: 0.95em;
}

/* ===========================
   LINKS
   =========================== */
.kontakt-col a,
.kontakt-col p a {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.kontakt-col a:hover {
  color: var(--clr-accent);
  text-shadow: 0 0 8px rgba(43, 123, 255, 0.5);
  transform: translateX(2px);
  text-decoration: underline;
}

/* ===========================
   RECHTE SPALTE – SOCIAL MEDIA
   =========================== */
.kontakt-col:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.kontakt-col:last-child img {
  width: 180px;
  border-radius: 12px;
  margin: 6px auto 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-col:last-child img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.kontakt-col:last-child a[href*="instagram"] {
  color: var(--clr-accent-dark);
  font-weight: 600;
}

/* ===========================
   ÖFFNUNGSZEITEN
   =========================== */
.zeiten-box p {
  line-height: 1.5;
  margin: 3px 0;
  font-size: 0.95em;
}

/* ===========================
   MAP
   =========================== */
.map-placeholder {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  background: #f3f6fa;
  color: var(--clr-text-muted);
}



/* ===========================
   BUTTON
   =========================== */
button[type="submit"] {
  background: var(--clr-accent-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

button[type="submit"]:hover {
  background: var(--clr-accent);
  transform: translateY(-1px);
}

/* ===========================
   FORM FOOTER
   =========================== */
.form-footer {
  margin-top: 12px;
  font-size: 0.85em;
  color: var(--clr-text-muted);
}

.form-footer a {
  color: var(--clr-accent-dark);
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 750px) {
  .kontakt-flex {
    flex-direction: column;
    align-items: center;
  }

  .kontakt-col {
    text-align: center;
  }

  .kontakt-box,
  .zeiten-box,
  .kontakt-formular,
  .map-placeholder {
    padding: 25px 20px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

