/* =============================================================================
   JatRana Express — site stylesheet
   Clean, dependency-free CSS. Design tokens via CSS custom properties.
   ============================================================================= */

:root {
  --brand-50:  #eef4fb;
  --brand-100: #d6e4f3;
  --brand-200: #adc9e8;
  --brand-300: #7ba7d8;
  --brand-500: #2a63a8;
  --brand-600: #1e4c86;
  --brand-700: #163a68;
  --brand-800: #102a4c;
  --brand-900: #0b1d36;
  --accent:    #ff7a00;
  --accent-600:#e56a00;
  --text:      #0b1d36;
  --muted:     #4c6589;
  --muted-2:   #6b7f9a;
  --border:    #d6e4f3;
  --bg:        #ffffff;
  --bg-soft:   #f7fafd;
  --shadow-sm: 0 1px 2px rgba(11,29,54,.06);
  --shadow:    0 10px 30px -12px rgba(11,29,54,.18);
  --radius:    12px;
  --radius-lg: 16px;
  --maxw:      1120px;
  --pad:       1rem;
  --pad-lg:    2rem;
  --font:      system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
}

h1, h2, h3, h4 { color: var(--brand-900); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 3.2vw + 1rem, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 1.8vw + .9rem, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--muted); }
a  { color: var(--brand-600); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-800); }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li + li { margin-top: .35rem; }

img, svg, video, canvas { max-width: 100%; height: auto; -webkit-user-drag: none; user-select: none; }

hr { border: 0; height: 1px; background: var(--border); margin: 2rem 0; }

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: .5rem .75rem;
  background: #fff;
  color: var(--brand-900);
  border-radius: 6px;
  box-shadow: var(--shadow);
  z-index: 1000;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
