:root {
  --navy: #072c34;
  --navy-light: #103e46;
  --green: #12805f;
  --green-bright: #2caf84;
  --gold: #df9b27;
  --sand: #f4f1e9;
  --cream: #fbfaf5;
  --ink: #122b31;
  --text: #50646a;
  --white: #ffffff;
  --line: #dee5e1;
  --shadow: 0 20px 50px rgba(7, 44, 52, 0.09);
  --radius: 24px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

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

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

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

h1,
h2,
h3,
.brand-name,
.button {
  font-family: "Manrope", Arial, sans-serif;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-130%);
}

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

.topbar {
  background: var(--navy);
  color: #d7e4e0;
  font-size: 15px;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.topbar a {
  color: #f5c66d;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 245, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  border-color: var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 25px;
}

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

.brand-symbol {
  display: block;
  position: relative;
  flex: 0 0 60px;
  width: 60px;
  height: 58px;
  overflow: hidden;
}

.brand-symbol img {
  position: absolute;
  top: -1px;
  left: -33px;
  width: 136px;
  height: auto;
  max-width: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  font: 800 18px/1 "Manrope", Arial, sans-serif;
  letter-spacing: -0.06em;
  position: relative;
}

.brand-mark::after {
  position: absolute;
  content: "";
  bottom: 9px;
  right: 8px;
  width: 17px;
  height: 2px;
  background: var(--gold);
}

.brand-name {
  display: grid;
  line-height: 1.15;
}

.brand-name strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand-name small {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 29px;
  color: #3a5056;
  font-size: 16px;
  font-weight: 600;
}

.menu > a:not(.button):hover,
.footer-links a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 45px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--navy);
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  width: 1px;
  height: 1px;
}

.hero {
  overflow: hidden;
  padding: 75px 0 80px;
  background:
    radial-gradient(circle at 90% 22%, rgba(44, 175, 132, 0.14), transparent 36%),
    linear-gradient(135deg, var(--cream), #edf3ec);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(410px, 1fr) minmax(450px, 0.96fr);
  align-items: center;
  gap: 55px;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--green);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 21px;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.09;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--green);
}

.hero-copy {
  max-width: 555px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.55;
}

.service-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.service-switcher a {
  padding: 9px 14px;
  border: 1px solid #d4dfd9;
  border-radius: 30px;
  background: var(--white);
  color: var(--green);
  font: 700 13px "Manrope", Arial, sans-serif;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-switcher a:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 36px 0 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: #0b694d;
  border-color: #0b694d;
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  color: var(--navy);
  border-color: #b8cac3;
}

.button-outline:hover {
  color: var(--white);
}

.button-small {
  min-height: 48px;
  padding-inline: 23px;
}

.hero-highlights {
  display: flex;
  gap: 32px;
}

.hero-highlights div {
  padding-right: 32px;
  border-right: 1px solid #d3dcd8;
}

.hero-highlights div:last-child {
  border-right: 0;
}

.hero-highlights strong {
  display: block;
  color: var(--navy);
  font: 800 31px/1.15 "Manrope", Arial, sans-serif;
}

.hero-highlights span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.visual-card {
  padding: 23px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 0 30px 70px rgba(7, 44, 52, 0.25);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a5c1be;
  font-size: 14px;
}

.card-header strong {
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(44, 175, 132, 0.16);
  color: #75deb8;
  font-size: 13px;
}

.route-map {
  margin: 24px auto 13px;
}

.route-map text {
  fill: #aac1c1;
  font: 500 14px "Source Sans 3", Arial, sans-serif;
}

.route {
  fill: none;
  stroke: url(#route);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 10;
  animation: travelling 14s linear infinite;
}

.route-secondary {
  animation-duration: 18s;
}

.point {
  fill: var(--gold);
}

.pulse {
  fill: var(--green-bright);
  transform-origin: center;
  animation: pulse 2.6s ease-out infinite;
}

.shipment-chips {
  display: flex;
  gap: 9px;
}

.shipment-chips span {
  flex: 1;
  padding: 12px 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce9e6;
  font-size: 13px;
  text-align: center;
}

.floating-badge {
  position: absolute;
  right: -22px;
  bottom: 48px;
  display: grid;
  width: 150px;
  padding: 17px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-badge span {
  color: var(--green);
  font: 700 11px "Manrope", Arial, sans-serif;
  letter-spacing: 0.12em;
}

.floating-badge strong {
  margin-top: 5px;
  font: 700 18px "Manrope", Arial, sans-serif;
}

.floating-badge small {
  color: var(--text);
}

.trust-strip {
  background: var(--navy);
  color: #d7e5e1;
}

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

.trust-grid p {
  position: relative;
  padding: 26px 24px 26px 39px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid p::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 35px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 96px 0;
}

.section[id] {
  scroll-margin-top: 124px;
}

.section-heading {
  max-width: 695px;
  margin-bottom: 51px;
}

.section-heading h2,
.consultancy h2,
.routes h2,
.about h2,
.contact h2 {
  margin-bottom: 17px;
  color: var(--navy);
  font-size: clamp(34px, 3.5vw, 43px);
  line-height: 1.2;
  letter-spacing: -0.052em;
}

.section-heading > p:last-child,
.consultancy-copy > p:not(.eyebrow),
.routes-panel > p:not(.eyebrow),
.about-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: var(--text);
  font-size: 19px;
}

.shipment-process {
  margin-bottom: 32px;
  padding: 25px 27px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--white);
}

