:root {
  --primary: #0a2a43;
  --primary-soft: #e9f1f6;
  --gold: #c99a2e;
  --gold-dark: #a77c21;
  --ink: #14212b;
  --muted: #637381;
  --line: #dbe3ea;
  --bg: #f6f8fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.logo {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions form {
  margin: 0;
}

.user-pill {
  max-width: 190px;
  overflow: hidden;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotline {
  display: grid;
  line-height: 1.2;
  margin-right: 8px;
  min-width: 120px;
}

.hotline span {
  color: var(--muted);
  font-size: 12px;
}

.hotline strong,
.hotline a {
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.btn {
  border-radius: 6px;
  font-weight: 700;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

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

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

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 29, 48, 0.88), rgba(8, 29, 48, 0.52)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1800") center/cover;
}

.hero-content {
  max-width: 780px;
  padding: 80px 0;
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero .lead,
.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: 76px 0;
}

.muted {
  background: var(--bg);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.text-center {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2,
.split-heading h2,
.content-grid h2 {
  margin: 0;
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.feature-grid,
.service-grid,
.case-grid,
.news-grid,
.contact-grid,
.content-grid {
  display: grid;
  gap: 24px;
}

.feature-grid,
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid,
.content-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.feature-card,
.service-card,
.case-card,
.news-card,
.form-panel,
.contact-panel,
.auth-card,
.dossier-panel,
.stats-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(10, 42, 67, 0.06);
}

.feature-card,
.service-card {
  padding: 28px;
}

.feature-card h3,
.service-card h3,
.case-card h3,
.news-card h3 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
}

.feature-card p,
.service-card p,
.case-card p,
.news-card p,
.content-grid p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.service-card a,
.news-card a {
  color: var(--gold-dark);
  font-weight: 800;
}

.case-card {
  overflow: hidden;
}

.case-card img,
.case-card video {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.case-body {
  padding: 24px;
}

.case-body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 26px;
  line-height: 1.15;
}

.news-card {
  overflow: hidden;
}

.news-card img,
.news-card video {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card div {
  padding: 22px;
}

.news-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.news-grid-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hero {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 29, 48, 0.92), rgba(8, 29, 48, 0.72)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800") center/cover;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-row span {
  color: var(--gold);
  font-size: 34px;
  font-weight: 800;
}

.service-row h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.stats-panel {
  padding: 28px;
}

.stats-panel div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.stats-panel div:last-child {
  border-bottom: 0;
}

.stats-panel strong {
  display: block;
  color: var(--gold-dark);
  font-size: 34px;
}

.stats-panel span {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
}

.timeline h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.timeline p {
  color: var(--muted);
}

.form-panel,
.contact-panel,
.auth-card,
.dossier-panel {
  padding: 30px;
}

label {
  display: block;
  margin: 16px 0 8px;
  color: var(--primary);
  font-weight: 700;
}

.form-control {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 6px;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 154, 46, 0.18);
}

.form-panel .btn,
.auth-card .btn {
  margin-top: 22px;
}

.contact-panel h2,
.auth-card h1 {
  color: var(--primary);
  font-weight: 800;
}

.note-box {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: 76vh;
  padding: 60px 16px;
  background: var(--bg);
}

.auth-card {
  width: min(100%, 480px);
}

.auth-switch {
  margin: 20px 0 0;
  text-align: center;
}

.auth-switch a {
  color: var(--gold-dark);
  font-weight: 800;
}

.dossier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.dossier-header span,
.dossier-meta span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dossier-header h2 {
  margin: 6px 0 0;
  color: var(--primary);
  font-weight: 800;
}

.dossier-header > strong {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff7e6;
  color: var(--gold-dark);
}

.dossier-live-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(197, 145, 61, 0.28);
  border-radius: 8px;
  background: #fff9ec;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.dossier-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.dossier-meta div {
  padding: 18px;
  border-radius: 8px;
  background: var(--bg);
}

.dossier-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--primary);
}

