/* Base Styles */
:root {
  --navy-950: #06162f;
  --navy-900: #08214a;
  --navy-800: #0d2e63;
  --blue-100: #eaf2ff;
  --orange-500: #f68b1f;
  --yellow-400: #ffc247;
  --red-600: #d82424;
  --cream-100: #f7f4ee;
  --white: #ffffff;
  --ink: #14213d;
  --muted: #64748b;
  --line: #dbe4f0;
  --soft: #f6f9fe;
  --shadow: 0 18px 45px rgba(6, 22, 47, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-100), #ffffff);
}

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

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

h1 {
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

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

.section {
  padding: 72px 0;
}

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

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange-500);
}

.eyebrow--light {
  color: var(--yellow-400);
}

.eyebrow--light::before {
  background: var(--yellow-400);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.35rem;
  border: 2px solid var(--orange-500);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-400));
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 12px 26px rgba(246, 139, 31, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(246, 139, 31, 0.34);
}

.btn--small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.btn--white {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

/* Top Contact Bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.82rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.top-bar p {
  margin: 0;
  color: var(--yellow-400);
  font-weight: 700;
}

.top-bar__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.top-bar__links a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.top-bar__links a:hover {
  color: var(--yellow-400);
}

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 40px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 240, 0.8);
  backdrop-filter: blur(16px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--yellow-400);
  flex: 0 0 auto;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 20px;
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav__menu a {
  position: relative;
  padding: 28px 0;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange-500);
  transition: width 0.22s ease;
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(6, 22, 47, 0.08);
}

.nav__hamburger span {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--navy-900);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav__toggle:checked + .nav__hamburger span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle:checked + .nav__hamburger span:nth-child(2) {
  opacity: 0;
}

.nav__toggle:checked + .nav__hamburger span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 194, 71, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 74px 0 66px;
}

.hero__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero__content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

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

.badges span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-proof-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px 8px 24px 8px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 194, 71, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.hero-proof-panel div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof-panel strong {
  color: var(--yellow-400);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

.hero-proof-panel span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.hero__media {
  min-height: 330px;
  border-radius: 24px 8px 24px 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  border: 8px solid rgba(255, 255, 255, 0.12);
}

/* Breadcrumb Section */
.breadcrumb {
  padding: 18px 0;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.breadcrumb .container {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--navy-800);
}

/* Subpage Hero */
.subpage-hero {
  overflow: hidden;
  padding: 78px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 194, 71, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.subpage-hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.subpage-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  margin-bottom: 26px;
}

.subpage-hero__image {
  min-height: 320px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.25);
}

/* Intro Section */
.intro {
  background: var(--white);
}

.intro__grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.intro__copy {
  padding: 24px;
  border-left: 5px solid var(--orange-500);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.intro__copy p:last-child {
  margin-bottom: 0;
}

/* Simple & Transparent Moving Journey */
.visual-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 194, 71, 0.2), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(216, 36, 36, 0.08), transparent 24%),
    var(--cream-100);
}

.visual-process-grid {
  display: grid;
  gap: 24px;
}

.visual-process-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px 22px 24px;
  border: 1px solid rgba(8, 33, 74, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 55px rgba(6, 22, 47, 0.11);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.visual-process-card::before {
  content: "";
  position: absolute;
  right: -46px;
  top: 18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--yellow-400);
  opacity: 0.28;
  z-index: -1;
}

.visual-process-card::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 76px;
  height: 38px;
  border: 4px solid var(--yellow-400);
  border-top-color: var(--navy-950);
  border-left-color: transparent;
  border-radius: 0 0 999px 999px;
  opacity: 0.36;
  transform: rotate(-11deg);
  z-index: -1;
}

.visual-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 36, 36, 0.22);
  box-shadow: 0 28px 70px rgba(6, 22, 47, 0.16);
}

.process-image-wrap {
  position: relative;
  width: min(210px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(8, 33, 74, 0.12), rgba(255, 194, 71, 0.36)),
    var(--blue-100);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.7), 0 18px 34px rgba(6, 22, 47, 0.14);
}

.process-image-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 3px solid rgba(255, 194, 71, 0.78);
  border-right-color: rgba(6, 22, 47, 0.82);
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.process-image-wrap::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow-400);
  box-shadow: -16px -130px 0 -9px rgba(255, 194, 71, 0.62);
}

.process-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 8px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #eaf2ff, #fff4d3);
}

.process-step-badge {
  position: absolute;
  left: 6px;
  top: 10px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(216, 36, 36, 0.32);
}

.process-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-content h3 {
  color: var(--navy-950);
  font-size: 1.18rem;
}

.process-content p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Clean Visual Moving Support */
.visual-strengths-section {
  background: #ffffff;
}

.visual-strengths-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.visual-strengths-copy {
  max-width: 680px;
}

.strength-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.strength-list li {
  position: relative;
  padding-left: 34px;
  color: #344154;
  font-size: 1rem;
  font-weight: 500;
}

