:root {
  --navy: #062b63;
  --navy-2: #082241;
  --navy-3: #0d3a78;
  --blue: #0d5aa7;
  --gold: #f59e0b;
  --orange: #f97316;
  --green: #18b85f;
  --text: #102033;
  --muted: #65758b;
  --soft: #f5f7fb;
  --soft-2: #eef3f8;
  --line: #e4eaf2;
  --white: #ffffff;
  --shadow: 0 16px 44px rgba(9, 34, 73, 0.14);
  --shadow-soft: 0 10px 24px rgba(9, 34, 73, 0.09);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

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

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;
}

.boot-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--navy);
  background: var(--soft);
  text-align: center;
}

.boot-screen strong {
  display: block;
  font-size: 1.6rem;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
}

.topbar-inner,
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-inner {
  justify-content: space-between;
  min-height: 36px;
}

.topbar span,
.topbar a,
.language-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.topbar a:hover {
  color: var(--gold);
}

.topbar select {
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: var(--white);
  background: var(--navy-3);
  padding: 0 6px;
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(9, 34, 73, 0.06);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: inset 0 -8px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark span {
  width: 24px;
  height: 24px;
  display: block;
  background:
    linear-gradient(150deg, var(--gold) 0 36%, transparent 36%),
    linear-gradient(30deg, var(--blue) 0 52%, transparent 52%),
    linear-gradient(270deg, var(--white) 0 100%);
  clip-path: polygon(50% 0, 96% 25%, 96% 75%, 50% 100%, 4% 75%, 4% 25%);
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.05;
}

.brand strong span {
  color: var(--gold);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.nav-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 6px;
  color: #22364d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
  background: #edf4fb;
}

.nav-menu .nav-quote {
  margin-left: 6px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--navy);
}

.nav-menu .nav-quote:hover,
.nav-menu .nav-quote.active {
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
  color: var(--navy);
  background: #edf4fb;
  border-color: #d6e5f2;
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(6, 43, 99, 0.16);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
}

.btn-full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.inner-hero-bg,
.global-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 48, 0.92) 0%, rgba(4, 22, 48, 0.78) 35%, rgba(4, 22, 48, 0.38) 65%, rgba(4, 22, 48, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 43, 99, 0.36), transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 44px;
  padding-block: 58px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1,
.inner-hero h1 {
  margin: 12px 0 18px;
  font-size: 3.1rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p,
.inner-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

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

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.hero-pills span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-calculator {
  align-self: center;
}

.shipping-calculator,
.panel,
.content-panel,
.tracking-card,
.quote-summary,
.contact-info article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.shipping-calculator {
  padding: 22px;
  color: var(--text);
}

.calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.calculator-head h2,
.panel h2,
.tracking-card h2,
.quote-summary h2,
.content-panel h2,
.contact-info h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.calculator-head p,
.panel p,
.tracking-card p,
.quote-summary p,
.content-panel p,
.contact-info p {
  margin: 6px 0 0;
  color: var(--muted);
}

.calculator-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--navy);
  background: #edf4fb;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  color: var(--navy);
  background: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.service-option input:checked + span {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 120px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 90, 167, 0.12);
}

.dimension-field {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
  padding: 0;
  border: 0;
}

.dimension-field legend {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.calculator-disclaimer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.estimate-result {
  margin-top: 14px;
}

.estimate-card {
  border: 1px solid #cfe2f3;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbff;
}

.estimate-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.estimate-total {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 900;
}

.estimate-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}

.estimate-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

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

.estimate-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.estimate-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

.stats-band {
  background: var(--navy);
  color: var(--white);
}

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

.stat-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 12px;
  padding: 20px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card:first-child {
  border-left: 0;
}

.stat-card .icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.stat-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.section {
  padding: 72px 0;
}

.compact-section {
  padding: 58px 0;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.85rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.feature-card,
.service-card,
.product-card,
.process-card,
.testimonial-card,
.article-card,
.destination-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 190px;
  padding: 22px 16px;
  text-align: center;
}