.recovered-section {
  display: grid;
  grid-template-columns: minmax(280px, 560px);
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.dossier-panel > .recovered-section:first-child {
  margin-top: 0;
  margin-bottom: 26px;
  padding-top: 0;
  border-top: 0;
}

.recovered-section h3 {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 34px;
  font-weight: 800;
}

.recovered-section p {
  color: var(--muted);
}

.visa-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 520px);
  min-height: 340px;
  padding: 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #0a2a43, #184f6b 48%, #c99a2e);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(10, 42, 67, 0.22);
}

.visa-card > *:not(.visa-watermark) {
  position: relative;
  z-index: 1;
}

.visa-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(150px, 42%, 230px);
  aspect-ratio: 1.35 / 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  background: url("/images/state-bank-watermark.png") center / contain no-repeat;
  filter: grayscale(1) brightness(1.8);
  mix-blend-mode: screen;
  opacity: 0.18;
}

.visa-card-top,
.visa-card-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.visa-card-top span,
.visa-card-bottom span {
  display: block;
  color: #f4d77a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.visa-card-top strong {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
}

.visa-bank-title {
  margin-top: 18px;
  color: #e9f1f6;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.visa-chip {
  width: 54px;
  height: 38px;
  margin: 26px 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4d77a, #a97418);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.visa-number {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
}

.visa-card-bottom strong {
  display: block;
  max-width: 220px;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 16px;
}

.visa-card-bottom div:last-child strong {
  color: #f4d77a;
  font-size: 18px;
}

.withdraw-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.withdraw-panel h3 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
}

.withdraw-panel p {
  color: var(--muted);
}

