:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --nav-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --navy: #07143a;
  --navy-2: #101d4b;
  --orange: #f4511e;
  --orange-2: #ff7a2f;
  --ink: #172033;
  --muted: #657086;
  --line: #dbe2ea;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --cream: #fff7ef;
  --green: #1f8a5b;
  --background-color: #ffffff;
  --default-color: var(--muted);
  --heading-color: var(--ink);
  --accent-color: var(--orange);
  --surface-color: var(--paper);
  --contrast-color: #ffffff;
  --nav-color: #243047;
  --nav-hover-color: var(--orange);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #243047;
  --nav-dropdown-hover-color: var(--orange);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--default-color);
  background: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.7;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--orange-2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: 0;
  line-height: 1.08;
}

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

.section {
  padding: 96px 0;
  scroll-margin-top: 82px;
}

.js .section-title,
.js .strip-grid,
.js .service-card,
.js .media-frame,
.js .rental-panel,
.js .why-intro,
.js .coverage-content,
.js .location-panel,
.js .footer-top {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes hero-pan {
  from {
    background-position: center right, center right, center right;
  }

  to {
    background-position: center right, center right, 58% center;
  }
}

@keyframes hero-copy-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0.18);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(31, 138, 91, 0.3);
  }

  50% {
    box-shadow: 0 18px 42px rgba(31, 138, 91, 0.46);
  }
}

.light-band {
  background:
    linear-gradient(135deg, rgba(244, 81, 30, 0.08), rgba(31, 138, 91, 0.05)),
    var(--mist);
}

.header {
  color: var(--default-color);
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 0;
  transition: all 0.35s ease;
  z-index: 997;
  border-bottom: 1px solid rgba(7, 20, 58, 0.08);
  backdrop-filter: blur(18px);
}

.scrolled .header {
  box-shadow: 0 16px 40px rgba(7, 20, 58, 0.08);
}

.logo,
.footer-brand {
  color: var(--navy);
  line-height: 1;
}

.logo:hover,
.footer-brand:hover {
  color: var(--navy);
}

.logo-image {
  width: 178px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 20, 58, 0.12);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(7, 20, 58, 0.16);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: var(--orange);
  transform: translateY(-1px);
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 13px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-radius: 8px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(244, 81, 30, 0.08);
  }

  .mobile-nav-toggle {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin-left: auto;
    padding: 9px 14px;
    font-size: 13px;
  }

  .navmenu {
    order: 3;
  }

  .mobile-nav-toggle {
    color: var(--navy);
    font-size: 28px;
    line-height: 0;
    margin-left: 14px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 68px 16px auto 16px;
    padding: 14px;
    margin: 0;
    border-radius: 8px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid rgba(7, 20, 58, 0.08);
    box-shadow: 0 24px 60px rgba(7, 20, 58, 0.14);
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 14px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background: rgba(244, 81, 30, 0.08);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }
}

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 20, 58, 0.92) 0%, rgba(7, 20, 58, 0.78) 38%, rgba(7, 20, 58, 0.18) 70%),
    linear-gradient(0deg, rgba(7, 20, 58, 0.18), rgba(7, 20, 58, 0.18)),
    url("../img/ulink/hero-logistics.png") center right / cover no-repeat;
  color: #ffffff;
  padding: 120px 0 72px;
  animation: hero-pan 18s ease-in-out infinite alternate;
  will-change: background-position;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.92), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

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

