/* ─────────────────────────────────────────
   CONTACT — Info panel, WhatsApp CTA, form
───────────────────────────────────────── */

.ct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .ct-grid { grid-template-columns: 1fr 1.4fr; gap: 32px; }
}

/* ── Info card ── */
.ct-info {
  background: var(--bg-card);
  border: 1px solid rgba(29, 135, 200, 0.2);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.ct-info::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(29,135,200,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ct-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.ct-sub {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.68;
  margin-bottom: 26px;
  position: relative;
}

/* WhatsApp button */
.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--r);
  padding: 15px 18px;
  color: #fff;
  transition: all 0.2s;
  margin-bottom: 22px;
  position: relative;
}

.wa-btn:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.wa-ico {
  width: 38px;
  height: 38px;
  background: #25d366;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-ico svg { width: 20px; height: 20px; color: #fff; }

.wa-lbl {
  font-size: 10px;
  color: rgba(37, 211, 102, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 2px;
}

.wa-val  { font-weight: 600; font-size: 15px; }
.wa-arr  { margin-left: auto; color: rgba(37, 211, 102, 0.5); }
.wa-arr svg { width: 16px; height: 16px; }

/* Contact data items */
.ct-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
}

.ct-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
}

.ct-ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--brand-dim);
  border: 1px solid rgba(29, 135, 200, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-ico svg { width: 14px; height: 14px; color: var(--brand); }

.ct-lbl  { font-size: 11px; color: var(--text-3); margin-bottom: 2px; }
.ct-val  { color: var(--text); }
.ct-val a:hover { color: var(--brand-light); }

.ct-badges { display: flex; flex-wrap: wrap; gap: 7px; position: relative; }

.ct-badge {
  font-size: 11px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(29, 135, 200, 0.07);
  border: 1px solid rgba(29, 135, 200, 0.18);
  color: var(--brand-light);
}

/* ── Contact form ── */
.ct-form {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* Subtle top gradient line */
.ct-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
}

.form-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 560px) {
  .f-row { grid-template-columns: 1fr; }
}

.f {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.f.nm { margin-bottom: 0; }

.f label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
}

.f input,
.f textarea,
.f select {
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.f input::placeholder,
.f textarea::placeholder { color: var(--text-3); }

.f select { cursor: pointer; color: var(--text); }
.f select option { background: #0e1318; color: var(--text); }

.f input:focus,
.f textarea:focus,
.f select:focus {
  border-color: rgba(29, 135, 200, 0.45);
  box-shadow: 0 0 0 3px rgba(29, 135, 200, 0.08);
}

.f textarea {
  resize: vertical;
  min-height: 114px;
  border-radius: 12px;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-note { font-size: 11.5px; color: var(--text-3); max-width: 26rem; }