.process-title {
  margin-bottom: 19px;
  color: #84d7b8;
  font: 700 13px "Manrope", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.process-step {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-step strong {
  color: var(--gold);
  font: 800 19px "Manrope", Arial, sans-serif;
}

.process-step span {
  color: #dae6e4;
  font-size: 16px;
  line-height: 1.35;
}

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

.service-card {
  padding: 31px 27px 27px;
  border: 1px solid #e4e7e0;
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  border-radius: 12px;
  background: #e4f2eb;
  color: var(--green);
  font-size: 25px;
}

.service-card h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.04em;
}

.service-card p {
  min-height: 83px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 16px;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: #304c52;
  font-size: 15px;
  list-style: none;
}

.service-card li::before {
  content: "+";
  margin-right: 9px;
  color: var(--gold);
  font-weight: 700;
}

.trading-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 34px;
  padding: 33px 37px;
  border-radius: var(--radius);
  background: #e8f1eb;
}

.trading-support .eyebrow {
  margin-bottom: 10px;
}

.trading-support h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.trading-support div > p:last-child {
  max-width: 660px;
  color: var(--text);
  font-size: 17px;
}

.trading-support .button {
  flex-shrink: 0;
}

.consultancy {
  background: var(--sand);
}

.consultancy-grid {
  display: grid;
  grid-template-columns: 0.93fr 1fr;
  align-items: center;
  gap: 70px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  color: var(--green);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
}

.text-link span {
  font-size: 24px;
}

.consultancy-steps {
  display: grid;
  gap: 15px;
}

.step {
  display: flex;
  gap: 23px;
  padding: 23px;
  border-radius: 18px;
  background: var(--white);
}

.step strong {
  color: var(--gold);
  font: 800 21px/1.5 "Manrope", Arial, sans-serif;
}

.step h3 {
  margin-bottom: 5px;
  font-size: 19px;
}

.step p {
  color: var(--text);
  font-size: 16px;
}

.routes-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.15fr;
  gap: 65px;
  align-items: center;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.route-card {
  min-height: 160px;
  padding: 27px 26px;
  border-radius: 18px;
  background: #f1f5f1;
}

.route-card:nth-child(2),
.route-card:nth-child(3) {
  background: var(--navy);
  color: var(--white);
}

.route-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.route-card p {
  color: var(--text);
  font-size: 16px;
}

.route-card:nth-child(2) p,
.route-card:nth-child(3) p {
  color: #c2d4d1;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: center;
  gap: 76px;
}

.about-stat {
  padding: 36px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
}

.about-stat strong {
  display: block;
  color: var(--white);
  font: 800 76px/1 "Manrope", Arial, sans-serif;
  letter-spacing: -0.07em;
}

.about-stat span {
  color: #c6d7d5;
}

.about-copy .eyebrow {
  color: #50c398;
}

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

