/* Design tokens */
:root {
  --app-font-sans: "Manrope", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --app-bg: #f3f6fb;
  --app-surface: #ffffff;
  --app-border: #dbe4f0;
  --app-text: #1f2937;
  --app-muted: #55606f;
  --app-primary: #1d4ed8;
  --app-primary-hover: #1e40af;
  --app-shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.08);
  --app-shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
  --app-radius: 12px;
}

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--app-bg);
  color: var(--app-text);
  font-family: var(--app-font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.page-shell {
  flex: 1 0 auto;
  min-height: 0;
  display: block;
}

.page-shell::after {
  content: "";
  display: block;
  clear: both;
}

.page-top-spacer {
  padding-top: 90px;
}

.page-shell .container,
.page-shell .container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

.message-stack {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.table-responsive {
  border-radius: 10px;
  border: 1px solid var(--app-border);
  background: var(--app-surface);
}

.table thead th {
  vertical-align: middle;
}

.form-control,
.form-select {
  min-height: 38px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--app-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.card,
.panel {
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  box-shadow: var(--app-shadow-sm);
  background: var(--app-surface);
}

.alert {
  border-radius: 10px;
}

.btn {
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--app-primary);
  border-color: var(--app-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--app-primary-hover);
  border-color: var(--app-primary-hover);
}

.radio-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.radio-list li {
  margin-bottom: 0.3rem;
}

.report-form-shell {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  box-shadow: var(--app-shadow-sm);
  padding: 1.25rem;
  color: var(--app-text);
}

.report-form-grid {
  width: min(98%, 1300px);
  margin: 0 auto;
  gap: 0.35rem;
}

.report-form-page h2,
.report-form-page h5,
.report-form-page th,
.report-form-page td,
.report-form-page p,
.report-form-page li,
.report-form-page label {
  color: #1f2937;
}

.report-form-page .report-intro {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 0.45rem;
}

.report-intro-card {
  border: 1px solid #dbeafe;
  background: #f8fbff;
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 0.95rem;
}

.report-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.report-badge-prefill {
  background: #dbeafe;
  color: #1e3a8a;
}

.report-badge-empty {
  background: #f1f5f9;
  color: #334155;
}

.report-badge-edit {
  background: #eef2ff;
  color: #1e1b4b;
}

.report-form-page .report-guidelines {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 0.8rem;
  margin-bottom: 1rem;
}

.report-form-page .report-guidelines h5 {
  font-size: 1rem;
  margin: 0;
}

.report-form-page .report-table {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  table-layout: fixed;
}

.report-form-page .report-table thead th {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #0f172a;
  padding: 0.75rem 0.6rem;
}

.report-form-page .report-table tbody td {
  background: #ffffff;
  padding: 0.6rem;
}

.report-form-page .report-table tbody tr:nth-child(odd) td {
  background: #f8fafc;
}

.report-form-page input[type="text"],
.report-form-page input[type="number"],
.report-form-page textarea,
.report-form-page select {
  width: 100%;
  min-height: 36px;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  color: #0f172a;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.report-form-page textarea {
  min-height: 88px;
}

.report-form-page input[type="text"]:focus,
.report-form-page input[type="number"]:focus,
.report-form-page textarea:focus,
.report-form-page select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.report-form-page input[type="radio"] {
  accent-color: #2563eb;
}

.report-form-page .report-table .field-error-inline {
  color: #b91c1c;
  font-size: 0.74rem;
  margin-top: 0.2rem;
}

.report-form-page .btn-default {
  border-radius: 8px;
  border-color: #cbd5e1;
}

.report-form-page .btn-primary {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: #2563eb;
  border-color: #1d4ed8;
}

.report-wizard-toolbar {
  position: sticky;
  top: 88px;
  z-index: 30;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--app-border);
  border-radius: 14px;
  box-shadow: var(--app-shadow-sm);
  padding: 0.9rem;
  margin: 1rem 0 0.9rem;
}

.report-wizard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  font-weight: 600;
}

.report-wizard-progress {
  height: 9px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin: 0.55rem 0 0.75rem;
}

.report-wizard-progress > div {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  width: 0;
  transition: width 0.2s ease;
}

