:root {
  --primary: #003f7d;
  --secondary: #0a5ba8;
  --orange: #ff6b00;
  --light: #f5f7fa;
  --text: #1b1b1b;
  --muted: #5c6670;
  --white: #ffffff;
  --border: #dde5ee;
  --shadow: 0 18px 44px rgba(0, 63, 125, 0.12);
  --shadow-soft: 0 10px 28px rgba(20, 35, 54, 0.08);
  --radius: 8px;
  --header-height: 78px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--light);
}

.section-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--orange);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.12;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.25rem);
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 720px;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.section-head.center .eyebrow::before {
  width: 22px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  gap: 22px;
}

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

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

.card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card h3,
.card h4 {
  margin-bottom: 10px;
}

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

.card-topline {
  border-top: 4px solid var(--orange);
}

.icon-box {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 800;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 63, 125, 0.18);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-secondary {
  color: var(--white);
  background: var(--primary);
}

.btn-outline {
  color: var(--primary);
  border-color: rgba(0, 63, 125, 0.24);
  background: var(--white);
}

.btn-light {
  color: var(--primary);
  background: var(--white);
}

.btn-block {
  width: 100%;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1001;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--primary);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  gap: 14px;
  color: var(--primary);
  background: var(--white);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader-mark {
  width: 54px;
  height: 54px;
  border: 5px solid #dce8f4;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader span {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(221, 229, 238, 0.84);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, min-height 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(20, 35, 54, 0.08);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-name span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  position: relative;
  padding: 10px 9px;
  border-radius: 8px;
  color: #243447;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.89rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--primary);
  background: rgba(10, 91, 168, 0.08);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  content: "";
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(660px, 72svh);
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--primary);
}

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

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

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.88), rgba(0, 63, 125, 0.58) 46%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 18% 24%, rgba(255, 107, 0, 0.28), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 860px;
  gap: 22px;
  padding: 58px 0;
}

.hero .eyebrow,
.hero h1,
.hero .lead {
  color: var(--white);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-note span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(0, 63, 125, 0.96), rgba(10, 91, 168, 0.9)),
    url("../images/hero-map-small.jpg") center / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  inset: auto -12% -62% auto;
  width: 420px;
  height: 420px;
  content: "";
  border: 58px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 820px;
  gap: 16px;
}

.page-hero h1,
.page-hero .lead,
.page-hero .eyebrow {
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.stats-band {
  padding: 28px 0;
  background: var(--white);
  box-shadow: 0 -14px 38px rgba(0, 63, 125, 0.08);
}

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

.stat-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item::before {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  content: "";
  border: 5px solid rgba(255, 107, 0, 0.24);
  border-radius: 50%;
  background: var(--orange);
}

.country-card {
  display: grid;
  gap: 8px;
  min-height: 145px;
}

.country-code {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: #eaf2fb;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 14px;
}

.partner-tile {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.testimonial-card p {
  color: #34465a;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.testimonial-person {
  margin-top: 22px;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-btn,
.dot {
  border: 0;
  border-radius: 999px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--primary);
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #c6d4e3;
}

.dot.active {
  width: 28px;
  background: var(--orange);
}

.cta-band {
  padding: 68px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 63, 125, 0.96), rgba(10, 91, 168, 0.9)),
    url("../images/hero-map-small.jpg") center / cover no-repeat;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-inner h2,
.cta-inner .lead {
  color: var(--white);
}

.cta-inner .lead {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 0 0 0 34px;
}

.timeline-item::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.14);
}

.timeline-item::after {
  position: absolute;
  top: 20px;
  bottom: -22px;
  left: 7px;
  width: 1px;
  content: "";
  background: var(--border);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
}

.process-list {
  display: grid;
  counter-reset: process;
  gap: 18px;
}

.process-item {
  position: relative;
  padding: 24px 24px 24px 74px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.process-item::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  counter-increment: process;
  content: counter(process);
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: #2d3d4f;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(10, 91, 168, 0.12);
}

.form-field .error-message {
  min-height: 18px;
  color: #b42222;
  font-size: 0.82rem;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #b42222;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  color: var(--primary);
  font-weight: 700;
}

.job-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: #eaf2fb;
  font-size: 0.82rem;
  font-weight: 800;
}