.about-copy > p:not(.eyebrow) {
  color: #c6d7d5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: 62px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 150px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-domain,
.contact-detail {
  display: grid;
  padding: 22px 25px;
  border-radius: 15px;
  background: #e8f1eb;
}

.contact-domain span,
.contact-detail span {
  color: var(--text);
  font-size: 15px;
}

.contact-domain strong,
.contact-detail strong {
  color: var(--green);
  font: 700 22px "Manrope", Arial, sans-serif;
  overflow-wrap: anywhere;
}

.contact-detail {
  background: var(--white);
  border: 1px solid #e4e8e2;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-detail:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.whatsapp-detail {
  grid-template-columns: 34px 1fr;
  gap: 0 12px;
  align-items: center;
}

.whatsapp-detail img {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  background: #25d366;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.enquiry-form {
  display: grid;
  gap: 19px;
  padding: 37px;
  border: 1px solid #e4e8e2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.enquiry-form h3 {
  margin-bottom: 6px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: #324950;
  font-size: 15px;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #d3ded9;
  border-radius: 8px;
  background: #fdfdfb;
  padding: 13px 14px;
  color: var(--ink);
  font-weight: 400;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid rgba(18, 128, 95, 0.25);
  border-color: var(--green);
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form .button {
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  color: var(--text);
  font-size: 14px;
}

.form-note.error {
  color: #a23a2c;
}

.rfq-panel {
  padding: 42px;
  border: 1px solid #e4e8e2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.rfq-panel h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -0.045em;
}

.rfq-panel > p:not(.eyebrow):not(.form-note) {
  color: var(--text);
  font-size: 18px;
}

.rfq-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 32px;
  padding: 0;
  list-style: none;
}

.rfq-list li {
  position: relative;
  padding-left: 28px;
  color: #304c52;
}

.rfq-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.rfq-panel .form-note {
  margin-top: 18px;
}

.rfq-panel .form-note a {
  color: var(--green);
  font-weight: 700;
}

.menu a[aria-current="page"] {
  color: var(--green);
}

.page-hero {
  padding: 68px 0 0;
  background:
    radial-gradient(circle at 7% 25%, rgba(44, 175, 132, 0.1), transparent 35%),
    var(--cream);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 52px;
}

.page-hero-copy h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(43px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.065em;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 535px;
  color: var(--text);
  font-size: 20px;
}

.page-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.service-jump {
  display: flex;
  gap: 0;
  margin-top: 62px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: var(--navy);
  color: #d5e5e1;
}

.service-jump a {
  flex: 1;
  padding: 23px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.service-jump a:hover {
  background: rgba(44, 175, 132, 0.2);
  color: var(--white);
}

.detail-section[id],
.operations[id],
.operation-card[id],
.special-cargo[id],
.search-section[id] {
  scroll-margin-top: 122px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  align-items: center;
  gap: 58px;
}

.detail-reverse .detail-media {
  order: 2;
}

.detail-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

.detail-copy h2,
.operation-card h2,
.project-copy h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.detail-copy > p:not(.eyebrow),
.operation-card div > p:not(.eyebrow),
.project-copy > p:not(.eyebrow) {
  color: var(--text);
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.feature-list article {
  padding: 17px 18px;
  border-radius: 13px;
  background: #f1f5f1;
}

.feature-list h3 {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 16px;
}

.feature-list p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.section-tint {
  background: var(--sand);
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  color: #40595f;
  font-size: 17px;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.regional-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.regional-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.regional-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.corridor-map {
  padding: 30px 28px 20px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
}

.corridor-map svg {
  width: 100%;
  height: auto;
}

.corridor-map svg circle {
  fill: var(--gold);
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 4;
}

.corridor-map svg text {
  fill: #d2e2df;
  font: 600 14px "Source Sans 3", Arial, sans-serif;
}

.corridor-line {
  fill: none;
  stroke: #51c795;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 8 8;
}

.corridor-line.alternate {
  stroke: var(--gold);
}

.map-note {
  color: #a6bfbb;
  font-size: 13px;
  line-height: 1.4;
}

.capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.capability-row span {
  padding: 11px 17px;
  border: 1px solid #dbe4e0;
  border-radius: 40px;
  background: var(--white);
  color: #365259;
  font-weight: 600;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.operation-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.operation-card > div {
  padding: 30px;
}

.operation-card h2 {
  font-size: 29px;
}

.check-list.compact {
  gap: 9px;
  margin-top: 20px;
}

.check-list.compact li {
  font-size: 15px;
}

.project-feature {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 39px;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--navy);
}

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

.project-copy .eyebrow {
  color: #63d0a5;
}

.project-copy > p:not(.eyebrow) {
  color: #c3d7d4;
}

.project-copy .check-list li {
  color: #e0ebe8;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.project-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.project-gallery img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.project-gallery figcaption {
  padding: 11px 14px;
  color: #dbebe8;
  font-size: 14px;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.special-card {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  overflow: hidden;
  border: 1px solid #e4e7e0;
  border-radius: 19px;
  background: var(--white);
}

.special-card img {
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
}

.special-card div {
  padding: 25px 21px;
}

.special-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.special-card p {
  color: var(--text);
  font-size: 15px;
}

.search-section .section-heading {
  margin-bottom: 39px;
}

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

.search-card {
  padding: 29px 27px;
  border: 1px solid #dce7e1;
  border-radius: 18px;
  background: var(--white);
}

.search-card h3 {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.search-card p {
  color: var(--text);
  font-size: 16px;
}

.quote-banner {
  padding: 64px 0;
  background: #e6f1eb;
}

.quote-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.quote-banner h2 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 35px;
  letter-spacing: -0.05em;
}

.quote-banner div > p:last-child {
  color: var(--text);
}

.site-footer {
  padding-top: 65px;
  background: #06272e;
  color: #c3d3d1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 0.72fr;
  gap: 60px;
  padding-bottom: 55px;
}

.brand-footer .brand-symbol img {
  filter: brightness(0) invert(1);
}

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

.brand-footer .brand-name small {
  color: #aec3c0;
}

.footer-description {
  max-width: 350px;
  margin-top: 20px;
  color: #a7bebc;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 13px;
  font-size: 16px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font: 700 15px "Manrope", Arial, sans-serif;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-whatsapp img {
  width: 23px;
  height: 23px;
  padding: 4px;
  border-radius: 50%;
  background: #25d366;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 13px;
  border-radius: 999px;
  background: #25d366;
  color: #08392b;
  font: 700 16px/1 "Manrope", Arial, sans-serif;
  box-shadow: 0 12px 30px rgba(11, 87, 48, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(11, 87, 48, 0.34);
}

.whatsapp-float img {
  width: 29px;
  height: 29px;
}

.copyright {
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #92aaa7;
  font-size: 15px;
}

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

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

@keyframes travelling {
  to {
    stroke-dashoffset: -85;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  80%,
  100% {
    transform: scale(1.9);
    opacity: 0.25;
  }
}

@media (max-width: 1020px) {
  .navbar {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

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

  .menu.open {
    display: flex;
  }

  .menu a:not(.button) {
    padding: 12px;
  }

  .hero-grid,
  .page-hero-grid,
  .detail-grid,
  .regional-grid,
  .project-feature,
  .consultancy-grid,
  .routes-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

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

  .hero-visual {
    max-width: 650px;
  }

  .detail-reverse .detail-media {
    order: 0;
  }

  .page-hero-media img {
    height: 400px;
  }

  .trust-grid,
  .service-grid,
  .operation-grid,
  .special-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .routes-grid,
  .consultancy-grid,
  .about-grid,
  .contact-grid {
    gap: 43px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 660px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner a {
    display: none;
  }

  .brand-name strong {
    font-size: 18px;
  }

  .brand-symbol {
    flex-basis: 55px;
    width: 55px;
    height: 53px;
  }

  .brand-symbol img {
    left: -30px;
    width: 124px;
  }

  .hero {
    padding: 53px 0 55px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 48px);
  }

  .hero-copy {
    font-size: 19px;
  }

  .service-switcher {
    gap: 6px;
  }

  .service-switcher a {
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    gap: 16px;
  }

  .hero-highlights div {
    flex: 1;
    padding-right: 10px;
  }

  .hero-highlights strong {
    font-size: 25px;
  }

  .hero-highlights span {
    font-size: 12px;
  }

  .visual-card {
    padding: 17px;
    border-radius: 20px;
  }

  .route-map {
    margin-block: 15px 5px;
  }

  .floating-badge {
    right: 10px;
    bottom: -25px;
  }

  .trust-strip {
    padding-top: 24px;
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .feature-list,
  .operation-grid,
  .special-grid,
  .project-gallery,
  .route-cards,
  .search-grid,
  .footer-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .trust-grid p {
    padding-block: 12px;
    border: 0;
  }

  .trust-grid p::before {
    top: 21px;
  }

  .section {
    padding: 69px 0;
  }

  .page-hero {
    padding-top: 49px;
  }

  .page-hero-grid {
    gap: 34px;
  }

  .page-hero-copy h1 {
    font-size: 39px;
  }

  .page-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .page-hero-media img {
    height: 253px;
  }

  .service-jump {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
    border-radius: 14px 14px 0 0;
  }

  .service-jump a {
    padding: 15px 7px;
    font-size: 13px;
  }

  .section-heading {
    margin-bottom: 37px;
  }

  .service-card p {
    min-height: auto;
  }

  .detail-grid,
  .regional-grid,
  .project-feature {
    gap: 26px;
  }

  .detail-media img,
  .regional-photo img {
    height: 245px;
  }

  .corridor-map {
    padding: 23px 17px 18px;
  }

  .operation-card img {
    height: 225px;
  }

  .operation-card > div {
    padding: 24px 20px;
  }

  .project-feature {
    padding: 25px 19px;
  }

  .project-gallery img {
    height: 194px;
  }

  .special-card {
    grid-template-columns: 1fr;
  }

  .special-card img {
    height: 215px;
    min-height: 0;
  }

  .quote-banner-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-banner-grid .button {
    width: 100%;
  }

  .rfq-panel {
    padding: 29px 21px;
  }

  .shipment-process {
    padding: 24px 20px;
  }

  .process-grid {
    gap: 17px;
  }

  .process-step,
  .process-step:nth-child(3) {
    min-height: auto;
    padding: 0 0 17px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .trading-support {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 21px;
  }

  .trading-support .button {
    width: 100%;
  }

  .about-stat strong {
    font-size: 60px;
  }

  .enquiry-form {
    padding: 25px 20px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-grid {
    gap: 38px;
    padding-bottom: 45px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    padding: 12px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
}

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