:root {
  --blue: #174678;
  --cyan: #27abc5;
  --orange: #f47a20;
  --green: #15956d;
  --ink: #1d2b3a;
  --muted: #667789;
  --line: #dde7ef;
  --soft: #f4f8fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px clamp(16px, 5vw, 70px);
  color: #e9f7fb;
  background: var(--blue);
  font-size: 13px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.main-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  align-items: center;
  padding: 12px clamp(16px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

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

.brand-header-banner {
  display: block;
  width: min(64vw, 1180px);
  height: 112px;
  flex: 1 1 auto;
  border-radius: 6px;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
}

.brand-logo {
  display: block;
  width: 180px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.service-tabs {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.service-tabs a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.service-tabs a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.sales-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.sales-menu button {
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
  color: var(--blue);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.sales-menu button:hover,
.sales-menu:focus-within button {
  color: var(--orange);
  border-color: var(--orange);
}

.sales-menu-list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(23, 70, 120, 0.16);
}

.sales-menu:hover .sales-menu-list,
.sales-menu:focus-within .sales-menu-list {
  display: grid;
  gap: 6px;
}

.sales-menu-list span {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  background: #f4f8fb;
  font-size: 13px;
  white-space: nowrap;
}

.sales-menu-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.login-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: 560px;
  padding: clamp(34px, 6vw, 78px) clamp(16px, 5vw, 70px);
  background:
    linear-gradient(110deg, rgba(23, 70, 120, 0.96), rgba(39, 171, 197, 0.72)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  color: var(--white);
}

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

.hero .eyebrow {
  color: #fff2df;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p:last-child {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.search-box {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(12, 38, 66, 0.28);
}

.search-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #eaf4f8;
}

.search-tabs button {
  min-height: 52px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.search-tabs button.active {
  color: var(--white);
  background: var(--orange);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.trip-form button,
.contact-form button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
  font-weight: 800;
}

.trip-form button {
  grid-column: 1 / -1;
  background: var(--orange);
}

.section {
  padding: clamp(46px, 7vw, 86px) clamp(16px, 5vw, 70px);
}

.page-hero {
  min-height: 360px;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(23, 70, 120, 0.96), rgba(39, 171, 197, 0.76)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.flight-hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(16, 47, 81, 0.78), rgba(16, 47, 81, 0.18) 48%, rgba(16, 47, 81, 0.04)),
    url("flight-background.png");
  background-position: center;
  background-size: cover;
}

.flight-hero h1,
.flight-hero p {
  max-width: 620px;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:last-child {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.page-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  background: var(--white);
}

.page-form-section > div p {
  margin-top: 12px;
  color: var(--muted);
}

.standalone-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 16px 44px rgba(23, 70, 120, 0.1);
}

.standalone-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
  font-weight: 800;
}

.flight-live-panel {
  display: grid;
  gap: 16px;
}

.flight-results {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.flight-results h3 {
  margin-bottom: 8px;
}

.flight-result-card {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.flight-result-card b {
  color: var(--green);
  font-size: 20px;
}

.flight-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.flight-price-row a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.flight-status {
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
}

.flight-status-info {
  color: var(--blue);
  background: #eef6fa;
}

.flight-status-warning {
  color: #7a4b00;
  background: #fff4dc;
}

.flight-status-error {
  color: #8b1d1d;
  background: #ffe6e6;
}

.demo-note {
  color: var(--muted);
  font-size: 14px;
}

.flight-times {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0;
}

.flight-times span {
  padding: 10px;
  border-radius: 6px;
  background: #eef6fa;
  color: var(--muted);
  font-size: 13px;
}

.flight-times b {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.about-section {
  background: var(--white);
}

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

.company-info-grid article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.company-info-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-info-grid strong {
  display: block;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.2;
}

.about-video-block {
  margin-top: 46px;
}

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

.animated-video {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #174678, #27abc5);
  box-shadow: 0 18px 46px rgba(23, 70, 120, 0.14);
}

.animated-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 42, 0.04), rgba(8, 24, 42, 0.58));
  pointer-events: none;
}

.video-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.video-label span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(244, 122, 32, 0.94);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-label strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.flight-animation {
  background: linear-gradient(155deg, #174678, #27abc5 62%, #f4f8fb);
}

.sky-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 46%;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(-8deg);
}

.cloud {
  position: absolute;
  width: 82px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  animation: cloudMove 12s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  left: 13px;
}

.cloud::after {
  right: 13px;
}

.cloud-one {
  top: 54px;
  left: -90px;
}

.cloud-two {
  top: 110px;
  left: -160px;
  animation-delay: -5s;
  opacity: 0.76;
}

.plane {
  position: absolute;
  left: -120px;
  top: 102px;
  width: 118px;
  height: 58px;
  transform: rotate(-8deg);
  animation: planeFly 5.8s ease-in-out infinite;
}

.plane-body {
  position: absolute;
  left: 12px;
  top: 22px;
  width: 92px;
  height: 15px;
  border-radius: 999px;
  background: var(--white);
}

.plane-body::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 20px solid var(--white);
}

.plane-wing {
  position: absolute;
  left: 45px;
  top: 28px;
  width: 44px;
  height: 13px;
  border-radius: 2px 12px 12px 2px;
  background: #f47a20;
  transform: skewX(-26deg);
}

.plane-tail {
  position: absolute;
  left: 18px;
  top: 12px;
  width: 24px;
  height: 22px;
  border-radius: 4px;
  background: #f47a20;
  transform: skewX(24deg);
}

.visa-animation {
  background: linear-gradient(145deg, #102f51, #15956d);
}

.passport-card {
  position: absolute;
  left: 32px;
  top: 48px;
  width: 150px;
  height: 190px;
  padding: 22px;
  border-radius: 8px;
  background: #174678;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  animation: cardFloat 4.8s ease-in-out infinite;
}

.passport-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.passport-card strong {
  display: block;
  margin-top: 44px;
  color: var(--white);
  font-size: 34px;
  letter-spacing: 0;
}

.passport-card i {
  display: block;
  width: 52px;
  height: 52px;
  margin-top: 22px;
  border: 3px solid #27abc5;
  border-radius: 50%;
}

.stamp {
  position: absolute;
  right: 30px;
  top: 92px;
  padding: 10px 14px;
  border: 3px solid #f47a20;
  border-radius: 8px;
  color: #fff2df;
  font-weight: 900;
  transform: rotate(-12deg) scale(0.7);
  opacity: 0;
  animation: stampIn 4.8s ease-in-out infinite;
}

.document-line {
  position: absolute;
  right: 32px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.line-one {
  top: 168px;
  width: 110px;
}

.line-two {
  top: 190px;
  width: 82px;
}

.tax-animation {
  background: linear-gradient(145deg, #103f51, #174678);
}

.tax-board {
  position: absolute;
  left: 28px;
  top: 52px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 160px;
  height: 150px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.tax-board span {
  width: 24px;
  border-radius: 6px 6px 0 0;
  background: #f47a20;
  animation: barGrow 2.6s ease-in-out infinite;
}

.tax-board span:nth-child(1) {
  height: 42px;
}

.tax-board span:nth-child(2) {
  height: 76px;
  animation-delay: -0.4s;
}

.tax-board span:nth-child(3) {
  height: 102px;
  animation-delay: -0.8s;
}

.tax-board span:nth-child(4) {
  height: 62px;
  animation-delay: -1.2s;
}

.tax-calculator {
  position: absolute;
  right: 28px;
  top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 24px);
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  animation: cardFloat 5s ease-in-out infinite;
}

.tax-calculator strong {
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: 20px;
}

.tax-calculator i {
  display: block;
  width: 24px;
  height: 20px;
  border-radius: 4px;
  background: #dfeaf2;
}

@keyframes planeFly {
  0% {
    transform: translate(-20px, 28px) rotate(-8deg);
  }
  52% {
    transform: translate(235px, -22px) rotate(-8deg);
  }
  100% {
    transform: translate(450px, -78px) rotate(-8deg);
  }
}

@keyframes cloudMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(520px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes stampIn {
  0%,
  28% {
    opacity: 0;
    transform: rotate(-12deg) scale(0.7);
  }
  44%,
  82% {
    opacity: 1;
    transform: rotate(-12deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(-12deg) scale(1);
  }
}

@keyframes barGrow {
  0%,
  100% {
    transform: scaleY(0.76);
  }
  50% {
    transform: scaleY(1.08);
  }
}

.branch-preview {
  background: var(--white);
}

.branch-block {
  margin-top: 42px;
}

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

.branch-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.branch-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--white);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-title h2,
.why-card h2,
.contact h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-title p:last-child,
.contact p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--white);
}

.service-strip article,
.visa-cards article,
.deal-grid article,
.tax-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-strip article {
  min-height: 118px;
  padding: 18px;
}

.service-strip strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.service-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.media-showcase {
  background: #eef6fa;
}

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

.media-card {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 32, 58, 0.08), rgba(9, 32, 58, 0.82));
}

.media-card > * {
  position: relative;
  z-index: 1;
}

.media-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.media-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.play-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  min-width: 54px;
  min-height: 34px;
  place-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(244, 122, 32, 0.95);
  font-size: 12px;
  font-weight: 800;
}

