/* =============================================================
   contact.css — Systems & Network Training
   Save to: /css/pages/contact.css
   ============================================================= */


/* ── Hero banner ──────────────────────────────────────────── */
/*.contact-hero {
  background: var(--snt-navy);
  padding: 3rem 0 2.5rem;
  
}
.contact-hero .eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
 
  color: #a3cad1;
  margin-bottom: 0.5rem;
}
.contact-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.contact-hero p {
  color: #d0d9de;
  font-size: 0.95rem;
  margin: 0;
}

/* ── Body section ─────────────────────────────────────────── */
.contact-body {
  background: #fff;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.contact-sidebar {
  background: #f7f9fa;
  border: 1px solid #e2e8ec;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
}


.info-block {
  margin-bottom: 1.4rem;
}
.info-block .val {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.65;
}
.info-block .val a {
  color: var(--snt-teal);
  text-decoration: none;
}
.info-block .val a:hover {
  color: var(--snt-teal-dark);
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  font-size: 0.825rem;
  border-collapse: collapse;
}
.hours-table tr td {
  padding: 4px 0;
  border-bottom: 1px solid #e2e8ec;
}
.hours-table tr:last-child td {
  border-bottom: none;
}
.hours-table .day  { color: #666; }
.hours-table .time { text-align: right; font-weight: 500; color: #333; }

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #dde4e8;
  margin-top: 1rem;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}

/* ── Form wrapper ─────────────────────────────────────────── */
.contact-form-wrap {
  padding: 0 0 0 1.5rem;
}
@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 0;
  }
}

/* ── Reason chips ─────────────────────────────────────────── */
.reason-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.reason-chip {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ccd6db;
  color: #555;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s ease;
  user-select: none;
}
.reason-chip:hover,
.reason-chip.active {
  border-color: var(--snt-teal);
  background: var(--snt-teal-soft);
  color: var(--snt-teal-dark);
}

/* ── Form fields ──────────────────────────────────────────── */
.contact-form label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
  display: block;
}
.contact-form .form-control {
  font-size: 0.875rem;
  border: 1px solid #ccd6db;
  border-radius: 6px;
  padding: 8px 11px;
  color: #333;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form .form-control:focus {
  border-color: var(--snt-teal);
  box-shadow: 0 0 0 3px var(--snt-teal-soft);
  outline: none;
}
.contact-form textarea.form-control {
  height: 120px;
  resize: vertical;
}

/* ── Submit button ────────────────────────────────────────── */
.btn-snt {
  background: var(--snt-orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-snt:hover {
  background: var(--snt-teal-dark);
  color: #fff;
}

/* ── Alerts ───────────────────────────────────────────────── */
.alert-snt-success {
  background: var(--snt-teal-soft);
  border: 1px solid #9FE1CB;
  color: var(--snt-teal-dark);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.alert-snt-error {
  background: #fff3f3;
  border: 1px solid #f5b8b8;
  color: #8b1f1f;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.alert-snt-error ul {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.form-note {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.6rem;
}