.hero-content > * {
  opacity: 0;
  animation: hero-copy-up 0.86s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-content .hero-kicker {
  animation-delay: 0.12s;
}

.hero-content .hero-text {
  animation-delay: 0.22s;
}

.hero-content .hero-actions {
  animation-delay: 0.32s;
}

.hero-content .hero-proof {
  animation-delay: 0.44s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow span {
  width: 40px;
  height: 4px;
  border-radius: 8px;
  background: var(--orange);
  transform-origin: left center;
  animation: line-grow 0.95s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.eyebrow.dark {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 800;
  margin: 0 0 12px;
}

.hero-kicker {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 680px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  max-width: 620px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn-primary,
.btn-ghost {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 900;
}

.btn-primary {
  color: #ffffff;
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 18px 36px rgba(244, 81, 30, 0.28);
}

.btn-primary:hover {
  color: #ffffff;
  background: var(--orange-2);
  border-color: var(--orange-2);
  transform: translateY(-2px);
}

.btn-primary i,
.btn-ghost i {
  transition: transform 0.25s ease;
}

.btn-primary:hover i,
.btn-ghost:hover i {
  transform: translateX(4px);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.btn-ghost.dark {
  color: var(--navy);
  border-color: rgba(7, 20, 58, 0.18);
  background: #ffffff;
}

.btn-light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--navy);
  box-shadow: none;
}

.btn-light:hover {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.hero-proof div {
  padding: 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  margin-top: 5px;
}

.service-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  padding-bottom: 44px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(7, 20, 58, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 20, 58, 0.14);
}

.strip-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.strip-grid div:hover {
  background: rgba(244, 81, 30, 0.06);
  transform: translateY(-2px);
}

.strip-grid div:last-child {
  border-right: 0;
}

.strip-grid i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 8px;
  font-size: 18px;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-title-left {
  margin: 0 0 24px;
  max-width: none;
}

.section-title-left h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.12;
}

.section-title span {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 800;
  margin: 0;
}

.section-title p {
  margin: 18px auto 0;
  max-width: 660px;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: service-card;
}

.service-card,
.why-grid article,
.process-step,
.contact-method {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(7, 20, 58, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 18px 44px rgba(7, 20, 58, 0.06);
  transition:
    transform 0.28s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.service-card::before,
.why-grid article::before,
.contact-method::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--navy));
  opacity: 0.82;
  transition: width 0.28s ease, opacity 0.28s ease;
  z-index: -1;
}

.service-card {
  counter-increment: service-card;
  min-height: 262px;
  padding: 30px;
}

.service-card::after {
  content: counter(service-card, decimal-leading-zero);
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(7, 20, 58, 0.11);
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 81, 30, 0.34);
  box-shadow: 0 30px 64px rgba(7, 20, 58, 0.13);
}

.service-card:hover::before,
.why-grid article:hover::before,
.contact-method:hover::before {
  width: 7px;
  opacity: 1;
}

.service-card i,
.why-grid i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 16px 30px rgba(7, 20, 58, 0.18);
  transition: transform 0.28s ease, background 0.28s ease;
}

.service-card:nth-child(even) i,
.why-grid article:nth-child(even) i {
  background: var(--orange);
}

.service-card:hover i,
.why-grid article:hover i {
  transform: translateY(-3px) rotate(-3deg);
}

.service-card h3,
.why-grid h3,
.process-step h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
}

.service-card p,
.why-grid p,
.process-step p {
  margin: 0;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(7, 20, 58, 0.1);
  box-shadow: 0 34px 80px rgba(7, 20, 58, 0.16);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.media-frame:hover img {
  transform: scale(1.045);
}

.media-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: #ffffff;
  background: rgba(7, 20, 58, 0.86);
  border-left: 4px solid var(--orange);
  backdrop-filter: blur(12px);
}

.media-badge i {
  color: var(--orange-2);
  font-size: 24px;
}

.media-badge span {
  font-family: var(--heading-font);
  font-weight: 800;
}

.lead {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 30px;
}

.about-service-list div {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 20, 58, 0.08);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 16px 34px rgba(7, 20, 58, 0.05);
}

.about-service-list i {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 18px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.about-points div {
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(7, 20, 58, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(7, 20, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-points div:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 81, 30, 0.28);
  box-shadow: 0 24px 52px rgba(7, 20, 58, 0.1);
}

.about-points i {
  color: var(--orange);
  font-size: 24px;
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 17px;
  line-height: 1.2;
  margin: 10px 0 6px;
}

.about-points span {
  font-size: 14px;
  line-height: 1.45;
}

.process {
  background:
    linear-gradient(135deg, rgba(7, 20, 58, 0.96), rgba(16, 29, 75, 0.94)),
    url("../img/ulink/hero-logistics.png") center / cover fixed;
}

.process .section-title h2,
.process .process-step h3 {
  color: #ffffff;
}

.process .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-step {
  min-height: 250px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 50px rgba(0, 0, 0, 0.13);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.3));
}

.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 62px rgba(0, 0, 0, 0.18);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 8px;
  font-family: var(--heading-font);
  font-weight: 800;
}

.process-step p {
  color: rgba(255, 255, 255, 0.76);
}

.rental-imports {
  background: #ffffff;
}

.rental-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid rgba(7, 20, 58, 0.12);
  box-shadow: 0 34px 90px rgba(7, 20, 58, 0.18);
}

.rental-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.1) 48%, transparent 55%);
  transform: translateX(-38%);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 2;
}

.rental-panel:hover::before {
  transform: translateX(38%);
}

