/* ══════════════════════════════════════
   contact.css — SupremeForged Contact Page
══════════════════════════════════════ */

/* ── Hero ── */
.ct-hero {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 110px 40px 80px;
  overflow: hidden;
}
.ct-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  background-image: radial-gradient(circle, #c8c5c0 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
  pointer-events: none;
}
.ct-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand, #eb4f43);
  margin-bottom: 20px;
  display: block;
}
.ct-heading {
  font-family: 'Mona Sans', 'Mona Sans Wide', sans-serif;
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #111;
  margin: 0 0 0 -4px;
}
.ct-heading em {
  font-style: italic;
  font-weight: 300;
  font-family: Georgia, 'Times New Roman', serif;
}
[data-theme="dark"] .ct-heading { color: #f0efed; }

/* ── Main two-col ── */
.ct-main {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px 100px;
}
.ct-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Info cards ── */
.ct-info-card {
  background: #fff;
  border: 1px solid #e8e6e2;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
}
[data-theme="dark"] .ct-info-card { background: #1a1a1a; border-color: #2a2a2a; }
.ct-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand, #eb4f43);
  margin-bottom: 18px;
  display: block;
}
.ct-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0efed;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}
.ct-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.ct-info-row svg { flex-shrink: 0; margin-top: 2px; color: #999; }
.ct-info-row a { color: #333; text-decoration: none; }
.ct-info-row a:hover { color: var(--brand); }
[data-theme="dark"] .ct-info-row { color: #ccc; border-bottom-color: #2a2a2a; }
[data-theme="dark"] .ct-info-row a { color: #ccc; }

.ct-social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; text-decoration: none;
  color: #333; font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.ct-social-link:hover { color: var(--brand); }
[data-theme="dark"] .ct-social-link { color: #ccc; }

/* ── Form panel ── */
.ct-form-head { margin-bottom: 36px; }
.ct-form-head h2 {
  font-family: 'Mona Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 6px;
}
.ct-form-head p { font-size: 15px; color: #888; margin: 0; }
[data-theme="dark"] .ct-form-head h2 { color: #f0efed; }

.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .ct-form-row { grid-template-columns: 1fr; } }

.ct-field { margin-bottom: 28px; }
.ct-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #ddd;
  padding: 10px 0;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #bbb; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus { border-bottom-color: var(--brand, #eb4f43); }
.ct-field textarea { resize: vertical; min-height: 100px; }
.ct-field select { cursor: pointer; color: #111; }
.ct-field select option { color: #111; background: #fff; }
[data-theme="dark"] .ct-field input,
[data-theme="dark"] .ct-field select,
[data-theme="dark"] .ct-field textarea { color: #f0efed; border-bottom-color: #444; }
[data-theme="dark"] .ct-field input::placeholder,
[data-theme="dark"] .ct-field textarea::placeholder { color: #555; }

.ct-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.ct-privacy { font-size: 12px; color: #aaa; margin: 0; max-width: 320px; }

.ct-submit {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: #111; color: #fff;
  border: none; border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .15s;
  white-space: nowrap;
}
.ct-submit:hover { background: var(--brand, #eb4f43); transform: translateY(-1px); }
.ct-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.ct-submit svg { transition: transform .2s; }
.ct-submit:hover svg { transform: translate(2px, -2px); }

/* ── Success state ── */
.ct-success {
  text-align: center;
  padding: 80px 20px;
  display: none;
}
.ct-success-icon {
  width: 64px; height: 64px;
  background: #f0fdf4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.ct-success h3 { font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.ct-success p  { color: #666; font-size: 15px; margin: 0; }

/* ── Category cards ── */
.ct-cats {
  background: #fff;
  border-top: 1px solid #e8e6e2;
}
[data-theme="dark"] .ct-cats { background: #111; border-top-color: #222; }
.ct-cats-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .ct-cats-inner { grid-template-columns: 1fr; }
}
.ct-cat {
  border: 1px solid #e8e6e2;
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
[data-theme="dark"] .ct-cat { border-color: #2a2a2a; }
.ct-cat:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.ct-cat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand, #eb4f43);
  margin-bottom: 14px;
  display: block;
}
.ct-cat h3 {
  font-family: 'Mona Sans', sans-serif;
  font-size: 22px; font-weight: 700;
  color: #111; margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.ct-cat p { font-size: 14px; color: #666; line-height: 1.65; margin: 0 0 20px; }
.ct-cat a {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #333;
  text-decoration: none; transition: color .2s;
}
.ct-cat a:hover { color: var(--brand); }
[data-theme="dark"] .ct-cat h3 { color: #f0efed; }
[data-theme="dark"] .ct-cat p  { color: #888; }
[data-theme="dark"] .ct-cat a  { color: #ccc; }