.withdraw-message {
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.withdraw-success {
  border: 1px solid rgba(30, 127, 87, 0.24);
  background: rgba(30, 127, 87, 0.08);
  color: #1e7f57;
}

.withdraw-error {
  border: 1px solid rgba(178, 64, 64, 0.24);
  background: rgba(178, 64, 64, 0.08);
  color: #9f2f2f;
}

.dossier-list {
  display: grid;
  gap: 24px;
}

.status-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.status-steps div {
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.status-steps .done {
  border-style: solid;
  background: #edf8f1;
  color: #1c7c3c;
}

.status-steps .current {
  border-style: solid;
  background: #fff7e6;
  color: var(--gold-dark);
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.empty-state h2 {
  color: var(--primary);
  font-weight: 800;
}

.demo-accounts {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.admin-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(10, 42, 67, 0.06);
}

.admin-card-wide {
  grid-column: 1 / -1;
}

.admin-card h2 {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

th {
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
}

.compact-form {
  display: grid;
}

.compact-form .btn {
  margin-top: 18px;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) auto;
  gap: 8px;
}

.password-reset-form {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 8px;
  min-width: 260px;
}

.password-reset-form .btn {
  white-space: nowrap;
}

.dossier-admin-list,
.editor-list {
  display: grid;
  gap: 18px;
}

.admin-dossier-form,
.editor-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.admin-dossier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.admin-dossier-head span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-dossier-head strong {
  color: var(--primary);
}

.admin-form-grid,
.editor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.admin-form-grid .btn {
  align-self: end;
  margin-top: 16px;
}

.admin-success {
  border-color: rgba(30, 127, 87, 0.24);
  background: rgba(30, 127, 87, 0.08);
  color: #1e7f57;
  font-weight: 800;
}

.admin-error {
  border-color: rgba(178, 64, 64, 0.24);
  background: rgba(178, 64, 64, 0.08);
  color: #9f2f2f;
  font-weight: 800;
}

.editor-form label:last-of-type {
  grid-column: 1 / -1;
}

.admin-dossier-form .btn,
.editor-form .btn {
  margin-top: 16px;
}

.admin-list,
.message-log {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-list li,
.message-log div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.admin-list strong,
.admin-list span,
.message-log strong,
.message-log span {
  display: block;
}

.admin-list span,
.message-log span,
.message-log p {
  margin: 4px 0 0;
  color: var(--muted);
}

.live-chat {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(10, 42, 67, 0.06);
  max-width: 1120px;
  margin: 0 auto;
}

.live-chat-header,
.live-chat-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.live-chat-header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.live-chat-header strong {
  color: var(--primary);
}

.live-chat-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  height: min(68vh, 720px);
  min-height: 560px;
  overflow-y: auto;
  padding: 18px;
  background: var(--bg);
}

.live-message {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(10, 42, 67, 0.06);
}

.live-message strong,
.live-message span {
  display: inline-block;
  margin-right: 8px;
}

.live-message span {
  color: var(--muted);
  font-size: 12px;
}

.live-message p {
  margin: 6px 0 0;
}

.admin-message {
  border-left: 4px solid var(--gold);
}

.user-message {
  justify-self: end;
  border-left: 4px solid var(--primary);
}

.live-chat-form {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.live-chat-form .form-control {
  min-height: 52px;
  font-size: 16px;
}

.chat-notice {
  justify-self: center;
  max-width: 92%;
  background: #fff7e0;
  color: var(--primary);
  text-align: center;
}

.chat-file-button {
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 48px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.chat-image {
  width: min(100%, 240px);
  max-height: 180px;
  margin-top: 8px;
  border-radius: 8px;
  object-fit: cover;
}

.floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.chat-toggle {
  display: grid;
  min-width: 156px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(10, 42, 67, 0.22);
  text-align: left;
}

.chat-toggle span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-toggle strong {
  font-size: 15px;
}

.chat-toggle.hidden {
  display: none;
}

.chat-box {
  width: min(440px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(10, 42, 67, 0.18);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--primary);
  color: var(--white);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header strong {
  font-weight: 800;
}

.chat-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.chat-box.collapsed {
  display: none;
}

.chat-body {
  display: grid;
  gap: 10px;
  height: min(58vh, 520px);
  padding: 14px;
  overflow-y: auto;
}

.message {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
}

.message-staff {
  background: var(--bg);
}

.message-user {
  margin-left: 28px;
  background: var(--primary-soft);
  color: var(--primary);
}

.chat-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-input .form-control {
  min-height: 46px;
  font-size: 15px;
}

.site-footer {
  padding: 52px 0;
  background: var(--primary);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.site-footer h3,
.site-footer h4 {
  font-weight: 800;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991px) {
  .nav-actions {
    align-items: stretch;
    margin-top: 16px;
    flex-direction: column;
  }

  .hotline {
    margin-bottom: 8px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .feature-grid,
  .service-grid,
  .news-grid,
  .news-grid-large,
  .contact-grid,
  .content-grid,
  .timeline,
  .footer-grid,
  .dossier-meta,
  .recovered-section,
  .status-steps,
  .admin-grid,
  .admin-form-grid,
  .editor-form {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .inline-form,
  .live-chat-form,
  .live-chat-header {
    grid-template-columns: 1fr;
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: 68vh;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero .lead,
  .page-hero p {
    font-size: 17px;
  }

  .section {
    padding: 46px 0;
  }

  .section-heading h2,
  .split-heading h2,
  .content-grid h2 {
    font-size: 28px;
  }

  .case-card img,
  .case-card video,
  .news-card img,
  .news-card video {
    height: 185px;
  }

  .case-body,
  .news-card div,
  .feature-card,
  .service-card,
  .form-panel,
  .contact-panel,
  .auth-card,
  .dossier-panel {
    padding: 20px;
  }

  .case-body strong {
    font-size: 22px;
  }

  .recovered-section h3 {
    font-size: 28px;
  }

  .visa-card {
    min-height: auto;
    padding: 18px;
  }

  .visa-number {
    font-size: 21px;
    letter-spacing: 1px;
  }

  .visa-card-top,
  .visa-card-bottom,
  .admin-dossier-head {
    flex-direction: column;
  }

  .case-card h2,
  .case-card h3,
  .news-card h2,
  .news-card h3 {
    font-size: 20px;
    line-height: 1.25;
  }

  .floating-chat {
    right: 12px;
    bottom: 12px;
  }

  .chat-toggle {
    min-width: 132px;
    padding: 10px 14px;
  }

  .chat-box {
    width: calc(100vw - 24px);
    max-height: 82vh;
  }

  .chat-body {
    max-height: 54vh;
    overflow: auto;
  }

  .live-chat-messages {
    height: 62vh;
    min-height: 420px;
  }

  .chat-input,
  .live-chat-form {
    grid-template-columns: auto 1fr;
  }

  .chat-input .btn,
  .live-chat-form .btn {
    grid-column: 1 / -1;
  }

  .live-message {
    max-width: 92%;
  }
}