.strength-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border: 3px solid var(--yellow-400);
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 8px 16px rgba(216, 36, 36, 0.22);
}

.visual-photo-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  background: var(--cream-100);
  box-shadow: var(--shadow);
}

.visual-photo-collage figure {
  min-height: 160px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-100), #fff4d3);
  box-shadow: 0 10px 24px rgba(6, 22, 47, 0.1);
}

.visual-photo-collage figure:first-child {
  border-top-left-radius: 22px;
}

.visual-photo-collage figure:nth-child(2) {
  border-top-right-radius: 22px;
}

.visual-photo-collage figure:nth-child(3) {
  border-bottom-left-radius: 22px;
}

.visual-photo-collage figure:last-child {
  border-bottom-right-radius: 22px;
}

.visual-photo-collage img {
  object-fit: cover;
  transition: transform 0.32s ease;
}

.visual-photo-collage figure:hover img {
  transform: scale(1.05);
}

/* Homepage Visual Sections */
.home-trust-section {
  background: linear-gradient(180deg, #ffffff, var(--cream-100));
}

.home-trust-section h2,
.home-image-section h2,
.home-gallery-section h2 {
  position: relative;
}

.home-trust-section h2::after,
.home-image-section h2::after,
.home-gallery-section h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--red-600);
}

.home-image-section h2::after {
  margin-left: 0;
  margin-right: 0;
}

.trust-card-grid,
.home-gallery,
.route-card-grid {
  display: grid;
  gap: 18px;
}

.trust-card,
.gallery-card,
.route-card {
  overflow: hidden;
  border: 1px solid rgba(8, 33, 74, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-card:hover,
.gallery-card:hover,
.route-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 36, 36, 0.18);
  box-shadow: 0 26px 60px rgba(6, 22, 47, 0.16);
}

.trust-card div:last-child {
  padding: 22px;
}

.trust-card p,
.route-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.home-photo,
.home-large-photo {
  background-color: var(--blue-100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-photo {
  min-height: 220px;
}

.home-image-section {
  background: #ffffff;
}

.home-image-section__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.home-image-section__content .btn {
  margin-top: 24px;
}

.home-large-photo {
  min-height: 460px;
  border-radius: 24px 8px 24px 8px;
  box-shadow: var(--shadow);
}

.home-gallery-section {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.gallery-card h3 {
  padding: 20px;
  margin: 0;
  color: var(--navy-950);
}

.route-card {
  padding: 28px;
}

/* Detailed Inner Page Layouts */
.page-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 194, 71, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.page-hero__grid,
.page-hero {
  overflow: hidden;
}

.page-hero__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.page-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.page-hero-image,
.image-card__photo,
.process-card__photo {
  background-color: var(--blue-100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-image {
  min-height: 360px;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.24);
}

.info-section {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

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

.image-card,
.detail-card,
.process-card,
.cta-box {
  border: 1px solid rgba(8, 33, 74, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-card__photo,
.process-card__photo {
  min-height: 210px;
}

.image-card__body,
.process-card__body,
.detail-card {
  padding: 22px;
}

.image-card p,
.process-card p,
.detail-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.detail-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.process-card {
  position: relative;
}

.process-card__step {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-weight: 900;
}

.cta-box {
  margin-top: 28px;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.quick-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-form .btn {
  margin-top: 16px;
}

.page-hero h1,
.info-section h2 {
  letter-spacing: 0;
}

.info-section .section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--red-600);
}

/* Inner Page Trust Details */
.page-trust-section {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.trust-detail-grid {
  display: grid;
  gap: 18px;
}

.trust-detail-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(8, 33, 74, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 22, 47, 0.08);
}

.trust-detail-card::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--yellow-400);
  opacity: 0.22;
}

.trust-detail-card h3 {
  color: var(--navy-950);
}

.trust-detail-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Domestic / International Tabs Section */
.tabs-section {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

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

.tab-labels {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto 26px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tab-labels label {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 6px;
  color: var(--navy-800);
  font-weight: 800;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease;
}

#domestic-tab:checked ~ .tab-labels label[for="domestic-tab"],
#international-tab:checked ~ .tab-labels label[for="international-tab"] {
  background: var(--navy-900);
  color: var(--white);
}

.tab-panel {
  display: none;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

#domestic-tab:checked ~ .tab-panels .domestic-panel,
#international-tab:checked ~ .tab-panels .international-panel {
  display: block;
}

.panel-intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.panel-intro p,
.international-copy p {
  color: var(--muted);
}

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

.step-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px 22px 24px 84px;
  border: 1px solid rgba(8, 33, 74, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 242, 0.96)),
    #ffffff;
  box-shadow: 0 14px 32px rgba(6, 22, 47, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -28px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--yellow-400);
  opacity: 0.24;
  z-index: -1;
}

.step-card::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 18px;
  width: 54px;
  height: 28px;
  border: 3px solid var(--yellow-400);
  border-top-color: var(--navy-950);
  border-left-color: transparent;
  border-radius: 0 0 999px 999px;
  opacity: 0.28;
  transform: rotate(-12deg);
  z-index: -1;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 36, 36, 0.22);
  box-shadow: var(--shadow);
}

.step-card span {
  position: absolute;
  left: 22px;
  top: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(216, 36, 36, 0.3);
}

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

.international-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.material-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 16px 0 28px;
  list-style: none;
}

