/* =====================================================
   CONTACT PAGE — Career-style form + aligned map
===================================================== */

/* Form card — same as career apply card */
.career-apply-card {
  background: #ffffff;
  border: 1px solid #E5E5E0;
  border-radius: 22px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 40px -20px rgba(59, 74, 107, 0.18);
  height: 100%;
}

.career-apply-title {
  font-family: var(--n-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--n-navy);
  margin: 0 0 0.35rem;
}

.career-apply-sub {
  font-size: 0.87rem;
  color: #5C5F66;
  margin: 0 0 1.5rem;
}

.career-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--n-navy);
  margin-bottom: 0.35rem;
}
.career-label span { color: var(--n-primary); }

.career-input {
  width: 100%;
  border: 1px solid #E5E5E0;
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: var(--n-navy);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--n-font-body);
}

.career-input::placeholder { color: #A8ABB2; }

.career-input:focus {
  outline: none;
  border-color: var(--n-primary);
  box-shadow: 0 0 0 3px rgba(59, 74, 107, 0.15);
}

.career-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%235C5F66' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.career-textarea {
  resize: vertical;
  min-height: 110px;
}

.career-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #5C5F66;
  line-height: 1.55;
  cursor: pointer;
}
.career-check input {
  margin-top: 0.2rem;
  accent-color: var(--n-primary);
  flex: 0 0 auto;
}
.career-check .req { color: var(--n-primary); }
.career-check .req-link {
  color: var(--n-primary);
  text-decoration: underline;
}

.career-submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  background: var(--n-gradient-primary);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #ffffff;
  font-family: var(--n-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.career-submit-btn:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 22px -8px rgba(59, 74, 107, 0.55);
  transform: translateY(-1px);
}

/* ---------- Map wrapper — same height as form ---------- */
.contact-map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(59, 74, 107, 0.18);
  border: 1px solid #E5E5E0;
  background: #ffffff;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

/* Responsive — mobile pe map fixed height */
@media (max-width: 991.98px) {
  .contact-map-wrap {
    height: 400px;
    min-height: 400px;
  }
  .contact-map-wrap iframe {
    min-height: 400px;
  }
}

@media (max-width: 575.98px) {
  .career-apply-card { padding: 1.5rem 1.25rem; }
  .contact-map-wrap {
    height: 320px;
    min-height: 320px;
  }
  .contact-map-wrap iframe {
    min-height: 320px;
  }
}