.rental-copy {
  padding: clamp(34px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
}

.rental-copy h2 {
  color: #ffffff;
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 800;
  margin: 0 0 18px;
}

.rental-copy p {
  margin-bottom: 16px;
}

.rental-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.rental-panel:hover .rental-image img {
  transform: scale(1.035);
}

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

.mini-list div {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-list i {
  color: var(--orange-2);
  font-size: 19px;
}

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

.why-grid article {
  min-height: 254px;
  padding: 28px;
}

.why-intro {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 28px;
  align-items: center;
  margin: -14px auto 28px;
  max-width: 1040px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, rgba(7, 20, 58, 0.98), rgba(16, 29, 75, 0.94));
  border: 1px solid rgba(7, 20, 58, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 20, 58, 0.12);
}

.why-intro span {
  display: inline-block;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-intro h3 {
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  margin: 0;
}

.why-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.why-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 81, 30, 0.28);
  box-shadow: 0 30px 64px rgba(7, 20, 58, 0.12);
}

.coverage {
  padding: 52px 0;
  background:
    linear-gradient(90deg, var(--orange), var(--orange-2));
}

.coverage-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.coverage-content > div > span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.coverage h2 {
  color: #ffffff;
  font-size: clamp(27px, 4vw, 44px);
  font-weight: 800;
  margin: 8px 0 0;
  max-width: 860px;
}

.contact {
  background: #ffffff;
}

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

.contact-method {
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  color: var(--muted);
}

.contact-method:hover {
  color: var(--muted);
  border-color: rgba(244, 81, 30, 0.32);
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(7, 20, 58, 0.12);
}

.contact-method i {
  color: var(--orange);
  font-size: 28px;
}

.contact-method span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.location-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 28px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
}

.location-panel i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 8px;
  font-size: 26px;
}

.location-panel span,
.location-panel strong,
.location-panel p {
  display: block;
}

.location-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-panel strong {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 24px;
  margin: 2px 0;
}

.location-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #060e28;
  padding: 72px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 0.85fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3 {
  color: #ffffff;
}

.footer-logo-image {
  width: 170px;
  height: 74px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #ffffff;
  border-radius: 8px;
}

.footer p {
  margin: 20px 0 0;
  max-width: 420px;
}

.footer h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 9px;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.credits {
  text-align: right;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: 84px;
  z-index: 99999;
  background: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: all 0.3s;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(7, 20, 58, 0.2);
}

.scroll-top i {
  font-size: 28px;
  line-height: 0;
}

.scroll-top:hover {
  color: #ffffff;
  background: var(--orange);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 99998;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  font-size: 25px;
  box-shadow: 0 18px 34px rgba(31, 138, 91, 0.3);
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: #ffffff;
  background: #26a869;
  transform: translateY(-2px);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
}

#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  border: 5px solid rgba(7, 20, 58, 0.12);
  border-top-color: var(--orange);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: preloader-rotate 1s linear infinite;
}

@keyframes preloader-rotate {
  to {
    transform: rotate(360deg);
  }
}

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

  .hero-content > *,
  .js .section-title,
  .js .strip-grid,
  .js .service-card,
  .js .media-frame,
  .js .rental-panel,
  .js .why-intro,
  .js .coverage-content,
  .js .location-panel,
  .js .footer-top {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1199px) {
  .hero {
    min-height: 82vh;
    background:
      linear-gradient(90deg, rgba(7, 20, 58, 0.94) 0%, rgba(7, 20, 58, 0.8) 58%, rgba(7, 20, 58, 0.36) 100%),
      url("../img/ulink/hero-logistics.png") center right / cover no-repeat;
  }

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

  .strip-grid div {
    border-bottom: 1px solid var(--line);
  }

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

  .rental-panel,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .rental-copy {
    order: 2;
  }

  .rental-image {
    order: 1;
  }

  .rental-image img {
    min-height: 430px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 76px 0;
  }

  .service-strip {
    margin-top: 0;
    padding: 28px 0;
    background: #ffffff;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 70px;
  }

  .hero-proof,
  .about-service-list,
  .about-points,
  .mini-list,
  .why-intro {
    grid-template-columns: 1fr;
  }

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

  .credits {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .header .btn-getstarted {
    display: none;
  }

  .logo-image {
    width: 136px;
    height: 48px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 20, 58, 0.96), rgba(7, 20, 58, 0.78)),
      url("../img/ulink/hero-logistics.png") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-kicker {
    font-size: 27px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof,
  .strip-grid,
  .services-grid,
  .process-grid,
  .why-grid,
  .contact-grid,
  .rental-panel,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    justify-content: flex-start;
    text-align: left;
    border-right: 0;
  }

  .service-card,
  .why-grid article,
  .process-step {
    min-height: auto;
  }

  .rental-image img {
    min-height: 330px;
  }

  .location-panel {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 42px;
  }

  .section-title h2,
  .rental-copy h2 {
    font-size: 30px;
  }

  .contact-method strong {
    font-size: 18px;
  }
}