.report-wizard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.report-wizard-chip {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-block;
}

.report-wizard-chip.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.report-wizard-subchips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.report-subchip {
  border: 1px dashed #93c5fd;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 600;
}

.report-subchip:hover,
.report-subchip:focus {
  background: #dbeafe;
}

.report-wizard-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.report-wizard-actions .btn {
  min-width: 130px;
  border-radius: 10px;
}

.report-wizard-actions #wizardNext {
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.22);
}

.report-form-page .field-prefilled:not(.field-changed) {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.report-form-page .field-changed {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.14);
}

.report-form-page .cell-prefilled {
  background: #f8fafc !important;
}

.report-form-page .cell-changed {
  background: #eff6ff !important;
}

.report-form-page .rrhh-data-row td:first-child {
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.report-form-page .rrhh-data-row.rrhh-row-complete td:first-child::before {
  content: "●";
  color: #16a34a;
  margin-right: 0.35rem;
}

.report-form-page .radio-list-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.26rem 0.34rem;
}

.report-form-page .radio-list-compact li {
  margin-bottom: 0;
}

.report-form-page .radio-list-compact label {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
  font-weight: 600;
  font-size: 0.78rem;
}

.report-form-page .radio-list-compact input:checked + label,
.report-form-page .radio-list-compact label:has(input:checked) {
  border-color: #2563eb;
  background: #dbeafe;
  color: #1e3a8a;
}

.report-table tr[hidden] {
  display: none !important;
}

.report-review-shell {
  border: 1px solid var(--app-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--app-shadow-sm);
  padding: 1rem;
}

.report-review-actions {
  position: sticky;
  top: 86px;
  z-index: 20;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.report-review-actions .btn {
  margin-right: 0.45rem;
  margin-bottom: 0.4rem;
}

.report-review-note {
  font-size: 0.9rem;
  color: #475569;
}

@media (max-width: 768px) {
  .report-wizard-toolbar {
    top: 72px;
  }
  .report-wizard-actions .btn {
    flex: 1 1 100%;
  }
  .report-form-page .report-table {
    table-layout: auto;
  }
  .report-wizard-chip {
    width: auto;
    max-width: 100%;
  }
  .report-review-actions {
    top: 68px;
  }
}

/* Login */
.login-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
}

.login-page .row {
  width: 100%;
}

.login-col {
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 560px;
}

.login-card {
  border: 1px solid var(--app-border);
  border-radius: 14px;
  box-shadow: var(--app-shadow-md);
  overflow: hidden;
}

.login-card .panel-body {
  padding: 2rem 1.6rem;
}

.login-brand {
  margin-bottom: 1.4rem;
}

.login-brand img {
  max-height: 92px;
}

