/* ===================================================================
   Contact Page (v3) — page-templates/contact-new.php
   Reuses .dog-form field styling from dog.css for the Ninja Form.
   =================================================================== */

.contact-new {
  background: #182836;
}

/* ===== Hero ===== */
.contact-new__hero {
  background: #182836;
  padding: 150px 0 60px;
  text-align: center;
}

.contact-new__eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #af933f;
  margin: 0 0 20px;
}

.contact-new__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.contact-new__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: normal;
  color: #fff;
  max-width: 740px;
  margin: 0 auto;
}

/* ===== Content: form + image ===== */
.contact-new__content {
  background: #182836;
  padding: 0 0 40px;
}

.contact-new__row {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
}

/* Left card — reuse .dog-form look but override the dog-page-specific width */
.contact-new .contact-new__card.dog-form {
  flex: 1 1 0;
  width: auto;
  max-width: 552px;
  border-radius: 16px;
  justify-content: flex-start;
  gap: 20px;
}

.contact-new .contact-new__card .dog-form__title {
  margin-bottom: 0;
}

.contact-new .contact-new__card .dog-form__phone-note {
  margin-top: 0;
}

/* Right media */
.contact-new__media {
  position: relative;
  flex: 1 1 0;
  max-width: 552px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 623px;
}

.contact-new__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-new__media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #121f29);
}

.contact-new__media-name {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.contact-new__media-meta {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  margin: 0;
}

/* ===== Contact info bar ===== */
.contact-new__info-section {
  background: #182836;
  padding: 0 0 50px;
}

.contact-new__info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.contact-new__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 280px;
  justify-content: center;
}

.contact-new__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #af933f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-new__info-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #fff;
  font-style: normal;
  margin: 0;
  text-decoration: none;
}

a.contact-new__info-text:hover {
  color: #af933f;
}

.contact-new__info-address strong {
  font-weight: 700;
}

/* ===== Map ===== */
.contact-new__map-section {
  background: #182836;
  padding: 0 0 60px;
}

.contact-new__map {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.contact-new__map iframe,
.contact-new__map img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-new__hero {
    padding: 120px 0 40px;
  }

  .contact-new__heading {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-new__row {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .contact-new .contact-new__card.dog-form,
  .contact-new__media {
    max-width: 100%;
  }

  .contact-new__media {
    min-height: 420px;
  }

  .contact-new__info {
    flex-direction: column;
    gap: 24px;
  }

  .contact-new__info-item {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
}
