/* ==========================================================================
   Contact — v2 "Form + support hub"
   Extends css/site.css (the shared Salla Developers chrome + component set).
   ========================================================================== */

.ct-hub .section__head { max-width: 40rem; }

.ct-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .ct-grid { grid-template-columns: 1fr; } }

.ct-form {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--rounded-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-xs);
  display: grid; gap: 1.1rem;
}
.ct-field { display: grid; gap: .4rem; }
.ct-field label { font-size: .85rem; font-weight: 700; color: var(--heading); }
.ct-field input, .ct-field select, .ct-field textarea {
  font: inherit; font-size: .95rem; color: var(--heading); background: var(--page-bg);
  border: 1px solid var(--border-soft); border-radius: var(--rounded-lg);
  padding: .7rem .9rem; width: 100%; transition: border-color .18s var(--ease);
}
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
  outline: none; border-color: hsl(var(--primary-400));
}
.ct-field textarea { resize: vertical; min-height: 7rem; }
.ct-form .btn { justify-self: start; }
.ct-form__note { font-size: .82rem; color: var(--text-muted); }

.ct-side { display: grid; gap: .85rem; }
.ct-chan {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--rounded-lg);
  padding: 1rem 1.2rem; transition: border-color .18s var(--ease), transform .18s var(--ease);
}
.ct-chan:hover { border-color: hsl(var(--primary-300)); transform: translateX(3px); text-decoration: none; }
.ct-chan .hgi { flex: none; font-size: 1.3rem; color: hsl(var(--primary-400)); margin-top: .15rem; }
.dark .ct-chan .hgi { color: var(--accent); }
.ct-chan b { color: var(--heading); font-size: .94rem; }
.ct-chan span { font-size: .86rem; color: var(--text-muted); line-height: 1.5; }

.ct-office { padding: 1rem 1.2rem; border: 1px dashed var(--border-soft); border-radius: var(--rounded-lg); }
.ct-office h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: .5rem; }
.ct-office p { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