.login-title {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

/* Footer polish */
.footer_asco {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #0f172a !important;
  color: #e5e7eb !important;
}

.footer_asco .container-fluid {
  max-width: 1280px;
}

.footer_asco .table {
  margin-bottom: 0;
  background: transparent;
  color: #e5e7eb !important;
}

.footer_asco p,
.footer_asco li,
.footer_asco span,
.footer_asco td,
.footer_asco th,
.footer_asco h1,
.footer_asco h2,
.footer_asco h3,
.footer_asco h4,
.footer_asco h5,
.footer_asco h6 {
  color: #e5e7eb !important;
}

.footer_asco a {
  color: #bfdbfe !important;
}

.footer_asco .footer-email-link {
  display: block;
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-all;
  line-height: 1.35;
}

.footer_asco .fa-ul .ms-2 {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer_asco a:hover,
.footer_asco a:focus {
  color: #dbeafe !important;
  text-decoration: underline;
}

.report-table th,
.report-table td {
  vertical-align: middle !important;
}

.section-muted {
  color: #55606f;
}

.nowrap {
  white-space: nowrap;
}

.small-note {
  font-size: 0.9rem;
  color: #4a5568;
}

.footer_asco {
  margin: 0 !important;
  width: 100%;
  clear: both;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ===== 2026 Landing + Navbar refresh ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
}

.site-market-bar {
  background: #0b1220;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  min-height: 40px;
}

.site-market-bar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-market-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-market-item {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.2;
}

.site-market-item strong {
  color: #f8fafc;
  font-weight: 700;
}

.site-market-status {
  color: #94a3b8;
  font-size: 0.84rem;
}

.site-market-error {
  color: #fca5a5;
  font-size: 0.84rem;
}

.site-navbar.navbar {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  min-height: 72px;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}

.site-navbar .navbar-header {
  min-height: 72px;
}

.site-brand {
  height: 72px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.05;
  color: #f8fafc !important;
  padding-top: 0;
  padding-bottom: 0;
}

.site-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-brand-main {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-brand-sub {
  font-size: 0.76rem;
  color: #cbd5e1;
  font-weight: 600;
}

.site-navbar .navbar-nav > li > a {
  color: #e5e7eb !important;
  font-weight: 600;
  height: auto;
  padding: 25px 14px;
  border-top: 0 !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-navbar .navbar-nav > li > a:hover,
.site-navbar .navbar-nav > li > a:focus {
  color: #ffffff !important;
  background: rgba(59, 130, 246, 0.22) !important;
  transform: none !important;
}

.site-navbar .navbar-nav > li > a:hover span,
.site-navbar .navbar-nav > li > a:focus span {
  transform: none !important;
}

.site-navbar .navbar-nav > li.active > a,
.site-navbar .navbar-nav > li.active > a:hover {
  color: #ffffff !important;
  background: #1d4ed8 !important;
}

.site-navbar-toggle {
  margin-top: 18px;
  border-color: rgba(148, 163, 184, 0.6) !important;
  background: rgba(30, 41, 59, 0.95) !important;
}

.site-navbar-toggle .icon-bar {
  background-color: #e2e8f0 !important;
}

.landing-page {
  color: #1f2937;
}

.landing-page a {
  color: #1d4ed8;
}

.landing-page .btn-default {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #1f2937;
}

.landing-section {
  padding: 3.5rem 0 3.2rem;
}

.landing-section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.landing-section-head p {
  margin: 0 auto 1.4rem;
  max-width: 680px;
  color: #475569;
}

.landing-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0b1633;
}

.landing-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.landing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(7, 13, 30, 0.82) 0%, rgba(7, 13, 30, 0.52) 45%, rgba(7, 13, 30, 0.2) 100%);
}

.landing-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 1.2rem;
  padding-bottom: 2.2rem;
}

.landing-hero-col {
  margin-bottom: 1.6rem;
}

.landing-hero-logo {
  max-width: 240px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.28);
  margin-bottom: 1rem;
}

.landing-chip {
  display: inline-block;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(147, 197, 253, 0.42);
  color: #dbeafe;
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}

.landing-hero-title {
  margin: 0;
  font-size: 3rem;
  color: #ffffff;
  text-align: left;
}

.landing-hero-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: #bfdbfe;
  margin-bottom: 0.7rem;
}

.landing-hero-text {
  color: #e2e8f0;
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 1rem;
}

.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.landing-cta-row .btn {
  min-width: 145px;
}

.landing-contact-card,
.landing-indicators {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.2);
}

.landing-contact-card {
  padding: 1.2rem 1.25rem;
  margin-bottom: 1.4rem;
}

.landing-card-title {
  margin-top: 0;
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
}

.landing-contact-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #334155;
}

.landing-contact-list li {
  margin-bottom: 0.58rem;
  font-size: 1.12rem;
}

.landing-contact-phone-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.landing-contact-phone {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8 !important;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  border: 1px solid #bfdbfe;
  text-decoration: none;
}

.landing-contact-label {
  font-size: 1.08rem;
}

.landing-contact-phone:hover,
.landing-contact-phone:focus {
  background: #dbeafe;
  color: #1e40af !important;
  text-decoration: none;
}

.badge-24x7 {
  background-color: #16a34a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35em 0.6em;
}

.landing-indicators {
  padding: 0.9rem 1rem;
}

.landing-indicators-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.landing-indicators-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.landing-indicators-head small {
  color: #64748b;
}

.indicator-card {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.55rem;
}

.indicator-name {
  margin: 0;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 0.9rem;
}

