/* ===== CONTACT PAGE ===== */
.contact-page {
  background: #ffffff;
  padding: 80px 0;
}

.contact-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-page__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 70px;
  color: #033215;
  text-align: center;
}

.contact-page__info {
  margin-top: 18px;
  text-align: center;
}

.contact-page__line {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  color: #033215;
  font-size: 20px;
  margin-top: 8px;
}

.contact-page__line a {
  color: inherit;
  text-decoration: none;
}

.contact-box {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.contact-box__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  filter: grayscale(100%);
}

.contact-form label {
  display: block;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  color: #033215;
  font-size: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  border: 1px solid #BDD0C4;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: "Mulish", sans-serif;
  color: #033215;
  outline: none;
  background: #fff;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__row {
  margin-bottom: 16px;
}

.contact-form__row p label br{
    display: none;
}


.contact-form__row p label{
  margin-bottom: 6px;
}

.contact-form__actions {
  margin-top: 14px;
}

.contact-form__submit,
.wpcf7 input[type="submit"] {
  width: 100%;
  border: 0;
  background: #4EC234;
  color: #fff;
  border-radius: 9999px;
  padding: 12px 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.contact-form__submit:hover,
.wpcf7 input[type="submit"]:hover {
  filter: brightness(0.95);
}

/* CF7 poruke */
.wpcf7-response-output,
.wpcf7-not-valid-tip {
  font-family: "Mulish", sans-serif;
  color: #033215;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-page { padding: 60px 0; }
  .contact-page__title { font-size: 50px; }
  .contact-box { grid-template-columns: 1fr; }
  .contact-box__img { aspect-ratio: 16 / 10; }
}