.material-list li {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-image {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Core Services Section */
.services {
  background: var(--white);
}

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

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(6, 22, 47, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 139, 31, 0.42);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--yellow-400);
  font-weight: 900;
}

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

.service-card--featured {
  overflow: hidden;
}

.service-card__image {
  height: 150px;
  margin: -24px -24px 20px;
  overflow: hidden;
}

/* Freight Info Section */
.freight {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.freight__grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.freight__content p {
  color: rgba(255, 255, 255, 0.78);
}

.freight-cards {
  display: grid;
  gap: 16px;
}

.freight-card,
.formula-box {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.freight-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.formula-box {
  color: rgba(255, 255, 255, 0.88);
}

.formula-box strong {
  color: var(--yellow-400);
}

/* Contact CTA Section */
.cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950) 62%, #261f0b);
  color: var(--white);
}

.cta__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.cta__details {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.cta__details a {
  color: var(--yellow-400);
}

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

/* Trust Section */
.trust {
  background: var(--soft);
}

.stats-grid {
  display: grid;
  gap: 18px;
}

.stat {
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--navy-900);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

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

/* USP Section */
.usps {
  background: var(--white);
}

.usp-grid {
  display: grid;
  gap: 16px;
}

.usp-grid article {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, var(--soft));
  border: 1px solid var(--line);
}

.usp-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Book Now / Enquiry Section */
.enquiry {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.enquiry__grid {
  display: grid;
  gap: 26px;
  align-items: stretch;
}

.enquiry__media {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.enquiry__media--info {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 194, 71, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.enquiry__media--info p {
  color: rgba(255, 255, 255, 0.78);
}

.enquiry-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  margin-bottom: 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(246, 139, 31, 0.12);
}

.form-note {
  color: var(--muted);
  font-weight: 700;
  margin: 14px 0 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--navy-800);
  font-weight: 800;
}

.form-status.is-success {
  color: #15803d;
}

.form-status.is-error {
  color: var(--red-600);
}

/* Footer */
.footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer__grid {
  display: grid;
  gap: 28px;
}

.footer h3 {
  color: var(--yellow-400);
  margin-bottom: 14px;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 9px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover {
  color: var(--yellow-400);
  transform: translateX(3px);
}

.footer__bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer__bottom p {
  margin-bottom: 0;
}

/* Floating Buttons */
.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.float-btn {
  min-width: 112px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(6, 22, 47, 0.24);
  transition: transform 0.22s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
}

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

.float-btn--whatsapp {
  background: #16a34a;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .badges,
  .tab-labels,
  .stats-grid,
  .usp-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 900px) {
  .section {
    padding: 92px 0;
  }

  .nav__menu {
    display: flex;
  }

  .hero {
    padding: 96px 0 88px;
  }

  .hero__grid,
  .intro__grid,
  .subpage-hero__grid,
  .visual-strengths-grid,
  .freight__grid,
  .cta__inner,
  .enquiry__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero__media {
    min-height: 560px;
  }

  .hero-proof-panel {
    min-height: 520px;
  }

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

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

  .international-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

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

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

  .home-image-section__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

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

  .page-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

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

  .info-grid .detail-card,
  .info-grid .image-card {
    grid-column: span 1;
  }

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

  .formula-box {
    grid-column: 1 / -1;
  }

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

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

  .footer__grid {
    grid-template-columns: 1.05fr 1fr 1.15fr 0.9fr 1.25fr;
  }
}

@media (max-width: 899px) {
  .site-header {
    top: auto;
  }

  .top-bar {
    position: static;
  }

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

  .nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
  }

  .nav__hamburger {
    display: inline-flex;
  }

  .nav__menu {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav__toggle:checked ~ .nav__menu {
    display: flex;
  }

  .nav__menu a {
    padding: 12px 14px;
    border-radius: 6px;
  }

  .nav__menu a::after {
    display: none;
  }

  .nav__menu a:hover {
    background: var(--blue-100);
  }

  .nav .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .top-bar__links {
    justify-content: flex-start;
  }
}

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

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 58px 0 52px;
  }

  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }

  .badges,
  .material-list {
    grid-template-columns: 1fr;
  }

  .tab-panel,
  .enquiry-form,
  .intro__copy {
    padding: 20px;
  }

  .step-card {
    padding-left: 20px;
    padding-top: 88px;
  }

  .step-card span {
    left: 20px;
    top: 24px;
  }

  .visual-photo-collage {
    grid-template-columns: 1fr;
  }

  .visual-photo-collage figure {
    min-height: 220px;
  }

  .process-image-wrap {
    width: min(190px, 68vw);
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .float-btn {
    min-width: 0;
  }
}