.indicator-value {
  margin: 0.2rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.indicator-date {
  margin: 0;
  color: #475569;
  font-size: 0.78rem;
}

.indicator-error {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: #b91c1c;
}

.landing-services {
  background: #f8fbff;
}

.landing-service-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #dce8f9;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.landing-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #1d4ed8;
  background: #dbeafe;
}

.landing-service-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.landing-service-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #475569;
}

.landing-service-card li {
  margin-bottom: 0.4rem;
}

.landing-info-row {
  margin-top: 0.8rem;
}

.landing-info-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  margin-bottom: 1rem;
}

.landing-info-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.landing-info-body {
  padding: 1rem;
}

.landing-info-body h3 {
  margin-top: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.landing-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.landing-about {
  background: #ffffff;
}

.landing-about h2 {
  margin-top: 0;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0f172a;
}

.landing-about p {
  color: #475569;
}

.landing-about-logo {
  max-width: 270px;
  width: 100%;
}

.landing-bullet-list {
  margin: 0;
  padding-left: 1.2rem;
}

.landing-bullet-list li {
  margin-bottom: 0.3rem;
  color: #334155;
}

.landing-logos {
  background: #1e293b;
}

.landing-logos .landing-section-head h2,
.landing-logos .landing-section-head p {
  color: #e2e8f0;
}

.landing-logo-card {
  background: rgba(30, 41, 59, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 14px;
  padding: 1rem;
  min-height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.landing-logo-card img {
  max-height: 96px;
  width: auto;
}

.landing-contacts {
  background: #0f172a;
  color: #e2e8f0;
}

.landing-contacts .landing-section-head h2,
.landing-contacts .landing-section-head p {
  color: #e2e8f0;
}

.contact-card {
  height: 100%;
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-card p,
.contact-card li {
  color: #cbd5e1;
}

.contact-card ul {
  margin: 0;
  padding-left: 1rem;
}

.contact-card a {
  color: #93c5fd !important;
  word-break: break-word;
}

.landing-map-section {
  background: #0b1225;
  padding-top: 1.4rem;
}

.landing-map-section h3 {
  color: #e2e8f0;
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.landing-map-section .map iframe {
  display: block;
}

@media (max-width: 991px) {
  .site-navbar .navbar-nav > li > a {
    padding: 12px 14px;
  }

  .site-navbar .navbar-collapse {
    border-top: 1px solid rgba(148, 163, 184, 0.32) !important;
    background: #0f172a;
    box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.18);
  }

  .site-brand-sub {
    display: none;
  }
}

@media (max-width: 767px) {
  .page-top-spacer {
    padding-top: 110px;
  }

  .site-navbar.navbar {
    min-height: 64px;
  }

  .site-navbar .navbar-header {
    min-height: 64px;
  }

  .site-brand {
    height: 64px;
    padding-left: 10px;
    gap: 0.45rem;
  }

  .site-brand-main {
    font-size: 1.05rem;
  }

  .site-brand-logo {
    width: 30px;
    height: 30px;
  }

  .site-navbar-toggle {
    margin-top: 14px;
    margin-right: 10px;
  }

  .site-market-bar {
    min-height: 30px;
  }

  .site-market-bar-inner {
    min-height: 30px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .site-market-item {
    font-size: 0.8rem;
  }

  .site-market-status,
  .site-market-error {
    display: none;
  }

  .footer_asco .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer_asco .fa-ul {
    margin-left: 1.2em !important;
    padding-right: 0.25rem;
  }

  .footer_asco .fa-ul li {
    text-align: left;
  }

  .landing-hero {
    min-height: 680px;
  }

  .landing-hero-content {
    padding-bottom: 2.8rem;
  }

  .landing-hero-title {
    font-size: 2.35rem;
  }

  .landing-hero-subtitle {
    font-size: 1.18rem;
  }

  .landing-hero-text {
    font-size: 1rem;
  }

  .landing-contact-phone {
    font-size: 1.06rem;
  }

  .landing-contact-label {
    font-size: 1rem;
  }

  .landing-section {
    padding: 2.7rem 0 2.4rem;
  }
}

@media (min-width: 768px) {
  .page-top-spacer {
    padding-top: 124px;
  }
}
