
/* MEMAD Contact Pro — styles front */
.memad-contact-hero {
  padding: 48px 24px;
  background: radial-gradient(1000px 600px at 10% 10%, rgba(0,120,255,0.12), transparent),
              linear-gradient(135deg, #0e1f3b 0%, #051226 100%);
  color: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.memad-contact-hero h1 { margin: 0 0 8px; font-size: 2rem; font-weight: 700; }
.memad-contact-hero p { margin: 0; opacity: .9; }

.memad-contact-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
@media (max-width: 900px) { .memad-contact-grid { grid-template-columns: 1fr; } }

.memad-card { background: #fff; border-radius: 14px; border: 1px solid #e8eef6; box-shadow: 0 6px 18px rgba(5, 18, 38, 0.05); padding: 18px; }
.memad-card h3 { margin-top: 0; font-size: 1.05rem; color: #0e1f3b; }

.memad-form label { display:block; margin: 8px 0 6px; font-weight:600; }
.memad-form input[type="text"],
.memad-form input[type="email"],
.memad-form input[type="tel"],
.memad-form textarea,
.memad-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfe0f5;
  border-radius: 10px;
  background: #f9fbff;
  outline: none;
  transition: border-color .2s ease;
}
.memad-form input:focus, .memad-form textarea:focus, .memad-form select:focus { border-color: #3a78ff; background: #fff; }
.memad-form textarea { min-height: 120px; resize: vertical; }

.memad-actions { margin-top: 12px; display: flex; gap: 10px; align-items: center; }
.memad-btn { display: inline-block; padding: 12px 18px; border-radius: 10px; background: #1a50ff; color: #fff; text-decoration: none; border: none; cursor: pointer; font-weight: 700; }
.memad-btn.secondary { background: #e7eefc; color: #1a50ff; }
.memad-hint { font-size: .92rem; color: #5b6b88; }

.memad-legal { font-size: .9rem; color: #5b6b88; padding-top: 8px; border-top: 1px dashed #dfe7f5; margin-top: 12px; }

.memad-alert { padding: 12px 14px; border-radius: 10px; background: #ecf7ee; border: 1px solid #bfe6c8; color: #1d5c2e; margin-bottom: 12px; display: none; }
.memad-alert.error { background: #fdeeee; border-color: #f1b4b4; color: #6a1a1a; }
