/* ── Contact Page ──────────────────────────────────────────────────────── */
:root {
  --ssh-font-head: 'Outfit', sans-serif;
  --ssh-font-body: 'Inter', sans-serif;
  --ssh-teal:      #1c98ab;
  --ssh-ink:       #14213d;
  --ssh-body:      #4b5563;
  --ssh-muted:     #6b7280;
  --ssh-soft:      #f6f7f9;
  --ssh-soft2:     #eef1f6;
  --ssh-line:      #e5e7eb;
}
.ssh-contact-page {
  font-family: var(--ssh-font-body, 'Inter', sans-serif);
  color: #4b5563;
}
.ssh-c-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.ssh-contact-hero {
  background: linear-gradient(135deg, #0e6e7e 0%, #1c98ab 100%);
  padding: 40px 0 36px;
  text-align: center;
  color: #fff;
}
.ssh-c-eyebrow {
  font-family: var(--ssh-font-head, 'Plus Jakarta Sans', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .7;
  margin: 0 0 14px;
}
.ssh-c-heading {
  font-family: var(--ssh-font-head, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 18px;
  line-height: 1.1;
}
.ssh-c-sub {
  font-size: 16px;
  line-height: 1.65;
  opacity: .85;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Info cards ── */
.ssh-contact-cards-section {
  background: #fff;
  padding: 60px 0;
}
.ssh-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .ssh-contact-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.ssh-info-card {
  background: #f6f7f9;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s, border-color .2s;
}
.ssh-info-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.ssh-info-card:hover {
  border-color: #1c98ab;
  box-shadow: 0 6px 24px rgba(28,152,171,.13);
}
.ssh-info-icon {
  width: 48px;
  height: 48px;
  background: #1c98ab;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ssh-info-title {
  font-family: var(--ssh-font-head, 'Plus Jakarta Sans', sans-serif);
  font-size: 17px;
  font-weight: 800;
  color: #0e4d57;
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ssh-info-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid #1c98ab;
  margin-top: 14px;
}
.ssh-info-body p { margin: 0; }
.ssh-info-label { font-weight: 700; color: #0e4d57; }
.ssh-info-key   { font-weight: 600; color: #0e4d57; }
.ssh-info-link  { color: #1c98ab; text-decoration: none; font-weight: 500; }
.ssh-info-link:hover { text-decoration: underline; }

.ssh-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
  margin-top: 4px;
}
.ssh-status-pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .7;
}
.ssh-status-pill.ssh-open   { background: #d1fae5; color: #065f46; }
.ssh-status-pill.ssh-closed { background: #fee2e2; color: #991b1b; }

/* ── Map + Form ── */
.ssh-contact-main {
  background: #f6f7f9;
  padding: 60px 0 80px;
}
.ssh-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .ssh-contact-split { grid-template-columns: 1fr; gap: 36px; }
}
.ssh-section-title {
  font-family: var(--ssh-font-head, 'Plus Jakarta Sans', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: #0e4d57;
  margin: 0 0 20px;
}

/* Map */
.ssh-map-col {
  display: flex;
  flex-direction: column;
}
.ssh-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(16,24,40,.07);
  flex: 1;
  min-height: 300px;
}
.ssh-map-wrap iframe { width: 100%; height: 100%; display: block; min-height: 300px; }

/* Form column */
.ssh-form-col {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 36px 36px 40px;
  box-shadow: 0 2px 8px rgba(16,24,40,.05);
}
@media (max-width: 560px) {
  .ssh-form-col { padding: 24px 20px 28px; }
}
.ssh-form-note {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: -8px 0 24px;
  padding: 10px 14px;
  background: #eef1f6;
  border-radius: 8px;
  border-left: 3px solid #1c98ab;
}

/* Form layout */
.ssh-contact-form { display: flex; flex-direction: column; gap: 18px; }
.ssh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .ssh-form-row { grid-template-columns: 1fr; }
}
.ssh-field { display: flex; flex-direction: column; gap: 5px; }
.ssh-field-label {
  font-size: 13px;
  font-weight: 600;
  color: #0e4d57;
  font-family: var(--ssh-font-body, 'Inter', sans-serif);
}
.ssh-field-label .req { color: #1c98ab; margin-left: 1px; }

.ssh-field input,
.ssh-field textarea {
  font-family: var(--ssh-font-body, 'Inter', sans-serif);
  font-size: 14px;
  color: #0e4d57;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 14px;
  height: 44px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.ssh-field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  min-height: 120px;
}
.ssh-field input:focus,
.ssh-field textarea:focus {
  border-color: #1c98ab;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(28,152,171,.15);
}
.ssh-field input.ssh-input-err,
.ssh-field textarea.ssh-input-err {
  border-color: #ef4444;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.ssh-err {
  display: none;
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  margin-top: 2px;
}

/* Submit button */
.ssh-form-footer { margin-top: 4px; }
.ssh-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 36px;
  background: #1c98ab;
  color: #fff !important;
  font-family: var(--ssh-font-head, 'Plus Jakarta Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(28,152,171,.35);
}
.ssh-submit-btn:hover:not(:disabled) {
  background: #17849a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28,152,171,.4);
}
.ssh-submit-btn:disabled { cursor: not-allowed; }
.ssh-btn-spinner { display: none; }
.ssh-btn-spinner.active { display: inline-flex; animation: ssh-spin .7s linear infinite; }
@keyframes ssh-spin { to { transform: rotate(360deg); } }

/* Alerts */
.ssh-form-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}
.ssh-form-alert[hidden] { display: none; }
.ssh-form-alert svg { flex-shrink: 0; margin-top: 1px; }
.ssh-form-success { background: #d1fae5; color: #065f46; }
.ssh-form-success svg { stroke: #065f46; }
.ssh-form-error   { background: #fee2e2; color: #991b1b; }
.ssh-form-error svg { stroke: #991b1b; }

