/* ===== HERO ===== */
.contact-hero {
  position: relative;
  min-height: 340px;
  padding: 84px 0 56px;
  overflow: hidden;
  background: var(--dark-blue);
  display: flex;
  align-items: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.contact-hero__container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-hero__title {
  margin: 0;
  color: var(--white);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.contact-hero__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  line-height: 1.7;
  max-width: 560px;
}

/* ===== PAGE ===== */
.contact-page {
  background: #f3f4f6;
  padding: 52px 0 72px;
}

.contact-container {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}

/* ===== CARD ===== */
.contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(27, 42, 74, 0.09);
  padding: 36px 40px;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-blue);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.contact-field label .required {
  color: #e85050;
  margin-left: 2px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  color: #111827;
  background: #fafafa;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(59, 108, 183, 0.12);
  background: #fff;
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__submit {
  display: flex;
  justify-content: flex-end;
}

.btn--contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--yellow);
  color: var(--dark-blue);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.15s, transform 0.1s;
}

.btn--contact:hover {
  background: #e6b800;
  transform: translateY(-1px);
}

.btn--contact:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 620px) {
  .contact-hero__title { font-size: 34px; }
  .contact-card { padding: 24px 20px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__submit { justify-content: stretch; }
  .btn--contact { width: 100%; justify-content: center; }
}