.feature-icon,
.process-icon,
.product-thumb {
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: var(--navy);
  background: #edf4fb;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.feature-icon .icon {
  width: 32px;
  height: 32px;
}

.feature-card h3,
.service-card h3,
.product-card h3,
.process-card h3,
.testimonial-card strong {
  margin: 14px 0 7px;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.3;
}

.feature-card p,
.service-card p,
.product-card p,
.process-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.service-card {
  overflow: hidden;
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft-2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-body {
  padding: 14px;
}

.service-body > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--navy);
  background: #edf4fb;
}

.service-body a,
.article-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.product-card {
  min-height: 126px;
  padding: 14px 10px;
  text-align: center;
}

.product-thumb {
  width: 72px;
  height: 52px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(6, 43, 99, 0.92), rgba(13, 90, 167, 0.72)),
    var(--soft);
  color: var(--white);
}

.product-thumb .icon {
  width: 28px;
  height: 28px;
}

.product-card h3 {
  margin: 10px 0 0;
  font-size: 0.78rem;
}

.process-section {
  background: #f3f6fb;
}

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

.process-card {
  position: relative;
  min-height: 210px;
  padding: 18px 14px;
  text-align: center;
}

.process-step {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
}

.process-card h3 {
  font-size: 0.88rem;
}

.destination-row,
.destination-grid {
  display: grid;
  gap: 14px;
}

.destination-row {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

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

.destination-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.destination-card.compact {
  min-height: 142px;
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(4, 22, 48, 0.08), rgba(4, 22, 48, 0.88));
}

.flag-badge {
  width: 38px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  color: var(--navy);
  background: linear-gradient(180deg, var(--white) 0 48%, #e9eef5 48% 100%);
  font-size: 0.72rem;
  font-weight: 900;
}

.destination-card h3 {
  margin: 9px 0 4px;
  font-size: 1rem;
}

.destination-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.destination-card.compact p {
  display: none;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.about-grid,
.split-grid,
.about-page-grid,
.tracking-grid,
.contact-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 36px;
  align-items: center;
}

.video-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.74;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--white);
  border-radius: 50%;
  background: rgba(6, 43, 99, 0.62);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-left: 18px solid var(--white);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.video-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.about-copy h2,
.rich-copy h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.2;
}

.about-copy p,
.rich-copy p {
  color: var(--muted);
  margin: 0 0 18px;
}

.check-list,
.mini-list,
.tag-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
}

.check-list .icon,
.mini-list .icon {
  margin-top: 3px;
  color: var(--gold);
}

.about-copy .btn {
  margin-top: 20px;
}

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

.testimonial-card {
  min-height: 190px;
  padding: 24px;
  text-align: center;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
}

.testimonial-card strong {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.partner-section {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.partner-logo {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.inner-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.inner-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 22, 48, 0.92), rgba(4, 22, 48, 0.62), rgba(4, 22, 48, 0.2));
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 58px;
}

.panel,
.content-panel,
.quote-summary,
.contact-info article {
  padding: 26px;
}

.split-grid {
  align-items: start;
}

.mini-list {
  margin-top: 24px;
}

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

.metric-panel div {
  min-height: 126px;
  display: grid;
  align-content: center;
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.metric-panel strong {
  font-size: 2rem;
  line-height: 1;
}

.metric-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.two-column-list,
.value-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.two-column-list article {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.two-column-list h3,
.content-panel h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.two-column-list ul,
.detail-columns ul,
.detail-columns ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.tag-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.tag-list span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 800;
}

.service-detail-stack {
  display: grid;
  gap: 26px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-detail:nth-child(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-detail:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  min-height: 360px;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-copy {
  padding: 34px;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
}

.service-detail h2 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: 1.8rem;
}

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

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

.detail-columns h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.search-box {
  position: relative;
}

.search-box .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-box input {
  padding-left: 42px;
}

.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.region-tabs button.active,
.region-tabs button:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.destination-note {
  margin: 0 0 24px;
  color: var(--muted);
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 26px;
  color: var(--muted);
  text-align: center;
  background: var(--soft);
}

.tracking-grid {
  align-items: start;
}

.tracking-form {
  display: grid;
  gap: 16px;
}

.tracking-result {
  min-height: 360px;
}

.tracking-card {
  padding: 28px;
}

.tracking-card.muted {
  min-height: 300px;
  display: grid;
  align-content: center;
}

.tracking-timeline {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.tracking-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.tracking-step > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--soft);
  font-weight: 900;
}

.tracking-step.done > span {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.tracking-step strong {
  display: block;
  color: var(--navy);
}

.tracking-step small {
  color: var(--muted);
}

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

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.article-card div {
  padding: 20px;
}

.article-meta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.3;
}

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

.contact-grid,
.quote-grid {
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 800;
}

.map-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed #b8c6d6;
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(13, 90, 167, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 90, 167, 0.08) 1px, transparent 1px),
    var(--soft);
  background-size: 24px 24px;
  text-align: center;
}

