/* ═══════════════════════════════════════════════
   Happy Day — Contact Page
   Font: Montserrat
   ═══════════════════════════════════════════════ */

.hd-contact {
  font-family: 'Montserrat', sans-serif;
  color: #263661;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}
.hd-contact *,
.hd-contact *::before,
.hd-contact *::after {
  box-sizing: border-box;
}

.hd-contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.hd-contact-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 32px;
  text-align: center;
}

.hd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hd-contact-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #263661;
}

.hd-contact-field input,
.hd-contact-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #263661;
  background: #fff;
  transition: border-color 0.2s;
}

.hd-contact-field input:focus,
.hd-contact-field textarea:focus {
  outline: none;
  border-color: var(--hd-primary, #E64367);
}

.hd-contact-field textarea {
  min-height: 160px;
  resize: vertical;
}

.hd-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--hd-primary, #E64367);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.hd-contact-submit:hover {
  opacity: 0.9;
}

.hd-contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hd-contact-message {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.hd-contact-message--success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.hd-contact-message--error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 640px) {
  .hd-contact {
    padding: 24px 16px;
  }

  .hd-contact-title {
    font-size: 24px;
  }

  .hd-contact-submit {
    width: 100%;
  }
}
