/* ─────────────────────────────────────
CONTACT US PAGE - CSS
────────────────────────────────────── */

/* success banner */
/* default hidden */
.success-banner {
  display: none;
  background: #d3f2d7;
  border-radius: 18px;
  padding: 18px 26px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #246b32;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* shown when #success is in URL */
#success:target {
  display: block;
}

/* header background graident */
#contact-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 105px 0 115px;
}

/* form */
.contact-form {
  max-width: 1050px;
}

/* honeypot anti-spam field */
.robot-check {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px;
}

.form-input {
  border-radius: 42px;
  padding: 20px 26px;
  font-size: 1.25rem;
}

.send-btn {
  display: inline-block;
  background: var(--submit);
  color: white;
  font-size: 1.25rem;
  padding: 16px 42px;
  border-radius: 35px;
  border: none;
  transition: 0.25s ease;
}

.send-btn:hover {
  background: #d86a6a;
  transform: translateY(-3px);
}

/* contact info and map */
.contact-row > div {
  display: flex;
}

.info-card,
.map-wrapper {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  width: 100%;
  position: relative;
}

/*  glow */
.info-card::before,
.map-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
  z-index: -1;
}

.map-wrapper {
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 30px;
  display: block;
}

/* Card height scaling for larger screens */
@media (min-width: 992px) {
  .info-card,
  .map-wrapper {
    min-height: 360px;
  }
}

/*  container scaling */
.contact-page-container {
  max-width: 1100px;
}