@media (min-width: 768px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: var(--pad-lg); padding-right: var(--pad-lg); }
}

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section--tight { padding: 3rem 0; }
.section--soft  { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark  { background: var(--brand-900); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p  { color: #c7d4e8; }
.section--dark a  { color: #fff; }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 .65rem;
}
.section--dark .eyebrow { color: #7ba7d8; }

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 42rem;
}
.section--dark .lead { color: #c7d4e8; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .05s ease, background .15s, border-color .15s, color .15s;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary  { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover  { background: var(--brand-800); color: #fff; }

.btn--secondary { background: #fff; color: var(--brand-800); border-color: var(--border); }
.btn--secondary:hover { border-color: var(--brand-500); color: var(--brand-900); }

.btn--accent   { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent:hover   { background: var(--accent-600); color: #fff; }

.btn--ghost    { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn--ghost:hover    { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }

.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand-900);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav__logo:hover { color: var(--brand-900); }
.nav__logo svg { width: 30px; height: 30px; }

.nav__links {
  display: none;
  gap: 1.75rem;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--brand-800);
}
.nav__links a[aria-current="page"] { color: var(--brand-600); }
.nav__links a:hover { color: var(--brand-500); }

.nav__cta { display: none; padding: .55rem 1rem; font-size: .85rem; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--brand-800);
  cursor: pointer;
  border-radius: 8px;
}
.nav__toggle:hover { background: var(--bg-soft); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav__mobile a {
  padding: .6rem .5rem;
  border-radius: 6px;
  font-weight: 500;
  color: var(--brand-800);
}
.nav__mobile a:hover { background: var(--bg-soft); color: var(--brand-900); }
.nav__mobile .btn { margin-top: .5rem; justify-content: center; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--brand-900);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  opacity: .45;
  background:
    radial-gradient(55% 60% at 15% 15%, rgba(74,131,196,.45) 0%, transparent 60%),
    radial-gradient(45% 50% at 85% 85%, rgba(255,122,0,.30) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  padding: 4.5rem 0 5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; align-items: center; padding: 6rem 0 7rem; gap: 3rem; }
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--accent); }
.hero__lead { color: #c7d4e8; max-width: 38rem; font-size: 1.1rem; }
.hero__meta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #7ba7d8;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 30rem;
}
.hero__stats dt { font-size: 1.75rem; font-weight: 600; color: #fff; }
.hero__stats dd { margin: .25rem 0 0; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: #7ba7d8; }

.hero__tracker {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero__tracker > p { color: #7ba7d8; font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; margin: 0 0 1rem; }
.shipment {
  background: rgba(11,29,54,.55);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: .75rem;
}
.shipment:last-child { margin-bottom: 0; }
.shipment__head { display: flex; justify-content: space-between; font-size: .75rem; color: #adc9e8; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
.shipment__route { margin-top: .35rem; color: #fff; font-size: .9rem; }
.shipment__route .arrow { color: #7ba7d8; margin: 0 .35rem; }
.shipment__bar { margin-top: .75rem; height: 6px; background: rgba(255,255,255,.1); border-radius: 99px; overflow: hidden; }
.shipment__bar > div { height: 100%; background: var(--accent); border-radius: 99px; }

/* --------------------------------------------------------------------------
   Page header (non-home)
   -------------------------------------------------------------------------- */

.page-header {
  position: relative;
  background: var(--brand-900);
  color: #fff;
  overflow: hidden;
  padding: 4rem 0;
}
@media (min-width: 768px) { .page-header { padding: 6rem 0; } }
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  opacity: .35;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 20% 10%, rgba(74,131,196,.35) 0%, transparent 60%),
    radial-gradient(50% 50% at 90% 90%, rgba(255,122,0,.25) 0%, transparent 60%);
}
.page-header__inner { position: relative; }
.page-header h1 { color: #fff; max-width: 38rem; }
.page-header p  { color: #c7d4e8; max-width: 42rem; font-size: 1.1rem; }
.page-header .eyebrow { color: #7ba7d8; }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card--soft { background: var(--bg-soft); }
.card h3 { margin-top: 0; }

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.service-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.service-card p  { font-size: .9rem; color: var(--muted); margin: 0; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0 0 .6rem;
  font-size: .92rem;
  color: var(--brand-800);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .4rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); }

/* "Why us" feature list */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.feature-list > li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.feature-list .tick {
  width: 36px; height: 36px; border-radius: 99px;
  background: rgba(255,122,0,.1);
  color: var(--accent-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-list h3 { font-size: 1rem; margin: 0 0 .25rem; }
.feature-list p  { margin: 0; font-size: .9rem; color: var(--muted); }

/* Two-col intro (about) */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 960px) { .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* Corp credibility block */
.credibility { background: var(--bg-soft); }
.credibility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
  margin: 1.25rem 0 0;
}
.credibility__grid dt { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); }
.credibility__grid dd { margin: .25rem 0 1rem; color: var(--brand-900); font-weight: 500; }

/* Definition meta list */
.meta-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem 1.5rem;
  font-size: .9rem;
}
.meta-dl dt { color: var(--muted-2); }
.meta-dl dd { margin: 0; color: var(--brand-900); font-weight: 500; text-align: right; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.form__fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 .5rem;
  display: grid;
  gap: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.form__fieldset:first-of-type { border-top: 0; padding-top: 0; }
.form__fieldset legend {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-700);
  padding: 0;
  margin-bottom: -.25rem;
}

.label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--brand-800);
  margin-bottom: .4rem;
}

.input, .select, .textarea {
  display: block;
  width: 100%;
  padding: .65rem .75rem;
  font: inherit;
  font-size: .92rem;
  color: var(--brand-900);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(42,99,168,.15);
}
.textarea { resize: vertical; min-height: 120px; }

.file-input {
  width: 100%;
  font-size: .9rem;
  color: var(--brand-800);
}
.file-input::file-selector-button {
  margin-right: .75rem;
  padding: .5rem .9rem;
  border: 0;
  border-radius: 6px;
  background: var(--brand-50);
  color: var(--brand-800);
  font: inherit;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
}
.file-input::file-selector-button:hover { background: var(--brand-100); }

.error-text { margin: .35rem 0 0; color: #b42318; font-size: .8rem; }
.field--invalid .input,
.field--invalid .select,
.field--invalid .textarea { border-color: #b42318; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--brand-800);
  cursor: pointer;
}
.checkbox input { margin-top: .2rem; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-alert {
  padding: .9rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
}
.form-alert--error   { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.form-alert--success {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.form-alert--success .tick {
  width: 56px; height: 56px; border-radius: 99px;
  background: #ecfdf3; color: #027a48;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.form-alert--success h2 { margin: 0 0 .5rem; }
.form-alert--success p { max-width: 32rem; margin: 0 auto 1.25rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Careers — job listing
   -------------------------------------------------------------------------- */

.job-header .eyebrow { color: var(--accent-600); }
.job-rates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) { .job-rates { grid-template-columns: 1fr 1fr; } }
.job-rate {
  background: var(--brand-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.job-rate .label-text { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.job-rate .rate { font-size: 1.6rem; font-weight: 600; color: var(--brand-900); margin: .25rem 0 .15rem; }
.job-rate .rate small { font-size: .85rem; font-weight: 400; color: var(--muted); }
.job-rate .monthly { font-size: .75rem; color: var(--muted-2); }

/* Tag chips (service anchors) */
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0 0 2rem; }
.chip-list a {
  display: inline-flex; align-items: center;
  padding: .4rem .9rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: .85rem;
  color: var(--brand-800);
  background: #fff;
}
.chip-list a:hover { border-color: var(--brand-500); color: var(--brand-900); }

/* Service entries */
.service-entry {
  display: grid; gap: 2rem;
  padding: 2rem 0;
  scroll-margin-top: 80px;
}
.service-entry + .service-entry { border-top: 1px solid var(--border); }
@media (min-width: 900px) { .service-entry { grid-template-columns: 1fr 1.3fr; gap: 3rem; } }

/* --------------------------------------------------------------------------
   Legal (long-form content)
   -------------------------------------------------------------------------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
}
.legal h2 {
  margin: 2.5rem 0 .75rem;
  font-size: 1.4rem;
  color: var(--brand-900);
}
.legal p  { color: var(--brand-800); line-height: 1.75; }
.legal ul { color: var(--brand-800); line-height: 1.75; }
.legal a  { text-decoration: underline; text-underline-offset: 3px; }
.legal__meta {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted-2);
  margin-bottom: 1.5rem;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .9rem;
}
.legal th, .legal td {
  text-align: left;
  padding: .6rem .5rem;
  border-bottom: 1px solid var(--border);
}
.legal th { color: var(--muted-2); font-weight: 600; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--brand-900);
  color: #c7d4e8;
  margin-top: 6rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }

.footer__brand {
  display: inline-flex; align-items: center; gap: .6rem;
  color: #fff; font-weight: 600; font-size: 1.05rem;
}
.footer__brand:hover { color: #fff; }
.footer__brand .logo { width: 32px; height: 32px; }
.footer__about {
  color: #adc9e8;
  font-size: .92rem;
  margin-top: 1rem;
}
.footer__meta { margin: 1.25rem 0 0; font-size: .8rem; }
.footer__meta > div { display: flex; gap: .5rem; margin-bottom: .25rem; }
.footer__meta dt { color: #7ba7d8; }
.footer__meta dd { margin: 0; color: #c7d4e8; }
.footer__col h3 {
  color: #fff;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 0 0 .9rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li + li { margin-top: .4rem; }
.footer__col a { color: #c7d4e8; font-size: .9rem; }
.footer__col a:hover { color: #fff; }
.footer__offices li { margin-bottom: 1rem; color: #c7d4e8; font-size: .9rem; line-height: 1.6; }
.footer__offices strong { color: #fff; font-weight: 600; }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  color: #7ba7d8;
  font-size: .75rem;
}
.footer__bar-inner {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
@media (min-width: 640px) { .footer__bar-inner { flex-direction: row; justify-content: space-between; } }

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 26rem;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  z-index: 100;
}
.cookie-banner h2 { font-size: .95rem; margin: 0 0 .5rem; }
.cookie-banner p  { font-size: .82rem; margin: 0 0 1rem; color: var(--muted); line-height: 1.55; }
.cookie-banner__actions { display: flex; gap: .5rem; }
.cookie-banner__actions .btn { flex: 1; padding: .55rem .75rem; font-size: .8rem; }

/* --------------------------------------------------------------------------
   Misc
   -------------------------------------------------------------------------- */

.contact-office {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.contact-office h3 { font-size: 1.1rem; margin: .25rem 0 .35rem; }
.contact-office p  { font-size: .9rem; margin: 0; color: var(--muted); line-height: 1.6; }
.contact-office .country { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-600); }
.contact-office .pairs { margin-top: .9rem; font-size: .9rem; }
.contact-office .pairs span { color: var(--muted-2); }

/* Stats & CTA strip on home */
.cta-strip { background: var(--brand-900); color: #fff; padding: 3rem 0; }
.cta-strip .cta-strip__inner {
  display: flex; flex-direction: column; gap: 1.25rem;
  align-items: flex-start;
}
.cta-strip h2 { color: #fff; margin: 0; }
.cta-strip p  { color: #c7d4e8; margin: .5rem 0 0; max-width: 36rem; }
.cta-strip .cta-strip__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 768px) {
  .cta-strip .cta-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Apply page — aside */
.apply-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .apply-grid { grid-template-columns: 1.3fr 1fr; gap: 2.5rem; } }
.apply-grid .aside { position: sticky; top: 80px; }

/* --------------------------------------------------------------------------
   Print — anti-save
   -------------------------------------------------------------------------- */

@media print {
  body * { visibility: hidden !important; }
  body::before {
    content: "Printing is disabled. © JatRana Express Ltd.";
    display: block;
    visibility: visible;
    margin: 20vh auto;
    font-size: 16pt;
    text-align: center;
    color: #0b1d36;
  }
}
