/* AY Natural Contact Page */
.ay-contact-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 42px;
  padding: 32px 20px 10px;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  color: #2B2B2B;
}

/* Intro */
.ay-contact-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 28px;
}

.ay-contact-intro-content {
  padding: 10px 0;
}

.ay-contact-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B4F3A;
}

.ay-contact-intro h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #3A2118;
}

.ay-contact-intro p {
  margin: 0;
  max-width: 720px;
  font-size: 16.5px;
  line-height: 1.75;
  color: #555555;
}

.ay-contact-about-note {
  margin-top: 14px !important;
  font-size: 15.5px !important;
  line-height: 1.75 !important;
  color: #666666 !important;
}

.ay-contact-about-note a {
  color: #6B4F3A;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ay-contact-about-note a:hover {
  color: #5A3F2E;
}

/* Service Box */
.ay-contact-service-box {
  padding: 30px 34px;
  background: #FFF8F1;
  border: 1px solid #E0D6CC;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(90, 58, 42, 0.07);
}

.ay-contact-service-box h2 {
  margin: 0 0 15px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  color: #5A3A2A;
}

.ay-contact-service-box p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: #555555;
}

.ay-contact-service-box ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ay-contact-service-box li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 1.6;
  color: #4F4A46;
}

.ay-contact-service-box li:last-child {
  margin-bottom: 0;
}

.ay-contact-service-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #6B4F3A;
}

/* Benefits */
.ay-contact-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.ay-contact-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px 22px;
  background: #FFFFFF;
  border: 1px solid #E0D6CC;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(90, 58, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ay-contact-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 79, 58, 0.42);
  box-shadow: 0 18px 44px rgba(90, 58, 42, 0.12);
}

.ay-contact-benefit-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #EFEAE4;
  color: #6B4F3A;
}

.ay-contact-benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  display: block;
}

.ay-contact-benefit h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #5A3A2A;
}

.ay-contact-benefit p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}

/* JTL Contact Form Styling */
form input,
form select,
form textarea {
  border: 1px solid #D9CEC4;
  border-radius: 4px;
  background: #FFFFFF;
  color: #2B2B2B;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #6B4F3A;
  box-shadow: 0 0 0 3px rgba(107, 79, 58, 0.12);
  outline: none;
}

/* Button je nach JTL-Template */
button[type="submit"],
input[type="submit"],
.btn-primary,
.btn.btn-primary {
  min-height: 42px;
  padding: 11px 20px;
  background: #6B4F3A;
  border-color: #6B4F3A;
  color: #FFFFFF;
  border-radius: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 750;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.btn-primary:hover,
.btn.btn-primary:hover {
  background: #5A3F2E;
  border-color: #5A3F2E;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Datenschutz-Link */
form a {
  color: #6B4F3A;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

form a:hover {
  color: #5A3F2E;
}

/* Tablet */
@media (max-width: 980px) {
  .ay-contact-page {
    padding: 0px 18px 0px;
  }

  .ay-contact-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .ay-contact-service-box {
    padding: 24px;
  }

  .ay-contact-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .ay-contact-benefit {
    padding: 28px 24px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ay-contact-page {
    padding: 0px 16px 0px;
    margin-bottom: 28px;
  }

  .ay-contact-intro h1 {
    font-size: 34px;
  }

  .ay-contact-intro p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .ay-contact-service-box {
    padding: 24px 20px;
  }

  .ay-contact-service-box p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .ay-contact-benefit {
    padding: 24px 20px;
    flex-direction: row;
  }

  .ay-contact-benefit-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .ay-contact-benefit-icon svg {
    width: 21px;
    height: 21px;
  }

  .ay-contact-benefit h3 {
    font-size: 20px;
  }

  .ay-contact-benefit p {
    font-size: 15px;
  }
}