html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(245, 247, 251, 0.86);
  backdrop-filter: blur(4px);
}

.page-loading .page-loader {
  display: flex;
}

.page-loader-panel {
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.16);
}

.page-loader-spinner {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  border: 0.18rem solid #0d6efd;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-busy-spin 0.65s linear infinite;
}

.btn-busy,
.dashboard-logout button.btn-busy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  pointer-events: none;
  cursor: wait;
}

.btn-busy[disabled],
.btn-busy[aria-disabled="true"] {
  opacity: 0.78;
}

.btn-busy-spinner {
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  border: 0.16em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-busy-spin 0.65s linear infinite;
}

.btn-sm .btn-busy-spinner,
.btn-busy.btn-sm .btn-busy-spinner {
  width: 0.9em;
  height: 0.9em;
  border-width: 0.14em;
}

.btn-busy-label {
  display: inline-flex;
  align-items: center;
  gap: inherit;
}

@keyframes button-busy-spin {
  to {
    transform: rotate(360deg);
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin-bottom: 60px;
  background: #f5f7fa;
}

.public-body {
  background: #ffffff;
}

.airway-home {
  color: #14213d;
  background: #ffffff;
}

.airway-navbar {
  position: sticky;
  top: 0;
  z-index: 1010;
  border-bottom: 1px solid #dbe4ef;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.airway-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #111827;
  font-weight: 800;
}

.airway-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0d6efd;
  color: #ffffff;
  font-size: 0.9rem;
}

.airway-navbar .nav-link {
  color: #475569;
  font-weight: 700;
}

.airway-navbar .nav-link:hover,
.airway-navbar .nav-link:focus,
.airway-navbar .nav-link.active {
  color: #0d6efd;
}

.airway-nav-action {
  margin-left: 0.5rem;
  border-radius: 8px;
  font-weight: 800;
}

.airway-hero {
  min-height: min(760px, calc(100vh - 58px));
  display: grid;
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    linear-gradient(90deg, rgba(8, 29, 62, 0.9), rgba(8, 29, 62, 0.64), rgba(8, 29, 62, 0.18)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: #ffffff;
}

.airway-hero-content {
  max-width: 760px;
}

.airway-kicker,
.airway-section-heading span,
.airway-service-card div > span {
  color: #35a7ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airway-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.airway-subtitle {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.6;
}

.airway-tracking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 0.75rem;
  max-width: 680px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.airway-tracking .form-control,
.airway-tracking .btn {
  min-height: 3.35rem;
  border-radius: 8px;
  font-weight: 800;
}

.airway-tracking-message {
  max-width: 680px;
  min-height: 3rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.airway-tracking-message:empty {
  display: none;
}

.airway-tracking-message.is-error {
  background: #fff3cd;
  color: #664d03;
}

.airway-tracking-message.is-success {
  background: #e8f7ee;
  color: #14532d;
}

.airway-tracking-message span,
.airway-tracking-message a {
  display: block;
  margin-top: 0.35rem;
}

.airway-tracking-message a {
  color: inherit;
  font-weight: 800;
}

.home-tracking-table-wrap {
  width: 100%;
  margin-top: 0.75rem;
  overflow-x: auto;
}

.home-tracking-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.home-tracking-table th,
.home-tracking-table td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(20, 83, 45, 0.14);
  text-align: left;
  vertical-align: top;
}

.home-tracking-table th {
  background: rgba(20, 83, 45, 0.1);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-tracking-table tr:last-child td {
  border-bottom: 0;
}

.home-tracking-status {
  font-weight: 800;
}

.airway-tracking-message pre {
  max-height: 14rem;
  margin: 0.65rem 0 0;
  padding: 0.75rem;
  overflow: auto;
  border-radius: 8px;
  background: rgba(20, 83, 45, 0.08);
  color: inherit;
  font-size: 0.82rem;
  white-space: pre-wrap;
}

.tracking-api-response {
  max-height: 22rem;
  padding: 0.9rem;
  overflow: auto;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.84rem;
  white-space: pre-wrap;
}

.airway-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.airway-section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.airway-section-heading h2,
.airway-about h2,
.airway-contact h2 {
  margin: 0.35rem 0 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.airway-track-panel {
  background: #f5f8fc;
}

.airway-status-grid,
.airway-services,
.airway-about-grid,
.airway-contact-grid {
  display: grid;
  gap: 1rem;
}

.airway-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airway-status-grid div,
.airway-about-stats div {
  padding: 1.25rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.07);
}

.airway-status-grid strong,
.airway-about-stats strong {
  display: block;
  color: #111827;
  font-size: 1.45rem;
}

.airway-status-grid span,
.airway-about-stats span {
  color: #64748b;
}

.airway-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airway-service-card {
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(20, 33, 61, 0.08);
}

.airway-service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.airway-service-card div {
  padding: 1.35rem;
}

.airway-service-card h3 {
  margin: 0.35rem 0 0.65rem;
  color: #111827;
  font-size: 1.3rem;
  font-weight: 800;
}

.airway-service-card p,
.airway-about p,
.airway-contact p {
  margin-bottom: 0;
  color: #64748b;
  line-height: 1.7;
}

.airway-about {
  background:
    linear-gradient(rgba(245, 248, 252, 0.92), rgba(245, 248, 252, 0.92)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.airway-about-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.airway-about-stats {
  display: grid;
  gap: 1rem;
}

.airway-contact {
  background: #111827;
  color: #ffffff;
}

.airway-contact h2 {
  color: #ffffff;
}

.airway-contact p {
  color: #cbd5e1;
}

.airway-contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  align-items: center;
}

.airway-contact-list {
  display: grid;
  gap: 0.75rem;
}

.airway-contact-list a,
.airway-contact-list span {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.app-shell {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  min-height: calc(100vh - 60px);
  padding: 1rem;
  transition: grid-template-columns 0.2s ease;
}

.app-shell.sidebar-closed {
  grid-template-columns: 76px minmax(0, 1fr);
}

.app-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 1.25rem;
  padding: 0;
}

.app-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.07);
}

.app-header-fill {
  flex: 1 1 auto;
}

.app-wallet-pill {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fafc;
  color: #102a43;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.app-wallet-pill:hover,
.app-wallet-pill:focus,
.app-wallet-pill.active {
  border-color: #1f7a8c;
  color: #102a43;
  box-shadow: 0 10px 24px rgba(31, 122, 140, 0.14);
  transform: translateY(-1px);
}

.app-wallet-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: #e0f2fe;
}

.app-wallet-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.app-wallet-label {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.app-wallet-balance {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.app-header-logo {
  width: 190px;
  max-width: 62vw;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
}

.app-header-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.login-page {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
  padding: 1.5rem 0 2rem;
  color: #14213d;
}

.login-shell {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(20, 33, 61, 0.12);
}

.login-visual {
  position: relative;
  min-height: 620px;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 33, 61, 0.78), rgba(20, 33, 61, 0.88)),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.login-brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
}

.route-map {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 11rem;
  display: flex;
  align-items: center;
}

.route-point {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #20c997;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.14);
}

.route-point-mid {
  background: #f7b731;
}

.route-point-end {
  background: #35a7ff;
}

.route-line {
  height: 3px;
  flex: 1 1 auto;
  margin: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.route-line-short {
  flex-grow: 0.65;
}

.shipment-card {
  position: absolute;
  display: grid;
  gap: 0.25rem;
  min-width: 180px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.shipment-card-primary {
  left: 2rem;
  bottom: 2rem;
}

.shipment-card-secondary {
  right: 2rem;
  bottom: 5.5rem;
}

.shipment-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.shipment-card strong {
  font-size: 1.65rem;
  line-height: 1;
}

.login-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.login-heading {
  margin-bottom: 2rem;
}

.login-kicker {
  margin-bottom: 0.65rem;
  color: #0d6efd;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-heading h1 {
  max-width: 12ch;
  margin-bottom: 0.9rem;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.login-heading p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: #5f6f85;
  line-height: 1.7;
}

.login-alert {
  border-radius: 8px;
}

.login-form {
  display: grid;
  gap: 1.15rem;
}

.validation-summary ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.login-form .form-label {
  margin-bottom: 0;
  color: #25334a;
  font-weight: 700;
}

.login-form .form-control {
  min-height: 3.25rem;
  border-color: #cfd9e6;
  border-radius: 8px;
  color: #14213d;
}

.login-form .form-control::placeholder {
  color: #8a98aa;
}

.login-form .form-control:focus {
  border-color: #0d6efd;
}

.field-validation {
  min-height: 1.2rem;
  font-size: 0.88rem;
}

.login-submit {
  min-height: 3.25rem;
  margin-top: 0.35rem;
  border-radius: 8px;
  font-weight: 800;
}

.registration-page {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
  padding: 1.5rem 0 2rem;
  color: #14213d;
}

.registration-shell {
  width: min(100%, 860px);
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(20, 33, 61, 0.12);
}

.registration-heading {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.registration-heading h1 {
  margin-bottom: 0.65rem;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}

.registration-heading p:last-child {
  max-width: 48rem;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: #64748b;
}

.registration-form {
  display: grid;
  gap: 1.25rem;
}

.registration-type-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.registration-type-option {
  display: flex;
  gap: 0.85rem;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fbff;
  cursor: pointer;
}

.registration-type-option input {
  margin-top: 0.3rem;
}

.registration-type-option strong,
.registration-type-option small {
  display: block;
}

.registration-type-option strong {
  color: #111827;
}

.registration-type-option small {
  margin-top: 0.25rem;
  color: #64748b;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.registration-email-field,
.registration-otp-panel,
.registration-address {
  grid-column: 1 / -1;
}

.registration-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: start;
}

.registration-otp-panel {
  padding: 0.9rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fbff;
}

.registration-otp-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.55rem;
  color: #64748b;
  font-size: 0.9rem;
}

.registration-otp-message {
  min-height: 1.25rem;
  margin-top: 0.55rem;
  font-weight: 700;
}

.registration-otp-message.is-success {
  color: #146c43;
}

.registration-otp-message.is-error {
  color: #b42318;
}

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.registration-actions .btn {
  min-width: 170px;
  min-height: 3rem;
  border-radius: 8px;
  font-weight: 800;
}

.kyc-page {
  display: grid;
  gap: 0.85rem;
  color: #14213d;
}

.kyc-shell {
  width: min(100%, 1080px);
  display: grid;
  gap: 0.85rem;
}

.kyc-heading {
  padding: 0.15rem 0 0.25rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.kyc-heading .login-kicker {
  margin-bottom: 0.25rem;
  color: #0d6efd;
  font-size: 0.72rem;
  line-height: 1.2;
}

.kyc-heading h1 {
  margin: 0 0 0.25rem;
  color: #111827;
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

.kyc-heading p:last-child {
  max-width: 42rem;
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.45;
}

.kyc-form {
  display: grid;
  gap: 0.85rem;
}

.kyc-tabs {
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
}

.kyc-tabs .nav-tabs {
  gap: 0.25rem;
  padding: 0.85rem 0.85rem 0;
  border-bottom-color: #dbe4ef;
  background: #f8fbff;
}

.kyc-tabs .nav-link {
  min-height: 2.8rem;
  border-radius: 8px 8px 0 0;
  color: #475569;
  font-weight: 800;
}

.kyc-tabs .nav-link.active {
  color: #0d6efd;
  background: #ffffff;
}

.kyc-tab-content {
  padding: 1.2rem;
}

.kyc-tab-content .tab-pane {
  display: none;
}

.kyc-tab-content .tab-pane.active {
  display: grid;
  gap: 1rem;
}

.kyc-section {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
}

.kyc-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.kyc-section-heading > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 8px;
  background: #0d6efd;
  color: #ffffff;
  font-weight: 800;
}

.kyc-section-heading h2 {
  margin: 0 0 0.25rem;
  color: #111827;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0;
}

.kyc-section-heading p {
  margin: 0;
  color: #64748b;
}

.kyc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.kyc-section-message {
  display: none;
  min-height: 2.45rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid #cfe8d8;
  border-radius: 8px;
  background: #f0fdf6;
  color: #14532d;
  font-weight: 800;
}

.kyc-section-message.is-success,
.kyc-section-message.is-error {
  display: block;
}

.kyc-section-message.is-error {
  border-color: #f3c8c8;
  background: #fff5f5;
  color: #b42318;
}

.kyc-full {
  grid-column: 1 / -1;
}

.kyc-document-group {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fbff;
}

.kyc-document-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1.25fr);
  gap: 1rem;
  align-items: start;
}

.kyc-document-field {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.kyc-document-field .form-control {
  width: 100%;
}

.kyc-optional-text {
  color: #64748b;
  font-weight: 700;
}

.kyc-form .form-label {
  color: #25334a;
  font-weight: 700;
}

.kyc-form .form-control {
  min-height: 3rem;
  border-color: #cfd9e6;
  border-radius: 8px;
  color: #14213d;
}

.kyc-document-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.45rem;
  margin-bottom: 0.55rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid #cfe8d8;
  border-radius: 8px;
  background: #f0fdf6;
  color: #14532d;
}

.kyc-document-status span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kyc-document-status strong {
  min-width: 0;
  overflow: hidden;
  color: #102a43;
  font-size: 0.9rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kyc-help-text {
  display: block;
  margin-top: 0.4rem;
  color: #64748b;
  font-size: 0.86rem;
}

.kyc-pincode-status {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
}

.kyc-pincode-status.is-error {
  color: #b42318;
}

.kyc-actions,
.kyc-section-actions {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
}

.kyc-actions .btn,
.kyc-section-actions .btn {
  min-height: 3rem;
  border-radius: 8px;
  font-weight: 800;
}

@media (max-width: 575.98px) {
  .registration-email-row {
    grid-template-columns: 1fr;
  }

  .registration-email-row .btn {
    width: 100%;
  }

  .registration-otp-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .kyc-section,
  .kyc-tab-content {
    padding: 1rem;
  }

  .kyc-heading {
    padding: 0.15rem 0 0.25rem;
  }

  .kyc-tabs .nav-tabs {
    display: grid;
    gap: 0.45rem;
  }

  .kyc-tabs .nav-link {
    width: 100%;
    border-radius: 8px;
  }

  .kyc-grid {
    grid-template-columns: 1fr;
  }

  .kyc-document-row {
    grid-template-columns: 1fr;
  }

  .kyc-actions,
  .kyc-section-actions {
    justify-content: stretch;
  }

  .kyc-actions .btn,
  .kyc-section-actions .btn {
    width: 100%;
  }
}

.dashboard-page {
  display: grid;
  gap: 1.5rem;
  color: #14213d;
}

.dashboard-sidebar {
  position: sticky;
  top: 1rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  width: 280px;
  height: calc(100vh - 2rem);
  max-height: calc(100vh - 2rem);
  padding: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.13), transparent 16rem),
    linear-gradient(160deg, #07172f 0%, #102a43 54%, #173b57 100%);
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(6, 26, 74, 0.24);
  overflow: hidden;
  transition: width 0.2s ease, padding 0.2s ease, border-width 0.2s ease, transform 0.2s ease;
  z-index: 1030;
}

.sidebar-closed .dashboard-sidebar {
  width: 76px;
  padding-right: 0.65rem;
  padding-left: 0.65rem;
}

.sidebar-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.14);
}

