/* ─── Contact Us Page ─────────────────────────────────────────── */

/* Hero */
.nc-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(245,158,11,.18) 0%, transparent 70%);
  pointer-events: none;
}
.nc-hero-label {
  display: inline-block;
  background: rgba(245,158,11,.15);
  color: #f59e0b;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
  border: 1px solid rgba(245,158,11,.3);
}
.nc-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.nc-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Two-column layout */
.nc-body {
  padding: 72px 0 80px;
  background: var(--n-bg);
}
.nc-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* Contact form card */
.nc-form-card {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-lg);
  padding: 40px;
}
.nc-form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--n-text);
  margin-bottom: 6px;
  letter-spacing: -.03em;
}
.nc-form-sub {
  font-size: .9rem;
  color: var(--n-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.nc-field {
  margin-bottom: 20px;
}
.nc-label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--n-text);
  margin-bottom: 6px;
}
.nc-input,
.nc-select,
.nc-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--n-border);
  border-radius: 8px;
  font-size: .92rem;
  font-family: var(--n-font);
  color: var(--n-text);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.nc-input:focus,
.nc-select:focus,
.nc-textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.nc-textarea { resize: vertical; min-height: 130px; }
.nc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nc-submit {
  width: 100%;
  padding: 14px;
  background: #f59e0b;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .12s;
  margin-top: 8px;
}
.nc-submit:hover { background: #d97706; transform: translateY(-1px); }
.nc-submit:active { transform: none; }

/* Success state */
.nc-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.nc-success-icon {
  width: 64px; height: 64px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.nc-success h3 { font-size: 1.2rem; font-weight: 700; color: var(--n-text); margin-bottom: 8px; }
.nc-success p  { font-size: .9rem; color: var(--n-text-muted); }

/* Right info panel */
.nc-info { display: flex; flex-direction: column; gap: 24px; }

.nc-info-card {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-lg);
  padding: 28px;
}
.nc-info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--n-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nc-info-card-title span { font-size: 1.2rem; }

.nc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--n-border);
}
.nc-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.nc-contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--n-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nc-contact-label { font-size: .78rem; font-weight: 600; color: var(--n-text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .06em; }
.nc-contact-val   { font-size: .92rem; font-weight: 600; color: var(--n-text); }
.nc-contact-val a { color: #059669; }
.nc-contact-val a:hover { text-decoration: underline; }

/* Response time badge */
.nc-resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d1fae5;
  color: #065f46;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 16px;
}

/* Topic cards */
.nc-topics { display: flex; flex-direction: column; gap: 10px; }
.nc-topic {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--n-border);
  font-size: .88rem;
  color: var(--n-text-muted);
  transition: var(--n-transition);
  cursor: default;
}
.nc-topic:hover { border-color: #f59e0b; color: var(--n-text); background: #fffbeb; }
.nc-topic-icon { font-size: 1.1rem; }

/* FAQ strip */
.nc-faq { padding: 64px 0 80px; background: #fff; }
.nc-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.nc-faq-item {
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius);
  padding: 22px 24px;
  cursor: pointer;
  transition: var(--n-transition);
}
.nc-faq-item:hover { border-color: #f59e0b; box-shadow: 0 4px 16px rgba(245,158,11,.08); }
.nc-faq-q { font-size: .95rem; font-weight: 700; color: var(--n-text); margin-bottom: 10px; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.nc-faq-toggle { flex-shrink: 0; width: 20px; height: 20px; background: var(--n-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--n-text-muted); transition: transform .18s; }
.nc-faq-item.open .nc-faq-toggle { transform: rotate(180deg); background: #f59e0b; color: #fff; }
.nc-faq-a { font-size: .88rem; color: var(--n-text-muted); line-height: 1.7; display: none; margin-top: 4px; }
.nc-faq-item.open .nc-faq-a { display: block; }

/* Responsive */
@media (max-width: 900px) {
  .nc-grid { grid-template-columns: 1fr; }
  .nc-info { order: -1; }
  .nc-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nc-form-card { padding: 24px 18px; }
  .nc-row-2 { grid-template-columns: 1fr; }
  .nc-hero { padding: 56px 0 52px; }
}
