/* ==========================================================
   DataSeek Solutions — Contact Page Styles
   ========================================================== */

/* ── Hero ────────────────────────────────────────────── */
.hero-contact {
  background: linear-gradient(135deg, #0a2240 0%, #0d2d4e 55%, #103660 100%);
  position: relative;
  overflow: hidden;
}
.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(11,197,177,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(15,201,177,0.07) 0%, transparent 50%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Form Inputs ─────────────────────────────────────── */
.form-input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 14px;
  color: #10335a;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: #0FC9B1;
  box-shadow: 0 0 0 3px rgba(15,201,177,0.1);
}
.form-input::placeholder { color: #94a3b8; }
textarea.form-input { resize: vertical; min-height: 130px; }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%230FC9B1' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-label { display: block; font-size: 13px; font-weight: 500; color: #10335a; margin-bottom: 6px; }

/* ── Submit Button ───────────────────────────────────── */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0FC9B1;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(15,201,177,0.35);
}
.btn-submit:hover  { background: #2de0c4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,201,177,0.4); }
.btn-submit:active { transform: translateY(0); }

/* ── Info Cards ──────────────────────────────────────── */
.info-card { transition: transform 0.25s ease; }
.info-card:hover { transform: translateY(-3px); }

/* ── Success State ───────────────────────────────────── */
#success-msg { display: none; }

/* ── Map Area ────────────────────────────────────────── */
.map-area {
  background: linear-gradient(135deg, #0d2d4e 0%, #10335a 100%);
  position: relative;
  overflow: hidden;
}
.map-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(11,197,177,0.1) 0%, transparent 60%);
}

/* ── Spinner (submit loading state) ─────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