.sidebar-toggle-floating {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1040;
  display: none;
}

.sidebar-toggle-header {
  flex: 0 0 42px;
}

.sidebar-toggle-inline {
  flex: 0 0 42px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(203, 213, 225, 0.22);
  box-shadow: none;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus {
  border-color: #1f7a8c;
  color: #1f7a8c;
}

.sidebar-toggle-lines,
.sidebar-toggle-lines::before,
.sidebar-toggle-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.sidebar-toggle-lines {
  position: relative;
}

.sidebar-toggle-lines::before,
.sidebar-toggle-lines::after {
  position: absolute;
  left: 0;
}

.sidebar-toggle-lines::before {
  top: -6px;
}

.sidebar-toggle-lines::after {
  top: 6px;
}

.sidebar-backdrop {
  display: none;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 58px;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0 0.9rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.18);
}

.dashboard-logo {
  min-width: 0;
  width: 176px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
}

.dashboard-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.sidebar-closed .dashboard-brand {
  justify-content: center;
  gap: 0;
  min-height: 50px;
  margin-bottom: 0.55rem;
  padding-right: 0;
  padding-left: 0;
}

.sidebar-closed .dashboard-logo {
  display: none;
}

.sidebar-closed .sidebar-toggle-inline {
  margin-left: 0;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  border-color: rgba(203, 213, 225, 0.2);
}

.dashboard-menu {
  display: grid;
  flex: 1 1 auto;
  gap: 0.45rem;
  min-height: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(203, 213, 225, 0.46) transparent;
  scrollbar-width: thin;
}

.dashboard-menu::-webkit-scrollbar {
  width: 8px;
}

.dashboard-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.dashboard-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dashboard-menu a,
.dashboard-logout button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3rem;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #cbd5e1;
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.dashboard-menu a:hover,
.dashboard-menu a:focus,
.dashboard-logout button:hover,
.dashboard-logout button:focus {
  background: #173b57;
  color: #ffffff;
}