.map-placeholder .icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.quote-summary {
  display: grid;
  gap: 20px;
}

.summary-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.summary-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.form-message {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-message.is-success {
  color: var(--green);
  font-weight: 800;
}

.global-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.global-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 43, 99, 0.96), rgba(6, 43, 99, 0.76));
}

.global-cta img {
  opacity: 0.34;
}

.global-cta-inner {
  position: relative;
  z-index: 2;
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
}

.global-cta h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.global-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.global-cta-inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 1.05fr 1fr;
  gap: 28px;
  padding: 56px 0 34px;
}

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

.site-footer .brand small,
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand p {
  max-width: 290px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
}

.footer-contact li {
  display: flex;
  gap: 8px;
}

.footer-contact .icon {
  margin-top: 3px;
  color: var(--gold);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 0;
  margin-top: 12px;
}

.newsletter-form input {
  border-radius: 6px 0 0 6px;
}

.newsletter-form button {
  border: 0;
  border-radius: 0 6px 6px 0;
  color: var(--white);
  background: var(--blue);
}

.newsletter-form .form-message {
  grid-column: 1 / -1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.82rem;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1180px) {
  .nav-menu a {
    padding-inline: 8px;
    font-size: 0.76rem;
  }

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

  .product-grid,
  .destination-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
  }

  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    min-height: 70px;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a,
  .nav-menu .nav-quote {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 54px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 2.45rem;
  }

  .hero-calculator {
    width: min(100%, 560px);
  }

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

  .stat-card:nth-child(3) {
    border-left: 0;
  }

  .about-grid,
  .split-grid,
  .about-page-grid,
  .tracking-grid,
  .contact-grid,
  .quote-grid,
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail-media {
    order: 0;
  }

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

  .testimonial-grid,
  .partner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .topbar-left span:first-child {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 2rem;
  }

  .hero p,
  .inner-hero p {
    font-size: 0.96rem;
  }

  .hero-pills,
  .form-grid,
  .dimension-field,
  .two-column-list,
  .value-grid,
  .faq-grid,
  .detail-columns,
  .metric-panel {
    grid-template-columns: 1fr;
  }

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

  .stats-grid,
  .why-grid,
  .service-grid,
  .product-grid,
  .process-grid,
  .destination-row,
  .destination-grid,
  .article-grid,
  .testimonial-grid,
  .partner-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .rich-copy h2,
  .global-cta h2 {
    font-size: 1.55rem;
  }

  .stat-card,
  .stat-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-card:first-child {
    border-top: 0;
  }

  .service-detail-media {
    min-height: 230px;
  }

  .service-detail-copy,
  .panel,
  .content-panel,
  .quote-summary,
  .contact-info article,
  .tracking-card,
  .shipping-calculator {
    padding: 20px;
  }

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

@media (max-width: 460px) {
  .topbar {
    font-size: 0.72rem;
  }

  .topbar-left,
  .topbar-right {
    gap: 8px;
  }

  .nav-shell {
    gap: 12px;
  }

  .hero-actions,
  .global-cta-inner div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .destination-card {
    min-height: 190px;
  }

  .service-detail h2 {
    font-size: 1.45rem;
  }
}
