/* Contact modal — shared across all pages */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 16px;
  padding: 36px 32px; width: 100%; max-width: 480px;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; left: 16px;
  background: #f4f5f7; border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  font-size: 16px; color: #5a6a80; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
[lang="en"] .modal-close { left: auto; right: 16px; }
.modal-close:hover { background: #e0e3e8; }
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: #0C3B6E; letter-spacing: 2px;
  margin-bottom: 6px;
}
.modal-subtitle { font-size: 13px; color: #8899aa; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  color: #5a6a80; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid #dde3ed; border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  color: #1a1a2e; background: #f9fafb;
  transition: border-color 0.2s, background 0.2s;
  outline: none; box-sizing: border-box;
}
.form-input:focus, .form-textarea:focus {
  border-color: #185FA5; background: #fff;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 13px;
  background: #0C3B6E; color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: #185FA5; }
.form-submit:disabled { background: #8899aa; cursor: not-allowed; }
.form-success { text-align: center; padding: 24px 0; display: none; }
.form-success .success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  color: #0C3B6E; letter-spacing: 1px; margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: #5a6a80; margin-bottom: 20px; }
.form-error { font-size: 12px; color: #c0392b; margin-top: 8px; display: none; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