.dashboard-menu a.active {
  position: relative;
  background: linear-gradient(135deg, #1f7a8c, #0d6efd);
  color: #ffffff;
  box-shadow: inset 4px 0 0 #f7b731, 0 10px 22px rgba(13, 110, 253, 0.2);
}

.dashboard-menu a.active .menu-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.dashboard-menu-section {
  display: grid;
  gap: 0.35rem;
}

.dashboard-menu-heading {
  padding: 0.45rem 0.85rem 0.15rem;
  color: #9fb3c8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-menu-toggle {
  width: 100%;
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.dashboard-menu-toggle:hover,
.dashboard-menu-toggle:focus,
.dashboard-menu-toggle.active,
.dashboard-menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.dashboard-menu-chevron {
  width: 0.52rem;
  height: 0.52rem;
  flex: 0 0 0.52rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.8;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.dashboard-menu-toggle[aria-expanded="true"] .dashboard-menu-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.dashboard-submenu {
  display: grid;
  gap: 0.22rem;
}

.dashboard-submenu.collapse:not(.show) {
  display: none;
}

.dashboard-menu a.dashboard-submenu-link {
  min-height: 2.75rem;
  padding-left: 1.35rem;
}

.customer-dashboard-menu {
  gap: 0.35rem;
  align-content: start;
}

.customer-dashboard-menu .dashboard-menu-section {
  gap: 0.22rem;
  padding: 0.25rem 0 0.35rem;
}

.customer-dashboard-menu .dashboard-menu-section + .dashboard-menu-section {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(203, 213, 225, 0.16);
}

.customer-dashboard-menu .dashboard-menu-heading {
  padding: 0.25rem 0.85rem 0.15rem;
  color: #bad4ef;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.customer-dashboard-menu .dashboard-menu-toggle {
  padding: 0.35rem 0.85rem;
}

.customer-dashboard-menu a.dashboard-submenu-link {
  min-height: 2.7rem;
  padding-left: 0.85rem;
}

.customer-dashboard-menu .menu-icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.menu-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(203, 213, 225, 0.14);
  color: #93c5fd;
}

.menu-icon::before {
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  content: "";
  -webkit-mask: var(--menu-icon-url) center / contain no-repeat;
  mask: var(--menu-icon-url) center / contain no-repeat;
}

.menu-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-icon-dashboard {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='8' rx='1.5'/%3E%3Crect x='14' y='3' width='7' height='5' rx='1.5'/%3E%3Crect x='14' y='12' width='7' height='9' rx='1.5'/%3E%3Crect x='3' y='15' width='7' height='6' rx='1.5'/%3E%3C/svg%3E");
}

.menu-icon-home {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11 12 3l9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
}

.menu-icon-menu,
.menu-icon-role-map {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Ccircle cx='4' cy='6' r='1.4'/%3E%3Ccircle cx='4' cy='12' r='1.4'/%3E%3Ccircle cx='4' cy='18' r='1.4'/%3E%3C/svg%3E");
}

.menu-icon-user,
.menu-icon-profile {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M5 21a7 7 0 0 1 14 0'/%3E%3C/svg%3E");
}

.menu-icon-customers {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3.4'/%3E%3Ccircle cx='17' cy='10' r='2.8'/%3E%3Cpath d='M3.5 21a6 6 0 0 1 11 0'/%3E%3Cpath d='M14.5 20.5a5 5 0 0 1 6-4.8'/%3E%3C/svg%3E");
}

.menu-icon-shipments,
.menu-icon-booking,
.menu-icon-bulk {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7.5 12 3l9 4.5-9 4.5L3 7.5Z'/%3E%3Cpath d='M3 7.5V16.5L12 21l9-4.5V7.5'/%3E%3Cpath d='M12 12v9'/%3E%3C/svg%3E");
}

.menu-icon-tenant {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V7l8-4 8 4v14'/%3E%3Cpath d='M9 21v-7h6v7'/%3E%3Cpath d='M8 10h.01M16 10h.01'/%3E%3C/svg%3E");
}

.menu-icon-roles,
.menu-icon-kyc {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 7v5c0 5-3.3 8.2-8 9-4.7-.8-8-4-8-9V7l8-4Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}

.menu-icon-courier {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v10H3z'/%3E%3Cpath d='M14 10h4l3 3v4h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E");
}

.menu-icon-rates,
.menu-icon-charges {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7H14a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}

.menu-icon-key {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7.5' cy='14.5' r='4.5'/%3E%3Cpath d='M11 11 21 1'/%3E%3Cpath d='m16 6 2 2 3-3'/%3E%3C/svg%3E");
}

.menu-icon-history {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 3-6.7'/%3E%3Cpath d='M3 4v5h5'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.menu-icon-track {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12S3 17 3 10a9 9 0 0 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.menu-icon-wallet {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a3 3 0 0 1 3-3h12'/%3E%3Cpath d='M16 14h5'/%3E%3C/svg%3E");
}

.menu-icon-invoice {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h10a2 2 0 0 1 2 2v16l-3-2-2 2-2-2-2 2-2-2-3 2V5a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h4'/%3E%3C/svg%3E");
}

.menu-icon-bank {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10h18L12 4 3 10Z'/%3E%3Cpath d='M5 10v8M9 10v8M15 10v8M19 10v8M4 18h16M3 21h18'/%3E%3C/svg%3E");
}

.menu-icon-payment {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 10h18M7 15h4'/%3E%3C/svg%3E");
}

.menu-icon-logout {
  --menu-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17 15 12 10 7'/%3E%3Cpath d='M15 12H3'/%3E%3Cpath d='M21 3v18'/%3E%3C/svg%3E");
}

.sidebar-closed .dashboard-menu a,
.sidebar-closed .dashboard-logout button {
  justify-content: center;
  gap: 0;
  padding-right: 0;
  padding-left: 0;
}

.sidebar-closed .menu-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.sidebar-closed .menu-icon::before {
  width: 19px;
  height: 19px;
}

.sidebar-closed .menu-label {
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.sidebar-closed .dashboard-menu-heading {
  display: none;
}

.sidebar-closed .dashboard-submenu {
  display: grid !important;
  gap: 0.35rem;
}

.sidebar-closed .dashboard-menu a.dashboard-submenu-link {
  padding-left: 0;
}

.sidebar-closed .customer-dashboard-menu .dashboard-menu-section,
.sidebar-closed .customer-dashboard-menu .dashboard-menu-section + .dashboard-menu-section {
  margin-top: 0;
  padding: 0;
  border-top: 0;
}

.dashboard-logout {
  flex: 0 0 auto;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #243b53;
}

.dashboard-content {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background:
    linear-gradient(rgba(20, 33, 61, 0.82), rgba(20, 33, 61, 0.72)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: #ffffff;
}

.dashboard-kicker {
  margin-bottom: 0.65rem;
  color: #8fd6ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-hero h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.dashboard-hero p:last-child {
  max-width: 46rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.dashboard-menu-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-workspace {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.workspace-panel {
  display: grid;
  gap: 0.65rem;
  min-height: 190px;
  padding: 1.35rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.07);
}

.workspace-panel span {
  color: #0d6efd;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-panel strong {
  color: #111827;
  font-size: 1.15rem;
  line-height: 1.25;
}

.workspace-panel p {
  margin-bottom: 0;
  color: #64748b;
  line-height: 1.6;
}

.dashboard-card-menu {
  min-height: 140px;
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  align-items: center;
}

.dashboard-card-menu span {
  font-weight: 700;
  text-transform: uppercase;
  color: #0d6efd;
}

.dashboard-section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.dashboard-card {
  display: grid;
  gap: 0.5rem;
  min-height: 180px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.08);
}

.dashboard-card span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-card strong {
  color: #111827;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
}

.dashboard-card small {
  color: #64748b;
}

.dashboard-card-customers {
  border-top: 5px solid #0d6efd;
}

.dashboard-card-tenants {
  border-top: 5px solid #20c997;
}

.dashboard-card-online {
  border-top: 5px solid #20c997;
}

.dashboard-card-status {
  border-top: 5px solid #f59f00;
}

.shipment-booking-page {
  min-height: calc(100vh - 92px);
  padding: 0.25rem 0.25rem 1.5rem;
  color: #111827;
}

.shipment-history-table-wrap {
  max-height: calc(100vh - 230px);
  overflow: auto;
  scrollbar-width: thin;
}

.shipment-history-table {
  min-width: 1120px;
}

.admin-table-wrap {
  max-height: calc(100vh - 260px);
  overflow: auto;
  scrollbar-width: thin;
}

.admin-customer-table {
  min-width: 1280px;
}

.admin-shipment-table {
  min-width: 1180px;
}

.admin-table-wrap thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.shipment-history-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.shipment-page-title {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.shipment-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.shipment-step-tab {
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.15rem;
  border: 0;
  background: #ffffff;
  color: #9ca3af;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 12px 50%);
  text-align: left;
  cursor: default;
  pointer-events: none;
}

.shipment-step-tab:first-child {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.shipment-step-tab strong {
  color: currentColor;
  font-size: 1.55rem;
  line-height: 1;
}

.shipment-step-tab span {
  flex: 1 1 auto;
  font-size: 0.78rem;
  text-align: center;
}

.shipment-step-tab.active {
  background: #ff1018;
  color: #ffffff;
}

.shipment-tab-content > .shipment-panel:not(.active) {
  display: none;
}

.shipment-panel {
  min-height: 320px;
  padding: 2rem;
  border: 1px solid #e6eaf0;
  background: #ffffff;
}

.booking-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
  align-items: end;
}

.booking-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.booking-grid-six {
  grid-template-columns: repeat(5, minmax(0, 1fr)) 42px;
}

.shipment-fieldset {
  min-width: 0;
  margin: 0 0 1.35rem;
  padding: 1rem 1rem 0;
  border: 1px solid #e6eaf0;
  border-radius: 4px;
}

.shipment-fieldset legend {
  float: none;
  width: auto;
  margin: 0 0 0.85rem;
  padding: 0 0.35rem;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
}

.package-detail-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.2rem;
}

.package-row-remove {
  align-self: end;
}

.package-row-remove .btn {
  width: 42px;
  min-width: 42px;
  padding-left: 0;
  padding-right: 0;
}

.shipment-booking-page .form-label {
  margin-bottom: 0.55rem;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 800;
}

.shipment-booking-page .form-control,
.shipment-booking-page .form-select,
.shipment-booking-page .input-group-text {
  min-height: 32px;
  border-color: #e0e5ed;
  border-radius: 3px;
  font-size: 0.78rem;
}

.shipment-booking-page .input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.shipment-booking-page .input-group-text {
  min-height: 32px;
  padding: 0.35rem 0.55rem;
  background: #f8fafc;
}

.shipment-form-alert {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #fecaca;
  border-radius: 4px;
  color: #991b1b;
  background: #fef2f2;
  font-size: 0.84rem;
  font-weight: 700;
}

.shipment-form-alert.is-success {
  border-color: #bbf7d0;
  color: #166534;
  background: #f0fdf4;
}

.shipment-booking-page .form-control.is-invalid,
.shipment-booking-page .form-select.is-invalid {
  border-color: #dc2626;
}

.booking-check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 32px;
  margin: 0;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 800;
}

.shipment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.shipment-actions .btn {
  min-width: 58px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.carrier-summary,
.confirm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.carrier-summary div,
.confirm-grid div {
  display: grid;
  gap: 0.45rem;
}

.carrier-summary span,
.confirm-grid span {
  color: #111827;
  font-size: 0.78rem;
  font-weight: 500;
}

.carrier-summary strong,
.confirm-grid strong {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 500;
}

.carrier-filter-bar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.1rem;
}

.carrier-filter-bar .btn {
  min-width: 58px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.carrier-list {
  display: grid;
}

.carrier-row {
  display: grid;
  grid-template-columns: 22px 170px minmax(180px, 1.1fr) minmax(150px, 0.9fr) minmax(120px, 0.75fr) minmax(120px, 0.75fr);
  gap: 1rem;
  align-items: center;
  min-height: 128px;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}

.carrier-row.selected {
  background: #fff5f5;
  outline: 1px solid #ff1018;
  outline-offset: -1px;
}

.carrier-row.is-disabled {
  opacity: 0.62;
}

.carrier-logo {
  color: #172554;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.carrier-logo img {
  display: block;
  max-width: 82px;
  max-height: 34px;
  object-fit: contain;
}

.carrier-row span:not(.carrier-logo):not(.carrier-total) {
  display: grid;
  gap: 0.15rem;
}

.carrier-name,
.carrier-charge-title {
  color: #ff1018;
  font-size: 0.82rem;
  font-weight: 800;
}

.carrier-row small {
  color: #6b7280;
  font-size: 0.76rem;
}

.max-weight-value {
  border: 1px solid #ff1018;
  border-radius: 4px;
  color: #111827;
  display: inline-block;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.08rem 0.35rem;
}

.carrier-total {
  display: grid;
  gap: 0.15rem;
  justify-items: end;
}

.carrier-total strong {
  color: #ff1018;
  font-size: 0.82rem;
}

.empty-carriers {
  padding: 2rem;
  color: #64748b;
  text-align: center;
}

.section-caption {
  margin: 0 0 2rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.wallet-check {
  margin-top: 1.5rem;
}

.wallet-check.is-invalid {
  color: #b91c1c;
}

.wallet-check span {
  margin-left: 0.5rem;
  color: #64748b;
  font-weight: 500;
}

.shipment-product-box {
  padding: 1rem;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #f8fbff;
}

.shipping-items-box {
  margin-bottom: 1.2rem;
}

.shipment-document-uploader {
  margin-bottom: 1rem;
}

.shipment-document-table-wrap {
  overflow-x: auto;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
}

.shipment-document-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.shipment-document-table th,
.shipment-document-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
}

.shipment-document-table th {
  color: #475569;
  background: #f8fbff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shipment-document-table tr:last-child td {
  border-bottom: 0;
}

.shipment-document-empty td {
  color: #64748b;
  text-align: center;
}

.document-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.2rem 0.55rem;
  border: 1px solid #bbf7d0;
  border-radius: 4px;
  color: #166534;
  background: #f0fdf4;
  font-size: 0.75rem;
  font-weight: 800;
}

.shipping-items-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.shipping-items-heading h3 {
  margin: 0;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
}

.shipping-items-heading .btn {
  min-width: 48px;
  min-height: 32px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.shipment-product-grid {
  display: grid;
  gap: 0.65rem;
}

.shipment-product-header,
.shipment-product-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.6fr) minmax(90px, 0.6fr) minmax(110px, 0.7fr) minmax(110px, 0.7fr) 42px;
  gap: 0.65rem;
  align-items: center;
}

.package-detail-header,
.package-detail-row {
  grid-template-columns: 76px repeat(4, minmax(90px, 1fr)) 38px;
}

.package-detail-row .package-quantity {
  max-width: 76px;
}

.shipment-product-header {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.remove-product-row,
.remove-shipping-item,
.remove-package-item {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .airway-navbar .navbar-nav {
    align-items: stretch !important;
    padding-top: 1rem;
  }

  .airway-nav-action {
    margin: 0.5rem 0 0;
  }

  .airway-hero {
    min-height: auto;
    background:
      linear-gradient(rgba(8, 29, 62, 0.88), rgba(8, 29, 62, 0.72)),
      url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1400&q=85") center/cover;
  }

  .airway-status-grid,
  .airway-services,
  .airway-about-grid,
  .airway-contact-grid {
    grid-template-columns: 1fr;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-visual {
    min-height: 260px;
  }

  .route-map {
    bottom: 5.5rem;
  }

  .shipment-card {
    display: none;
  }

  .login-heading h1 {
    max-width: 14ch;
  }

  .dashboard-hero,
  .dashboard-grid,
  .dashboard-page,
  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-shell.sidebar-closed {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    display: grid;
  }

  .dashboard-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(82vw, 320px);
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0 8px 8px 0;
    transform: translateX(0);
  }

  .sidebar-closed .dashboard-sidebar {
    width: min(82vw, 320px);
    padding: 1rem;
    border-width: 1px;
    transform: translateX(-105%);
  }

  .sidebar-toggle-inline {
    display: grid;
  }

  .sidebar-closed .sidebar-toggle-floating {
    display: grid;
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1020;
    display: block;
    background: rgba(17, 24, 39, 0.42);
  }

  .sidebar-closed .sidebar-backdrop {
    display: none;
  }

  .dashboard-logout {
    margin-top: 1rem;
  }

  .dashboard-metrics,
  .dashboard-workspace,
  .route-search-grid,
  .registration-grid,
  .shipment-product-header,
  .shipment-product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shipment-stepper,
  .booking-grid-four,
  .booking-grid-five,
  .booking-grid-six,
  .carrier-summary,
  .confirm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-grid-three,
  .carrier-filter-bar,
  .carrier-row {
    grid-template-columns: 1fr;
  }

  .carrier-total {
    justify-items: start;
  }
}

@media (max-width: 575.98px) {
  .airway-brand {
    font-size: 1rem;
  }

  .airway-brand span {
    width: 38px;
    height: 38px;
  }

  .airway-hero {
    padding: 3.5rem 0;
  }

  .airway-tracking {
    grid-template-columns: 1fr;
  }

  .airway-section {
    padding: 3rem 0;
  }

  .login-page {
    min-height: auto;
    padding: 0.5rem 0 1rem;
  }

  .login-shell {
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .login-visual {
    min-height: 210px;
    padding: 1.25rem;
  }

  .route-map {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 3.25rem;
  }

  .login-panel {
    padding: 1.5rem;
  }

  .login-heading {
    margin-bottom: 1.4rem;
  }

  .login-heading h1 {
    font-size: 2.15rem;
  }

  .dashboard-metrics,
  .dashboard-menu-cards,
  .dashboard-workspace,
  .route-search-grid,
  .registration-type-group,
  .registration-grid,
  .shipment-booking-panel,
  .shipment-product-header,
  .shipment-product-row {
    grid-template-columns: 1fr;
  }

  .shipment-panel {
    padding: 1.25rem;
  }

  .shipment-history-table-wrap {
    max-height: calc(100vh - 260px);
  }

  .shipment-stepper,
  .booking-grid-two,
  .booking-grid-three,
  .booking-grid-four,
  .booking-grid-five,
  .booking-grid-six,
  .carrier-summary,
  .confirm-grid {
    grid-template-columns: 1fr;
  }

  .shipment-step-tab {
    clip-path: none;
  }

  .dashboard-page {
    gap: 1rem;
  }

  .app-shell {
    gap: 1rem;
    padding: 0.75rem;
  }

  .dashboard-menu a,
  .dashboard-logout button {
    min-height: 2.75rem;
  }

  .dashboard-card strong {
    font-size: 1.7rem;
  }

  .lane-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

.ship-home {
  --ship-navy: #061a4a;
  --ship-navy-2: #071b4d;
  --ship-blue: #1264e8;
  --ship-orange: #ff6a00;
  --ship-soft: #f5f9ff;
  --ship-text: #0b1d4b;
  --ship-muted: #536178;
  color: var(--ship-text);
  background:
    radial-gradient(circle at 28% 7%, rgba(18, 100, 232, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 56%, #ffffff 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  padding-top: 92px;
  overflow-x: hidden;
}

.public-body:has(.ship-home) {
  margin-bottom: 0;
  background: #ffffff;
}

.public-body:has(.ship-home) > .footer {
  display: none;
}

.ship-home .container {
  max-width: 1180px;
}

.ship-header {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1020;
  padding: 1.05rem 0;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.ship-header-inner {
  gap: 1.2rem;
}

.ship-logo {
  display: inline-flex;
  align-items: center;
  width: 212px;
  min-width: 168px;
}

.ship-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ship-nav {
  gap: clamp(0.55rem, 1.8vw, 1.75rem);
}

.ship-nav .nav-link {
  position: relative;
  padding: 0.45rem 0 !important;
  color: var(--ship-navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.ship-nav .nav-link:hover,
.ship-nav .nav-link:focus,
.ship-nav .nav-link.active {
  color: var(--ship-blue);
}

.ship-nav .nav-link.active::after {
  position: absolute;
  left: 50%;
  bottom: -0.72rem;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--ship-blue);
  content: "";
  transform: translateX(-50%);
}

.ship-dropdown {
  border: 1px solid #e5ecf7;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(6, 26, 74, 0.12);
}

.ship-nav-actions,
.ship-hero-actions,
.support-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ship-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.ship-btn:hover,
.ship-btn:focus {
  transform: translateY(-1px);
}

.ship-btn:focus-visible,
.ship-menu-toggle:focus-visible,
.testimonial-dots button:focus-visible {
  outline: 3px solid rgba(18, 100, 232, 0.28);
  outline-offset: 3px;
}

.ship-btn-outline {
  border-color: rgba(18, 100, 232, 0.76);
  color: var(--ship-blue);
  background: #ffffff;
}

.ship-btn-outline:hover,
.ship-btn-outline:focus {
  color: var(--ship-blue);
  border-color: var(--ship-blue);
  box-shadow: 0 12px 24px rgba(18, 100, 232, 0.12);
}

.ship-btn-orange {
  color: #ffffff;
  background: var(--ship-orange);
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.28);
}

.ship-btn-orange:hover,
.ship-btn-orange:focus {
  color: #ffffff;
  background: #f05e00;
  box-shadow: 0 16px 30px rgba(255, 106, 0, 0.34);
}

.ship-btn-blue {
  color: #ffffff;
  background: var(--ship-blue);
  box-shadow: 0 13px 28px rgba(18, 100, 232, 0.25);
}

.ship-btn-blue:hover,
.ship-btn-blue:focus {
  color: #ffffff;
  background: #0f56c9;
}

.ship-btn-lg {
  min-height: 54px;
  padding-inline: 1.55rem;
}

.ship-menu-toggle {
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid #cfe0f7;
  border-radius: 10px;
  background: #ffffff;
}

.ship-menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ship-navy);
}

.ship-hero {
  position: relative;
  min-height: 650px;
  padding: 3.25rem 0 1.2rem;
}

.ship-world-map {
  position: absolute;
  top: 3.8rem;
  left: 30%;
  width: 420px;
  height: 170px;
  opacity: 0.42;
  background-image: radial-gradient(circle, #bdd2ee 1.45px, transparent 1.55px);
  background-size: 9px 9px;
  mask-image: radial-gradient(ellipse at center, #000 22%, transparent 72%);
}

.ship-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(520px, 1.14fr);
  gap: 1.2rem;
  align-items: center;
}

.ship-hero-copy {
  padding-top: 0.5rem;
}

.ship-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.86rem;
  border: 1px solid rgba(18, 100, 232, 0.66);
  border-radius: 999px;
  color: var(--ship-blue);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.ship-pill.dark {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(18, 100, 232, 0.26);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.ship-hero h1 {
  margin: 1.15rem 0 1rem;
  color: var(--ship-navy);
  font-size: clamp(3.35rem, 5.15vw, 4.78rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.ship-hero h1 span {
  color: var(--ship-orange);
}

.ship-hero-copy > p {
  max-width: 590px;
  margin: 0 0 2rem;
  color: #34415b;
  font-size: 1.12rem;
  line-height: 1.68;
}

.ship-trust {
  margin-top: 1.55rem;
}

.ship-trust > span {
  display: block;
  margin-bottom: 1rem;
  color: #46556d;
  font-weight: 600;
}

.ship-couriers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.ship-couriers strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.courier-dhl {
  padding: 0.14rem 0.55rem;
  border-radius: 4px;
  color: #d70a0a;
  background: #ffdf19;
  font-style: italic;
}

.courier-fedex {
  padding: 0.25rem 0;
  color: #4d148c;
}

.courier-fedex span {
  color: #ff6600;
}

.courier-blue {
  padding: 0.25rem 0;
  color: #1472bb;
}

.courier-aramex {
  padding: 0.25rem 0;
  color: #e1261c;
}

.courier-dpd {
  padding: 0.22rem 0.58rem;
  border-radius: 4px;
  color: #ffffff;
  background: #dc0032;
}

.courier-dtdc {
  padding: 0.22rem 0.58rem;
  border-radius: 4px;
  color: #111827;
  background: #ffcf00;
}

.courier-delhivery {
  padding: 0.25rem 0;
  color: #111827;
  text-transform: lowercase;
}

.courier-movin {
  padding: 0.22rem 0.58rem;
  border-radius: 4px;
  color: #ffffff;
  background: #1b3f8b;
}

.ship-couriers em {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  border: 1px solid #d7e1f0;
  border-radius: 999px;
  color: #27344c;
  background: #ffffff;
  font-size: 0.88rem;
  font-style: normal;
  box-shadow: 0 8px 20px rgba(6, 26, 74, 0.06);
}

.ship-tracking-form {
  width: min(100%, 600px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
  margin-top: 1.25rem;
  padding: 0.8rem;
  border: 1px solid #dce8f8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(6, 26, 74, 0.1);
}

.ship-tracking-form div {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.ship-tracking-form label {
  color: var(--ship-navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.ship-tracking-form input {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid #cbdaf0;
  border-radius: 9px;
  color: var(--ship-navy);
  background: #f8fbff;
  font: inherit;
  font-weight: 700;
}

.ship-tracking-form input::placeholder {
  color: #8b99ad;
}

.ship-tracking-form input:focus {
  border-color: var(--ship-blue);
  outline: 0;
  box-shadow: 0 0 0 0.22rem rgba(18, 100, 232, 0.15);
  background: #ffffff;
}

.ship-tracking-message {
  width: min(100%, 600px);
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid #dbe7f6;
  border-radius: 12px;
  color: #27344c;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 26, 74, 0.08);
}

.ship-tracking-message:empty {
  display: none;
}

.ship-tracking-message.is-error {
  border-color: #fed7aa;
  color: #9a3412;
  background: #fff7ed;
}

.ship-tracking-message.is-success {
  border-color: #b7e9cb;
  color: #14532d;
  background: #f0fdf6;
}

.ship-tracking-message > strong {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--ship-navy);
  font-size: 1rem;
  font-weight: 900;
}

.ship-tracking-message a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--ship-blue);
  font-weight: 900;
  text-decoration: none;
}

.ship-tracking-message a:hover,
.ship-tracking-message a:focus {
  text-decoration: underline;
}

.ship-tracking-message .home-tracking-table-wrap {
  margin-top: 0;
}

.ship-tracking-message .home-tracking-table {
  min-width: 0;
  background: #ffffff;
}

.ship-tracking-message .home-tracking-table th,
.ship-tracking-message .home-tracking-table td {
  padding: 0.62rem 0.7rem;
  border-bottom-color: #e1eadf;
  font-size: 0.84rem;
}

.ship-tracking-message .home-tracking-table th {
  color: #14532d;
  background: rgba(20, 83, 45, 0.08);
}

.ship-hero-visual {
  position: relative;
  min-height: 500px;
  transform: translateX(12px);
}

.ship-dashboard-card {
  position: absolute;
  top: 42px;
  right: 0;
  width: min(100%, 650px);
  min-height: 430px;
  display: grid;
  grid-template-columns: 126px 1fr;
  overflow: hidden;
  border: 1px solid #dfe8f5;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 24px 52px rgba(6, 26, 74, 0.18);
  transform: perspective(1100px) rotateY(-5deg) rotateZ(2deg);
}

.dash-sidebar {
  padding: 1.3rem 0.85rem;
  background: var(--ship-navy);
  color: #dbe8ff;
}

.dash-sidebar img {
  width: 90px;
  height: 34px;
  display: block;
  object-fit: contain;
  margin: 0 auto 1rem;
  border-radius: 5px;
}

.dash-sidebar span {
  display: block;
  margin: 0.25rem 0;
  padding: 0.55rem 0.5rem;
  border-radius: 8px;
  font-size: 0.64rem;
  font-weight: 800;
}

.dash-sidebar .active {
  color: #ffffff;
  background: var(--ship-blue);
}

.dash-main {
  padding: 1rem 1.1rem 1.2rem;
  background: linear-gradient(180deg, #fbfdff, #ffffff);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.dash-search {
  width: 230px;
  max-width: 55%;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  color: #9aa6b6;
  background: #f4f7fb;
  font-size: 0.72rem;
}

.dash-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-icons span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e8eef8;
}

.dash-icons span:nth-child(2) {
  width: 25px;
  height: 25px;
  background: linear-gradient(#ffd8bd 0 45%, #1d3564 45% 100%);
}

.dash-main h2 {
  margin: 0 0 0.85rem;
  color: var(--ship-navy);
  font-size: 1.03rem;
  font-weight: 900;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.dash-stats article,
.dash-chart,
.dash-list {
  border: 1px solid #edf2f8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(6, 26, 74, 0.06);
}

.dash-stats article {
  min-height: 86px;
  padding: 0.82rem;
}

.dash-stats small {
  display: block;
  color: #67758a;
  font-size: 0.61rem;
  font-weight: 800;
}

.dash-stats strong {
  display: block;
  margin-top: 0.48rem;
  color: #101d3c;
  font-size: 1.06rem;
  font-weight: 900;
}

.dash-stats span {
  color: #11a767;
  font-size: 0.68rem;
  font-weight: 800;
}

.dash-stats button {
  margin-top: 0.38rem;
  padding: 0.36rem 0.5rem;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  background: var(--ship-blue);
  font-size: 0.62rem;
  font-weight: 800;
}

.dash-lower {
  display: grid;
  grid-template-columns: 1.4fr 0.84fr;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.dash-chart {
  padding: 0.9rem;
}

.dash-chart div,
.dash-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.dash-chart strong,
.dash-list strong {
  color: var(--ship-navy);
  font-size: 0.78rem;
}

.dash-chart small,
.dash-list a {
  color: var(--ship-blue);
  font-size: 0.66rem;
  font-weight: 800;
  text-decoration: none;
}

.dash-chart svg {
  width: 100%;
  height: 160px;
  display: block;
}

.dash-list {
  padding: 0.9rem;
}

.dash-list p {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  padding: 0.48rem 0;
  border-bottom: 1px solid #edf2f8;
  font-size: 0.64rem;
}

.dash-list p:last-child {
  border-bottom: 0;
}

.dash-list b {
  color: #0fbf72;
}

.dash-list .warn {
  color: #f0a400;
}

.dash-list .blue {
  color: var(--ship-blue);
}

.ship-plane {
  position: absolute;
  left: 46px;
  bottom: 68px;
  z-index: 4;
  color: #f5f9ff;
  font-size: 8rem;
  line-height: 1;
  text-shadow: 0 14px 22px rgba(6, 26, 74, 0.24);
  transform: rotate(13deg);
}

.ship-globe {
  position: absolute;
  left: 102px;
  bottom: 7px;
  z-index: 3;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0 8%, transparent 9%),
    linear-gradient(135deg, #6ab9ff, #1264e8 48%, #0746af);
  box-shadow: inset -20px -16px 32px rgba(6, 26, 74, 0.25), 0 16px 28px rgba(6, 26, 74, 0.22);
}

.ship-globe::before,
.ship-globe::after {
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  content: "";
}

.ship-globe::after {
  inset: 38px 16px;
  transform: rotate(48deg);
}

.ship-globe span {
  position: absolute;
  left: 28px;
  top: 45px;
  width: 68px;
  height: 38px;
  border-radius: 46% 54% 44% 56%;
  background: #d7efff;
  opacity: 0.86;
}

.ship-boxes {
  position: absolute;
  right: 58px;
  bottom: 14px;
  z-index: 5;
  width: 170px;
  height: 125px;
}

.ship-boxes span {
  position: absolute;
  width: 72px;
  height: 58px;
  border: 1px solid rgba(151, 88, 29, 0.3);
  border-radius: 5px;
  background: linear-gradient(135deg, #d9984b, #bd762d);
  box-shadow: 0 10px 18px rgba(6, 26, 74, 0.15);
}

.ship-boxes span::after {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 100%;
  background: rgba(255, 236, 185, 0.28);
  content: "";
  transform: translateX(-50%);
}

.ship-boxes span:nth-child(1) { left: 42px; bottom: 57px; }
.ship-boxes span:nth-child(2) { left: 6px; bottom: 0; }
.ship-boxes span:nth-child(3) { left: 82px; bottom: 0; }
.ship-boxes span:nth-child(4) { right: 4px; bottom: 34px; width: 58px; height: 48px; }

.ship-feature-panel {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: -12px;
  padding: 1.45rem 1rem;
  border: 1px solid #e6eef8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(6, 26, 74, 0.1);
}

.feature-item {
  min-height: 164px;
  padding: 0.35rem 1.25rem;
  text-align: center;
  border-right: 1px solid #e7edf6;
  transition: transform 0.18s ease, background 0.18s ease;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item:hover {
  transform: translateY(-4px);
  background: #fbfdff;
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-item.blue .feature-icon,
.stat-icon.blue { color: #1264e8; background: #e8f2ff; }
.feature-item.green .feature-icon,
.stat-icon.green { color: #18a765; background: #e9fbf2; }
.feature-item.orange .feature-icon,
.stat-icon.orange { color: #ff6a00; background: #fff0df; }
.feature-item.purple .feature-icon,
.stat-icon.purple { color: #782df0; background: #f2e8ff; }
.feature-item.pink .feature-icon { color: #e83876; background: #ffe9f2; }
.feature-item.indigo .feature-icon { color: #0e58dd; background: #edf2ff; }

.feature-item h3,
.work-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ship-navy);
  font-size: 1rem;
  font-weight: 900;
}

.feature-item p,
.work-card p {
  margin: 0;
  color: #34415b;
  font-size: 0.88rem;
  line-height: 1.62;
}

.ship-section {
  padding: 2.25rem 0 1rem;
}

.ship-works {
  margin-top: 0.5rem;
  padding: 2.4rem 0 2.1rem;
  background: #f4f8fd;
}

.ship-section-title.centered {
  text-align: center;
}

.ship-section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 1.8rem;
  color: var(--ship-navy);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.ship-section-title h2::after {
  position: absolute;
  left: 50%;
  bottom: -0.65rem;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--ship-blue);
  content: "";
  transform: translateX(-50%);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 4.15rem;
  row-gap: 2.5rem;
  align-items: stretch;
}

.work-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 2.35rem 1.35rem 1.4rem;
  border: 1px solid #dfe8f5;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 20px 42px rgba(12, 34, 74, 0.08);
}

.work-card::after {
  position: absolute;
  top: 50%;
  right: -3.65rem;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  color: #243b63;
  content: "→";
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 2;
}

.work-card::before {
  display: none;
  content: none;
}

.work-card:nth-child(5)::after {
  top: auto;
  right: 50%;
  bottom: -2.85rem;
  content: "↓";
  transform: translateX(50%);
}

.work-card:nth-child(5)::before {
  top: auto;
  right: 50%;
  bottom: -2.35rem;
  width: 0;
  height: 2.1rem;
  border-top: 0;
  border-right: 2px dashed #8ea1b8;
  transform: translateX(50%);
}

.work-card:nth-child(10)::before,
.work-card:nth-child(10)::after {
  display: none;
}

.work-card > span {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #1d7dff, #1256dc);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(18, 100, 232, 0.2);
}

.work-card h3 {
  max-width: 100%;
  margin: 0;
  color: #00154b;
  font-size: 1.05rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.work-visual {
  position: relative;
  width: 120px;
  height: 96px;
  margin: 0.15rem auto 1.2rem;
}

.work-visual::before,
.work-visual::after {
  position: absolute;
  content: "";
}

.work-visual.site::before,
.work-visual.signup::before,
.work-visual.dashboard-mini::before {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 88px;
  height: 66px;
  border: 4px solid #a9b6c9;
  border-radius: 7px;
  background:
    linear-gradient(#edf3fb 0 4px, transparent 4px 100%),
    repeating-linear-gradient(#ffffff 0 13px, #edf3fb 13px 16px);
  content: "";
  transform: translateX(-50%);
}

.work-visual.site::after,
.work-visual.signup::after,
.work-visual.dashboard-mini::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: #a9b6c9;
  content: "";
  transform: translateX(-50%);
}

.work-visual.cta::before {
  left: 20px;
  top: 28px;
  width: 80px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1264e8, #0b4fc4);
  box-shadow: 0 14px 22px rgba(18, 100, 232, 0.18);
}

.work-visual.cta::after {
  left: 70px;
  top: 40px;
  width: 16px;
  height: 16px;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  transform: rotate(45deg);
}

.work-visual.otp::before {
  left: 20px;
  top: 22px;
  width: 80px;
  height: 54px;
  border: 4px solid #9fb0c7;
  border-radius: 10px;
  background: #ffffff;
}

.work-visual.otp::after {
  left: 34px;
  top: 44px;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #1264e8 0 8px, transparent 8px 14px);
}

.work-visual.kyc::before {
  left: 28px;
  top: 10px;
  width: 64px;
  height: 76px;
  border: 4px solid #a9b6c9;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #1264e8 0 24px, transparent 24px),
    repeating-linear-gradient(#ffffff 0 12px, #edf3fb 12px 16px);
}

.work-visual.kyc::after {
  left: 62px;
  top: 58px;
  width: 28px;
  height: 16px;
  border-left: 5px solid #16a34a;
  border-bottom: 5px solid #16a34a;
  transform: rotate(-45deg);
}

.work-visual.rates {
  display: grid;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 1rem;
}

.work-visual.rates b {
  position: relative;
  min-width: 108px;
  padding-right: 2rem;
  color: #e1261c;
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
}

.work-visual.rates b:nth-child(2) {
  color: #4d148c;
}

.work-visual.rates b::after {
  position: absolute;
  right: 0;
  top: 0.1rem;
  color: #26aa6a;
  content: "✓";
}

.work-visual.shipment::before,
.work-visual.tracking::before {
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 78px;
  height: 58px;
  border-radius: 6px;
  background: linear-gradient(135deg, #daa054, #b8702b);
  content: "";
  transform: translateX(-50%);
  box-shadow: inset 16px 0 rgba(255, 235, 187, 0.24);
}

.work-visual.tracking::after {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 32px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #7fc3ff, #1264e8);
  content: "";
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 6px 12px rgba(18, 100, 232, 0.25);
}

.work-visual.invoice::before {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 64px;
  height: 76px;
  border: 4px solid #a9b6c9;
  border-radius: 8px;
  background: repeating-linear-gradient(#ffffff 0 12px, #edf3fb 12px 16px);
  content: "";
  transform: translateX(-50%);
}

.work-visual.invoice::after {
  position: absolute;
  left: 38px;
  top: 32px;
  width: 44px;
  height: 32px;
  border-radius: 999px 999px 10px 10px;
  background: radial-gradient(circle at 50% 42%, #ffca3a 0 22%, transparent 23%), #ffd25b;
  content: "";
}

.work-card p {
  max-width: 15rem;
  font-size: 0.93rem;
  line-height: 1.62;
}

.ship-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.2rem;
}

.ship-stats article {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: 1rem 1.25rem;
  border: 1px solid #e5edf7;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 26, 74, 0.08);
}

.stat-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 45px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.ship-stats strong {
  display: block;
  color: var(--ship-navy);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.ship-stats p {
  margin: 0.25rem 0 0;
  color: #34415b;
  font-size: 0.92rem;
}

.ship-testimonials {
  margin-bottom: 0.85rem;
}

.testimonial-card {
  position: relative;
  min-height: 120px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 300px;
  gap: 1.2rem;
  align-items: center;
  padding: 1.3rem 2rem;
  border-radius: 12px;
  background: #eaf4ff;
}

.quote-mark {
  justify-self: center;
  color: rgba(18, 100, 232, 0.25);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card > p {
  margin: 0;
  color: #10203f;
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 31%, #ffd8bd 0 19%, transparent 20%),
    radial-gradient(circle at 50% 39%, #17233e 0 27%, transparent 28%),
    linear-gradient(#d9eefb 0 48%, #183a6f 49% 100%);
  box-shadow: 0 10px 20px rgba(6, 26, 74, 0.14);
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: var(--ship-navy);
  font-weight: 900;
}

.testimonial-person span {
  color: #34415b;
  font-size: 0.92rem;
}

.stars {
  color: #ffb000;
  letter-spacing: 2px;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #aeb9c8;
}

.testimonial-dots button.active {
  background: var(--ship-blue);
}

.ship-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  margin-bottom: 0;
  padding: 0.85rem 1.55rem;
  border-radius: 12px 12px 0 0;
  background: #e9f4ff;
}

.support-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.support-copy > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ship-navy);
  font-size: 1.8rem;
}

.support-copy strong {
  color: #10203f;
  font-weight: 900;
}

.support-copy p {
  margin: 0.2rem 0 0;
  color: #34415b;
  font-size: 0.86rem;
}

.ship-btn-whatsapp {
  color: #ffffff;
  background: #17a64a;
}

.ship-btn-whatsapp:hover,
.ship-btn-whatsapp:focus {
  color: #ffffff;
  background: #128d3e;
}

.ship-footer {
  padding: 1.45rem 0 0.55rem;
  color: #d8e5ff;
  background: var(--ship-navy-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(4, 1fr);
  gap: 2rem;
}

.footer-brand img {
  width: 155px;
  height: auto;
  display: block;
  margin-bottom: 0.7rem;
  border-radius: 6px;
}

.footer-grid h3 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  margin: 0 0 0.38rem;
  color: #d8e5ff;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.socials a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.75rem;
  font-weight: 900;
}

.footer-bottom {
  margin-top: 0.85rem;
  color: rgba(216, 229, 255, 0.78);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .ship-hero-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(470px, 1.1fr);
  }

  .ship-dashboard-card {
    transform: perspective(1100px) rotateY(-4deg) rotateZ(1.5deg) scale(0.92);
    transform-origin: right center;
  }

  .ship-feature-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-item:nth-child(3n) {
    border-right: 0;
  }

  .feature-item:nth-child(n + 4) {
    border-top: 1px solid #e7edf6;
    padding-top: 1.15rem;
  }

}

@media (max-width: 991.98px) {
  .ship-home {
    padding-top: 78px;
  }

  .ship-header {
    padding: 0.8rem 0;
  }

  .ship-nav-collapse {
    margin-top: 0.8rem;
    padding: 1rem;
    border: 1px solid #e2ecf8;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(6, 26, 74, 0.12);
  }

  .ship-nav {
    gap: 0.2rem;
  }

  .ship-nav .nav-link.active::after {
    left: 0;
    bottom: 0.15rem;
    transform: none;
  }

  .ship-nav-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 1rem;
  }

  .ship-hero {
    min-height: auto;
    padding-top: 2.2rem;
  }

  .ship-world-map {
    left: 12%;
  }

  .ship-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .ship-hero-copy {
    text-align: center;
  }

  .ship-hero-copy > p {
    margin-inline: auto;
  }

  .ship-hero-actions,
  .ship-couriers {
    justify-content: center;
  }

  .ship-tracking-form,
  .ship-tracking-message {
    margin-right: auto;
    margin-left: auto;
  }

  .ship-hero-visual {
    min-height: 430px;
    transform: none;
  }

  .ship-dashboard-card {
    left: 50%;
    right: auto;
    width: min(720px, 96vw);
    transform: translateX(-50%) scale(0.9);
    transform-origin: top center;
  }

  .works-grid,
  .ship-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card::after {
    top: 50%;
    right: -3.65rem;
    bottom: auto;
    content: "→";
    transform: translateY(-50%);
  }

  .work-card::before {
    top: 50%;
    right: -3.95rem;
    bottom: auto;
    width: 3.45rem;
    height: 0;
    border-top: 2px dashed #8ea1b8;
    border-right: 0;
    transform: translateY(-50%);
  }

  .work-card:nth-child(5)::after {
    top: 50%;
    right: -3.65rem;
    bottom: auto;
    content: "→";
    transform: translateY(-50%);
  }

  .work-card:nth-child(5)::before {
    top: 50%;
    right: -3.95rem;
    bottom: auto;
    width: 3.45rem;
    height: 0;
    border-top: 2px dashed #8ea1b8;
    border-right: 0;
    transform: translateY(-50%);
  }

  .work-card:nth-child(even)::after {
    top: auto;
    right: 50%;
    bottom: -2.65rem;
    content: "↓";
    transform: translateX(50%);
  }

  .work-card:nth-child(even)::before {
    top: auto;
    right: 50%;
    bottom: -2rem;
    width: 0;
    height: 2rem;
    border-top: 0;
    border-right: 2px dashed #8ea1b8;
    transform: translateX(50%);
  }

  .work-card:nth-child(10)::before,
  .work-card:nth-child(10)::after {
    display: none;
  }

  .testimonial-card {
    grid-template-columns: 42px 1fr;
  }

  .testimonial-person {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ship-logo {
    width: 174px;
  }

  .ship-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
  }

  .ship-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ship-tracking-form {
    grid-template-columns: 1fr;
  }

  .ship-tracking-form .ship-btn {
    width: 100%;
  }

  .ship-tracking-message .home-tracking-table {
    min-width: 520px;
  }

  .ship-hero-visual {
    min-height: 365px;
  }

  .ship-dashboard-card {
    grid-template-columns: 84px 1fr;
    min-height: 360px;
    transform: translateX(-50%) scale(0.76);
  }

  .dash-sidebar {
    padding-inline: 0.45rem;
  }

  .dash-sidebar span {
    font-size: 0.55rem;
  }

  .dash-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-lower {
    grid-template-columns: 1fr;
  }

  .dash-list {
    display: none;
  }

  .ship-plane {
    left: 14%;
    bottom: 52px;
    font-size: 5rem;
  }

  .ship-globe {
    left: 22%;
    bottom: 6px;
    width: 105px;
    height: 105px;
  }

  .ship-boxes {
    right: 12%;
    bottom: 6px;
    transform: scale(0.72);
    transform-origin: right bottom;
  }

  .ship-feature-panel,
  .works-grid,
  .ship-stats {
    grid-template-columns: 1fr;
  }

  .works-grid {
    row-gap: 2rem;
  }

  .work-card::after,
  .work-card:nth-child(even)::after {
    top: auto;
    right: 50%;
    bottom: -2.65rem;
    content: "↓";
    transform: translateX(50%);
  }

  .work-card::before,
  .work-card:nth-child(even)::before {
    top: auto;
    right: 50%;
    bottom: -2rem;
    width: 0;
    height: 2rem;
    border-top: 0;
    border-right: 2px dashed #8ea1b8;
    transform: translateX(50%);
  }

  .work-card:nth-child(10)::before,
  .work-card:nth-child(10)::after {
    display: none;
  }

  .feature-item,
  .feature-item:nth-child(3n) {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid #e7edf6;
  }

  .feature-item:first-child {
    border-top: 0;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 1.25rem 1.25rem 2.4rem;
    text-align: center;
  }

  .quote-mark {
    display: none;
  }

  .testimonial-person {
    grid-column: auto;
    justify-content: center;
  }

  .ship-support {
    align-items: stretch;
    flex-direction: column;
    border-radius: 12px 12px 0 0;
  }

  .support-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

@media (max-width: 420px) {
  .ship-dashboard-card {
    transform: translateX(-50%) scale(0.66);
  }

  .ship-hero-visual {
    min-height: 320px;
  }

  .ship-couriers {
    gap: 1rem;
  }

  .ship-stats article {
    align-items: flex-start;
    flex-direction: column;
  }
}

.public-body:has(.ship-login) {
  margin-bottom: 0;
  background: #f5f9ff;
}

.public-body:has(.ship-login) > .footer {
  display: none;
}

.ship-login {
  --ship-navy: #061a4a;
  --ship-blue: #1264e8;
  --ship-orange: #ff6a00;
  min-height: 100vh;
  display: grid;
  align-content: start;
  gap: 1.15rem;
  padding: 1rem clamp(1rem, 3vw, 2rem) 1.5rem;
  color: var(--ship-navy);
  background:
    radial-gradient(circle at 18% 10%, rgba(18, 100, 232, 0.12), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(255, 106, 0, 0.09), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 58%, #ffffff 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.login-topbar {
  width: min(100%, 1180px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
}

.login-logo {
  width: 205px;
  display: inline-flex;
  align-items: center;
}

.login-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.ship-login .login-shell {
  width: min(100%, 1040px);
  min-height: 620px;
  grid-template-columns: minmax(340px, 0.9fr) minmax(390px, 1fr);
  border: 1px solid #dce8f8;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 70px rgba(6, 26, 74, 0.16);
}

.ship-login .login-visual {
  min-height: 620px;
  padding: 1.55rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 100, 232, 0.65), transparent 15rem),
    radial-gradient(circle at 78% 82%, rgba(255, 106, 0, 0.22), transparent 13rem),
    linear-gradient(135deg, #031342, #071b4d 54%, #05296b);
}

.login-visual-map {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle, #9fc7ff 1px, transparent 1.2px);
  background-size: 12px 12px;
  mask-image: radial-gradient(ellipse at 58% 35%, #000 0 46%, transparent 74%);
}

.login-brand-card {
  position: relative;
  z-index: 2;
  display: inline-grid;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.login-brand-card img {
  width: 128px;
  height: auto;
  border-radius: 6px;
}

.login-brand-card span {
  color: #dbe8ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.login-dashboard-preview {
  position: absolute;
  left: 11%;
  top: 25%;
  z-index: 2;
  width: min(78%, 390px);
  height: 278px;
  display: grid;
  grid-template-columns: 76px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
  transform: perspective(900px) rotateY(-8deg) rotateZ(2deg);
}

.login-preview-sidebar {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem 0.75rem;
  background: #061a4a;
}

.login-preview-sidebar span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.login-preview-sidebar span:first-child {
  height: 30px;
  border-radius: 8px;
  background: var(--ship-blue);
}

.login-preview-main {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1rem;
}

.login-preview-search {
  width: 72%;
  height: 24px;
  border-radius: 8px;
  background: #f0f5fc;
}

.login-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.login-preview-stats span {
  height: 58px;
  border: 1px solid #e8eef8;
  border-radius: 10px;
  background: linear-gradient(#ffffff, #f8fbff);
}

.login-preview-chart {
  height: 86px;
  border: 1px solid #e8eef8;
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(18, 100, 232, 0.16) 43% 50%, transparent 51%),
    linear-gradient(#ffffff, #f8fbff);
}

.login-preview-list {
  display: grid;
  gap: 0.35rem;
}

.login-preview-list span {
  height: 9px;
  border-radius: 999px;
  background: #e8eef8;
}

.login-globe {
  position: absolute;
  left: 13%;
  bottom: 76px;
  z-index: 3;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0 8%, transparent 9%),
    linear-gradient(135deg, #6ab9ff, #1264e8 48%, #0746af);
  box-shadow: inset -18px -14px 30px rgba(6, 26, 74, 0.28), 0 16px 28px rgba(0, 0, 0, 0.25);
}

.login-globe::before,
.login-globe::after {
  position: absolute;
  inset: 17px;
  border: 2px dashed rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  content: "";
}

.login-globe::after {
  inset: 35px 14px;
  transform: rotate(48deg);
}

.login-plane {
  position: absolute;
  left: 17%;
  bottom: 136px;
  z-index: 4;
  color: #ffffff;
  font-size: 5.4rem;
  line-height: 1;
  text-shadow: 0 14px 22px rgba(0, 0, 0, 0.26);
  transform: rotate(13deg);
}

.ship-login .shipment-card {
  z-index: 5;
  min-width: 178px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.ship-login .shipment-card-primary {
  left: 1.5rem;
  bottom: 1.25rem;
}

.ship-login .shipment-card-secondary {
  right: 1.5rem;
  bottom: 4.2rem;
}

.ship-login .login-panel {
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.25rem);
}

.ship-login .login-kicker {
  color: var(--ship-blue);
  letter-spacing: 0.08em;
}

.ship-login .login-heading h1 {
  max-width: 14ch;
  color: var(--ship-navy);
  font-size: clamp(2.4rem, 4.2vw, 3.65rem);
  font-weight: 900;
  line-height: 1.02;
}

.ship-login .login-heading p:last-child {
  color: #536178;
  font-size: 1rem;
}

.ship-login .login-alert {
  border: 1px solid #b7e9cb;
  border-radius: 12px;
  color: #14532d;
  background: #f0fdf6;
}

.ship-login .validation-summary {
  font-weight: 800;
}

.ship-login .login-form {
  width: 100%;
  max-width: 430px;
  gap: 1rem;
}

.ship-login .form-field {
  gap: 0.45rem;
}

.ship-login .form-field .form-label {
  color: var(--ship-navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.ship-login .form-field .form-control {
  min-height: 54px;
  border-color: #cbdaf0;
  border-radius: 10px;
  color: var(--ship-navy);
  background: #f8fbff;
  font-weight: 700;
}

.ship-login .form-field .form-control:focus {
  border-color: var(--ship-blue);
  background: #ffffff;
  box-shadow: 0 0 0 0.22rem rgba(18, 100, 232, 0.15);
}

.ship-login .login-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 0.35rem;
}

.ship-login .login-panel > .login-heading,
.ship-login .login-panel > .login-alert,
.ship-login .login-panel > .forgot-password-panel,
.ship-login .login-panel > .login-support-row {
  width: 100%;
  max-width: 430px;
}

.login-forgot-link {
  justify-self: end;
  padding: 0;
  border: 0;
  color: var(--ship-blue);
  background: transparent;
  font-weight: 900;
  text-decoration: none;
}

.login-forgot-link:hover,
.login-forgot-link:focus {
  text-decoration: underline;
}

.forgot-password-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #dce8f8;
}

.forgot-password-panel[hidden],
.forgot-password-step[hidden] {
  display: none;
}

.forgot-password-heading {
  display: grid;
  gap: 0.25rem;
}

.forgot-password-heading .login-kicker {
  margin-bottom: 0;
}

.forgot-password-heading h2 {
  margin: 0;
  color: var(--ship-navy);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.forgot-password-step {
  display: grid;
  gap: 1rem;
}

.forgot-password-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
}

.forgot-password-actions .ship-btn {
  min-height: 50px;
}

.forgot-password-message {
  min-height: 1.35rem;
  color: #536178;
  font-weight: 800;
}

.forgot-password-message.is-success {
  color: #146c43;
}

.forgot-password-message.is-error {
  color: #b42318;
}

.forgot-password-cancel {
  justify-self: center;
}

.login-support-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: #536178;
  font-weight: 700;
}

.login-support-row a {
  color: var(--ship-blue);
  font-weight: 900;
  text-decoration: none;
}

.login-support-row a:hover,
.login-support-row a:focus {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .ship-login .login-shell {
    grid-template-columns: 1fr;
  }

  .ship-login .login-visual {
    min-height: 390px;
  }

  .login-dashboard-preview {
    left: 50%;
    top: 20%;
    width: min(88%, 430px);
    transform: translateX(-50%) perspective(900px) rotateY(-4deg) rotateZ(1deg);
  }

  .login-globe {
    left: 12%;
    bottom: 34px;
    width: 98px;
    height: 98px;
  }

  .login-plane {
    left: 17%;
    bottom: 82px;
    font-size: 4rem;
  }
}

@media (max-width: 575.98px) {
  .ship-login {
    gap: 1rem;
    padding: 0.85rem 0.75rem 1.2rem;
  }

  .login-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .login-logo {
    width: 174px;
  }

  .login-topbar .ship-btn {
    width: 100%;
  }

  .ship-login .login-shell {
    border-radius: 16px;
  }

  .ship-login .login-visual {
    min-height: 300px;
    padding: 1rem;
  }

  .login-brand-card {
    padding: 0.65rem 0.75rem;
  }

  .login-brand-card img {
    width: 104px;
  }

  .login-dashboard-preview {
    width: 450px;
    transform: translateX(-50%) scale(0.62);
    transform-origin: top center;
  }

  .login-globe,
  .login-plane,
  .ship-login .shipment-card {
    display: none;
  }

  .ship-login .login-panel {
    padding: 1.45rem;
  }

  .ship-login .login-heading {
    margin-bottom: 1.35rem;
  }

  .ship-login .login-heading h1 {
    max-width: none;
    font-size: 2.35rem;
  }

  .login-support-row {
    align-items: center;
    flex-direction: column;
  }

  .forgot-password-actions {
    grid-template-columns: 1fr;
  }
}