.salary {
  color: var(--orange);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.responsive-table th,
.responsive-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.responsive-table th {
  color: var(--white);
  background: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
}

.responsive-table tr:last-child td {
  border-bottom: 0;
}

.world-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.world-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 91, 168, 0.08), rgba(255, 107, 0, 0.08)),
    url("../images/hero-map-small.jpg") center / cover no-repeat;
}

.world-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.48);
}

.map-point {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}

.point-uae {
  left: 60%;
  top: 47%;
}

.point-saudi {
  left: 57%;
  top: 51%;
}

.point-qatar {
  left: 59%;
  top: 50%;
}

.point-oman {
  left: 55%;
  top: 52%;
}

.point-kuwait {
  left: 58%;
  top: 49%;
}

.point-india {
  left: 66%;
  top: 58%;
}

.point-germany {
  left: 50%;
  top: 33%;
}

.point-uk {
  left: 46%;
  top: 30%;
}

.point-canada {
  left: 23%;
  top: 34%;
}

.point-australia {
  left: 82%;
  top: 72%;
}

@keyframes pulse {
  50% {
    transform: scale(1.16);
  }
}

.country-detail {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.country-detail ul,
.simple-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.country-detail li,
.simple-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.country-detail li::before,
.simple-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.country-select-card {
  text-align: left;
  cursor: pointer;
}

.country-select-card[aria-pressed="true"] {
  border-color: var(--orange);
  box-shadow: 0 16px 32px rgba(255, 107, 0, 0.12);
}

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

.blog-card {
  display: grid;
  overflow: hidden;
  padding: 0;
}

.blog-thumb {
  display: grid;
  min-height: 156px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 63, 125, 0.94), rgba(255, 107, 0, 0.78)),
    url("../images/hero-map-small.jpg") center / cover no-repeat;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.blog-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 63, 125, 0.92), rgba(10, 91, 168, 0.78)),
    url("../images/hero-map-small.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.map-placeholder strong {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.35rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #062a50;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.95fr;
  gap: 34px;
  padding: 62px 0 42px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 950;
  display: grid;
  gap: 10px;
}

.float-btn,
.back-to-top {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 14px 26px rgba(0, 31, 63, 0.22);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.float-btn.whatsapp {
  background: #1da851;
}

.float-btn.call {
  background: var(--orange);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 950;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    display: grid;
    width: min(92vw, 370px);
    max-height: calc(100svh - var(--header-height) - 24px);
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 12px;
    white-space: normal;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 68px 0;
  }

  .two-column,
  .world-layout {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: min(620px, 76svh);
  }

  .hero-content {
    padding: 46px 0;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 31, 63, 0.92), rgba(0, 63, 125, 0.68)),
      radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.2), transparent 36%);
  }

  .cta-inner,
  .job-card {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

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

  .country-detail {
    position: static;
  }
}

@media (max-width: 720px) {
  .brand-name {
    font-size: 0.9rem;
  }

  .brand-name span {
    font-size: 0.68rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    gap: 18px;
    padding: 42px 0 46px;
  }

  .page-hero {
    padding: 58px 0;
  }

  .btn-row,
  .cta-inner {
    width: 100%;
  }

  .btn-row .btn,
  .cta-inner .btn {
    flex: 1 1 210px;
  }

  .form-grid,
  .filter-bar,
  .grid-3,
  .grid-4,
  .stat-grid,
  .blog-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .responsive-table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
  }

  .responsive-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .responsive-table tr {
    border-bottom: 1px solid var(--border);
  }

  .responsive-table td {
    display: grid;
    grid-template-columns: minmax(110px, 38%) 1fr;
    gap: 10px;
    border-bottom: 1px solid #edf2f7;
  }

  .responsive-table td::before {
    content: attr(data-label);
    color: var(--primary);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 800;
  }

  .world-panel {
    min-height: 310px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: clamp(1.92rem, 9vw, 2.32rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .section {
    padding: 56px 0;
  }

  .card,
  .testimonial-card,
  .process-item,
  .filter-bar {
    padding: 20px;
  }

  .process-item {
    padding-left: 64px;
  }

  .process-item::before {
    left: 18px;
  }

  .nav-menu {
    right: 12px;
    width: calc(100vw - 24px);
  }

  .hero-note span {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .floating-actions {
    right: 12px;
    bottom: 86px;
  }

  .back-to-top {
    right: 12px;
    bottom: 24px;
  }

  .float-btn,
  .back-to-top {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 720px) {
  .floating-actions {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .floating-actions.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