.visa-media {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.travel-media {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.tax-media {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=900&q=80");
}

.flight-media {
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=80");
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.country-grid > span {
  display: grid;
  min-height: 42px;
  place-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid #bee4ed;
  border-radius: 6px;
  color: var(--blue);
  background: #eefbfe;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.country-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.country-directory > span {
  display: flex;
  gap: 8px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #bee4ed;
  border-radius: 8px;
  color: var(--blue);
  background: #eefbfe;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.mini-flag {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(23, 70, 120, 0.12);
  overflow: hidden;
  vertical-align: middle;
}

.flag-us { background: repeating-linear-gradient(to bottom, #b22234 0 2px, #fff 2px 4px); }
.flag-us::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 15px; height: 12px; background: #3c3b6e; }
.flag-ca { background: linear-gradient(to right, #d80621 0 25%, #fff 25% 75%, #d80621 75%); }
.flag-gb { background: linear-gradient(135deg, #012169 0 35%, #fff 35% 40%, #c8102e 40% 48%, #fff 48% 53%, #012169 53%); }
.flag-eu { background: radial-gradient(circle at center, #ffcc00 0 18%, transparent 19%), #003399; }
.flag-ae { background: linear-gradient(to right, #ef3340 0 25%, transparent 25%), linear-gradient(to bottom, #009739 0 33%, #fff 33% 66%, #000 66%); }
.flag-au, .flag-nz { background: linear-gradient(135deg, #012169 0 48%, #fff 48% 54%, #c8102e 54% 60%, #012169 60%); }
.flag-sg { background: linear-gradient(to bottom, #ef3340 0 50%, #fff 50%); }
.flag-my { background: repeating-linear-gradient(to bottom, #cc0001 0 2px, #fff 2px 4px); }
.flag-my::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 16px; height: 12px; background: #010066; }
.flag-th { background: linear-gradient(to bottom, #da291c 0 16%, #fff 16% 32%, #2d2a4a 32% 68%, #fff 68% 84%, #da291c 84%); }
.flag-vn { background: radial-gradient(circle at center, #ffdf00 0 18%, transparent 19%), #da251d; }
.flag-jp { background: radial-gradient(circle at center, #bc002d 0 28%, transparent 29%), #fff; }
.flag-kr { background: radial-gradient(circle at center, #cd2e3a 0 22%, #0047a0 23% 35%, transparent 36%), #fff; }
.flag-sa { background: #006c35; }
.flag-qa { background: linear-gradient(to right, #fff 0 28%, #8a1538 28%); }
.flag-om { background: linear-gradient(to right, #c8102e 0 25%, transparent 25%), linear-gradient(to bottom, #fff 0 33%, #c8102e 33% 66%, #009a44 66%); }
.flag-kw { background: linear-gradient(to right, #000 0 24%, transparent 24%), linear-gradient(to bottom, #007a3d 0 33%, #fff 33% 66%, #ce1126 66%); }
.flag-bh { background: linear-gradient(to right, #fff 0 28%, #ce1126 28%); }
.flag-tr { background: radial-gradient(circle at 45% 50%, #fff 0 18%, transparent 19%), #e30a17; }
.flag-ge { background: linear-gradient(to right, transparent 0 43%, #ff0000 43% 57%, transparent 57%), linear-gradient(to bottom, transparent 0 40%, #ff0000 40% 60%, transparent 60%), #fff; }
.flag-ru { background: linear-gradient(to bottom, #fff 0 33%, #0039a6 33% 66%, #d52b1e 66%); }
.flag-za { background: linear-gradient(to bottom, #de3831 0 33%, #fff 33% 40%, #007a4d 40% 60%, #fff 60% 67%, #002395 67%); }
.flag-eg { background: linear-gradient(to bottom, #ce1126 0 33%, #fff 33% 66%, #000 66%); }
.flag-world { background: radial-gradient(circle at center, #27abc5 0 34%, transparent 35%), linear-gradient(135deg, #174678, #15956d); }

.visa-cards,
.deal-grid,
.tax-grid {
  display: grid;
  gap: 16px;
}

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

.visa-application {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 70, 120, 0.1);
}

.visa-application h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.visa-application p:last-child {
  margin-top: 10px;
  color: var(--muted);
}

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

.visa-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
  font-weight: 800;
}

.visa-cards article,
.deal-grid article,
.tax-grid article {
  min-height: 170px;
  padding: 22px;
}

h3 {
  color: var(--blue);
  font-size: 21px;
  line-height: 1.2;
}

article p {
  margin-top: 10px;
  color: var(--muted);
}

.holidays {
  background: #eaf4f8;
}

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

.deal-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--white);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.tax-section {
  background: var(--white);
}

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

.tax-grid article {
  background: #fbfdff;
}

.itr-application {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  box-shadow: 0 16px 44px rgba(23, 70, 120, 0.1);
}

.itr-application h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.itr-application p:last-child {
  margin-top: 10px;
  color: var(--muted);
}

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

.itr-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
  font-weight: 800;
}

.gst-application {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  box-shadow: 0 16px 44px rgba(23, 70, 120, 0.1);
}

.gst-application h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.gst-application p:last-child {
  margin-top: 10px;
  color: var(--muted);
}

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

.gst-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  font-weight: 800;
}

.why {
  background: var(--blue);
}

.why-card {
  max-width: 980px;
  color: var(--white);
}

.why-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
  background: var(--soft);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 70, 120, 0.12);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(16px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.8);
  background: #102f51;
}

footer strong {
  color: var(--white);
}

@media (max-width: 1060px) {
  .main-nav {
    grid-template-columns: 1fr;
  }

  .brand {
    grid-column: auto;
  }

  .brand-header-banner {
    width: 100%;
    height: 88px;
  }

  .service-tabs {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .page-form-section,
  .visa-application,
  .itr-application,
  .gst-application,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-strip,
  .animated-video-grid,
  .media-grid,
  .country-grid,
  .company-info-grid,
  .tax-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 6px;
  }

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

  .brand-logo {
    width: 150px;
    height: 52px;
  }

  .brand-header-banner {
    width: 100%;
    height: 64px;
  }

  .login-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 30px;
  }

  .search-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .trip-form,
  .standalone-form,
  .visa-form,
  .itr-form,
  .gst-form,
  .visa-cards,
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .service-strip,
  .animated-video-grid,
  .media-grid,
  .country-grid,
  .company-info-grid,
  .branch-grid,
  .tax-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 480px) {
  .main-nav {
    gap: 10px;
  }

  .service-strip,
  .animated-video-grid,
  .media-grid,
  .country-grid,
  .company-info-grid,
  .branch-grid,
  .tax-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }
}
