/* ==========================================================
   L.O. Trading - Homepage styles
   Requires: Bootstrap 5.3, Tabler Icons, Plus Jakarta Sans
   Created by Domekoto
   ========================================================== */

:root {
  --lot-blue: #00478f;
  --lot-blue-dark: #0e2f70;
  --lot-lime: #b7d234;
  --lot-ink: #262a2d;
  --lot-navy-text: #1b2a44;
  --lot-gray: #5b6b84;
  --lot-surface: #eef1f5;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-variant-ligatures: none;
  font-variant-ligatures: no-common-ligatures;
  font-feature-settings: "liga" 0;
  background: #fff;
  color: var(--lot-ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--lot-blue); text-decoration: none; }
a:hover { color: var(--lot-blue-dark); }

.max-width-2000 {max-width: 2000px;}
.max-width-1800, .max-width-xxl {max-width: 1800px;}
.max-width-1600, .max-width-xl {max-width: 1600px;}
.max-width-1400, .max-width-l {max-width: 1400px;}
.max-width-1200, .max-width-m {max-width: 1200px;}
.max-width-1000, .max-width-s {max-width: 1000px;}
.max-width-800, .max-width-xs {max-width: 800px;}
.max-width-600, .max-width-xss {max-width: 600px;}
.max-width-500 {max-width: 500px;}
.max-width-400 {max-width: 400px;}

/* ---------- Top utility bar ---------- */
.lot-topbar {
  background: var(--lot-blue);
  color: #fff;
  height: 40px;
  font-size: 15px;
  z-index: 1040;
  position: relative;
}
.lot-topbar .ti { font-size: 20px; color: #fff; }

/* align topbar content with the logo inside the nav pill (28px pill padding) */
@media (min-width: 992px) {
  .lot-topbar__social { margin-left: 28px; }
  .lot-topbar__lang { margin-right: 28px; }
}

.lot-topbar a { color: #fff; display: inline-flex; }
.lot-social-icon {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.lot-topbar__social a:hover .lot-social-icon { transform: scale(1.12); }
.lot-topbar .lot-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.lot-topbar .lot-flag-link {
  position: relative;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.lot-topbar .lot-flag-link:hover { transform: scale(1.12); }
.lot-topbar .lot-search-link { transition: transform 0.15s ease; }
@media (hover: hover) {
  .lot-topbar .lot-search-link:hover { transform: scale(1.2); }
}
@media (prefers-reduced-motion: reduce) {
  .lot-topbar .lot-search-link { transition: none; }
}
.lot-topbar .lot-flag-link.active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

/* Language tooltip */
.lot-flag-link::after {
  content: attr(data-lang);
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  translate: -50% 0;
  background: #fff;
  color: var(--lot-navy-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(10, 30, 70, 0.3);
  white-space: nowrap;
}
.lot-flag-link::before {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  translate: -50% 0;
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: #fff;
}
.lot-flag-link::after,
.lot-flag-link::before {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px) scale(0.96);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
  z-index: 20;
}
.lot-flag-link:hover::after,
.lot-flag-link:hover::before,
.lot-flag-link:focus-visible::after,
.lot-flag-link:focus-visible::before {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* ---------- Floating nav ---------- */
.lot-nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 1030;
  max-width: 2000px;
  margin: 0 auto;
  margin-top: 14px;
  margin-bottom: -88px;
}
.lot-nav {
  background: #fff;
  height: 60px;
  border-radius: 999px;
  padding: 7px 7px 7px 28px;
  box-shadow: 0 12px 24px -8px rgba(10, 30, 70, 0.25);
  box-shadow: 0 3px 8px 1px rgba(10, 30, 70, 0.2);
  transition: background 0.25s ease;
}
.lot-nav-wrap.is-stuck .lot-nav {
  background: rgb(255 255 255 / 80%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.lot-nav-wrap.is-stuck .lot-nav:hover {
  background: #fff;
}
.lot-nav .lot-logo {
  height: 26px;
  width: auto;
  transform-origin: center;
  transition: transform 0.2s ease;
}
@media (hover: hover) {
  .lot-nav a:hover .lot-logo,
  .lot-nav a:focus-visible .lot-logo { transform: scale(1.02); }
}
.lot-nav nav { gap: 36px; font-size: 16px; font-weight: 600; }
.lot-nav nav a { color: var(--lot-navy-text); }
.lot-nav nav a:hover { color: var(--lot-blue); }

.btn-lot-primary {
  background: var(--lot-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 0;
}
.btn-lot-primary:hover { background: var(--lot-blue-dark); color: #fff; }

/* ---------- Button text-flip (Contact CTA) ---------- */
.btn-lot-primary .lot-flip {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: transparent;
  vertical-align: middle;
}
.btn-lot-primary .lot-flip::before,
.btn-lot-primary .lot-flip::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fff;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.btn-lot-primary .lot-flip::before { transform: translateY(0); opacity: 1; }
.btn-lot-primary .lot-flip::after { transform: translateY(110%); opacity: 0; }
@media (hover: hover) {
  .btn-lot-primary:hover .lot-flip::before { transform: translateY(-110%); opacity: 0; }
  .btn-lot-primary:hover .lot-flip::after { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-lot-primary .lot-flip::before,
  .btn-lot-primary .lot-flip::after { transition: none; }
}

/* ---------- Mega menus ---------- */
.lot-nav nav { align-self: stretch; }
.lot-nav-item {
  position: static;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.lot-nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.lot-nav-item > a .ti-chevron-down { font-size: 15px; transition: transform 0.18s ease; }
.lot-nav-item:hover > a .ti-chevron-down,
.lot-nav-item:focus-within > a .ti-chevron-down,
.lot-nav-item.is-open > a .ti-chevron-down { transform: rotate(180deg); }

.lot-mega {
  position: absolute;
  left: 48px;
  right: 48px;
  top: calc(100% - 8px);
  padding-top: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.lot-nav-item:hover .lot-mega,
.lot-nav-item:focus-within .lot-mega,
.lot-nav-item.is-open .lot-mega {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.lot-mega__panel {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 60px -18px rgba(10, 30, 70, 0.35);
  padding: 40px 44px 44px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}
.lot-mega__grid { display: grid; gap: 44px; }
.lot-mega__grid--company { grid-template-columns: 340px 1fr; }
.lot-mega__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
/* Each column is sized to its own content and capped at the same max-width, so
   the space you SEE between two columns is exactly the gap. Fixed-width tracks
   looked wrong here: the text only filled 154-238px of a 250px track, so the
   visible gaps came out at 73/136/52px even though the tracks were identical.
   The same uniform cap on all four is also what stops the long headings
   ("Operaciones Logisticas Internacionales" in ES, and the FR/PT equivalents)
   from running into the next column's icon - they wrap at the cap instead. */
.lot-mega__grid--services {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
}
.lot-mega__grid--services > div { flex: 0 1 auto; max-width: 240px; min-width: 0; }
.lot-mega__grid--bu { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lot-mega__grid--contact { grid-template-columns: 340px 1fr 340px; }
.lot-mega__cols--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}

.lot-mega .mega-heading {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--lot-blue);
  margin-bottom: 16px;
}
.lot-mega .mega-heading .ti {
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
}
.lot-mega__grid--services > div > ul { padding-left: 27px; }
.lot-mega a.mega-heading:hover { color: var(--lot-blue-dark); }
.lot-mega ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.lot-mega ul a { font-size: 15px; font-weight: 500; color: var(--lot-navy-text); }
.lot-mega ul a:hover { color: var(--lot-blue); }
.lot-mega ul a .hint { font-size: 12.5px; font-weight: 500; color: var(--lot-gray); }
.lot-mega li.child a {
  position: relative;
  padding-left: 18px;
  color: var(--lot-gray);
}
.lot-mega li.child a::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 8px;
  height: 1.5px;
  background: currentColor;
}
.lot-mega li.child a:hover { color: var(--lot-blue); }

.lot-mega__feature {
  display: flex;
  flex-direction: column;
  background: var(--lot-surface);
  border-radius: 16px;
  padding: 26px 26px 0;
  overflow: hidden;
}
.lot-mega__feature h3 { font-size: 24px; font-weight: 800; color: #16233b; margin: 0; }
.lot-mega__feature p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--lot-gray); }
.lot-mega__feature img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
  margin-top: auto;
  padding-top: 10px;
  padding-bottom: 15px;
  display: block;
  filter: brightness(0.5);
  transition: transform 0.45s ease;
}
@media (hover: hover) {
  .lot-mega__feature:hover img { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .lot-mega__feature img { transition: none; }
}

.lot-bu-card {
  display: block;
  background: var(--lot-surface);
  border-radius: 14px;
  padding: 22px 24px;
  transition: background 0.15s ease;
}
.lot-bu-card:hover { background: #e3e9f1; }
.lot-bu-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #16233b;
  margin: 0;
}
.lot-bu-card h3 .ti { font-size: 20px; color: #1553a5; }
.lot-bu-card .entity { margin: 10px 0 0; font-size: 14px; font-weight: 600; color: var(--lot-navy-text); }
.lot-bu-card .phone { margin: 4px 0 0; font-size: 14px; color: var(--lot-gray); }
.lot-bu-card .city {
  margin: 10px 0 0;
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--lot-gray);
}

.lot-mega__numbers {
  background: var(--lot-blue);
  border-radius: 16px;
  padding: 26px 28px;
  color: #fff;
  align-self: start;
}
.lot-mega__numbers h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 16px;
}
.lot-mega__numbers h3 .ti { font-size: 20px; color: var(--lot-lime); }
.lot-mega__numbers ul { gap: 10px; }
.lot-mega__numbers li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.lot-mega__numbers li b { color: #fff; font-weight: 700; }

.lot-nav-burger {
  border: 0;
  background: transparent;
  padding: 6px 8px;
  font-size: 26px;
  line-height: 1;
  color: var(--lot-navy-text);
  display: inline-flex;
  align-items: center;
}

/* ---------- Mobile menu (offcanvas) ---------- */
.lot-offcanvas {
  width: 320px;
  border-left: 0;
  box-shadow: -10px 0 30px rgba(10, 30, 70, 0.12);
}
.lot-offcanvas .offcanvas-header img { height: 24px; width: auto; }
.lot-offcanvas nav { display: flex; flex-direction: column; }
.lot-moblink { padding: 8px 0; font-size: 15px; font-weight: 500; color: var(--lot-navy-text); }
.lot-moblink:hover { color: var(--lot-blue); }
.lot-moblink--top {
  margin-top: 20px;
  padding-bottom: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--lot-blue);
  border-bottom: 1px solid var(--lot-surface);
}
.lot-offcanvas nav .lot-moblink--top:first-child { margin-top: 0; }
.lot-offcanvas__foot {
  border-top: 1px solid var(--lot-surface);
  margin-top: 20px;
  padding-top: 18px;
}
.lot-offcanvas .lot-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.lot-oflag { display: inline-flex; border-radius: 50%; }
.lot-oflag.active { box-shadow: 0 0 0 2px var(--lot-blue); }
.lot-offcanvas__search {
  display: inline-flex;
  font-size: 21px;
  color: var(--lot-navy-text);
}

/* ---------- Hero ---------- */
.lot-hero {
  position: relative;
  height: 820px;
  overflow: hidden;
  background-color: #0660af;
}
.lot-hero__img {
  position: absolute;
  inset: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.35s ease-out;
  will-change: transform;
}
.lot-hero__inner {
  position: relative;
  height: 100%;
}
.lot-hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(13, 38, 88, 0.72) 0%, rgba(13, 38, 88, 0.35) 55%, rgba(13, 38, 88, 0.15) 100%);
  background: linear-gradient(90deg, rgb(4 10 22 / 72%) 0%, rgba(13, 38, 88, 0.35) 55%, rgba(13, 38, 88, 0.15) 100%);
  background: linear-gradient(120deg, rgb(2 19 53 / 80%) 0%, rgb(2 18 51 / 46%) 55%, rgb(6 23 57 / 15%) 100%);
}
.lot-hero__content {
  position: absolute;
  left: 48px;
  top: 180px;
  max-width: 760px;
  color: #fff;
}
.lot-hero__content h1 {
  font-size: 72px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1px;
}
.lot-hero__content h1 strong { font-weight: 800; }
.lot-hero__content .lead-copy {
  font-size: 19px;
  line-height: 1.6;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.92);
}

.btn-lot-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
}
.btn-lot-outline-light:hover { background: #fff; border-color: #fff; color: #16233b; }

.btn-lot-lime {
  display: inline-flex;
  align-items: center;
  background: var(--lot-lime);
  color: #2e2e2e;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 999px;
}
.btn-lot-lime:hover { background: #a8c22b; color: #2e2e2e; }

.lot-hero__cards {
  position: absolute;
  right: 48px;
  bottom: 56px;
  gap: 20px;
}
.lot-hero-card {
  display: block;
  width: 340px;
  background: rgba(10, 18, 32, 0.62);
  background: rgb(33 38 47 / 56%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lot-hero-card:hover {
  transform: scale(1.05);
  background: rgba(10, 18, 32, 0.78);
  color: #fff;
}
.lot-hero-card h3 { font-size: 22px; font-weight: 700; margin: 0; }
.lot-hero-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Statement ---------- */
.lot-statement { padding: 75px 0; }
.lot-statement h2 {
  max-width: 760px;
  font-size: 35px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--lot-ink);
}
.lot-statement p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--lot-gray);
}

/* ---------- Services ---------- */
.lot-services {
  background: var(--lot-surface);
  padding: 80px 0 96px;
}
.lot-services h2 { font-size: 40px; font-weight: 700; color: var(--lot-ink); }
.lot-services .section-intro {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lot-gray);
}
.lot-services__grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 28px;
  margin-top: 44px;
}
.lot-service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(16, 35, 70, 0.06);
}
.lot-service-card > a {
  display: block;
  overflow: hidden;
}
.lot-service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  will-change: transform;
}
.lot-service-card:hover img,
.lot-service-card:focus-within img {
  transform: scale(1.06);
}
.lot-service-card .card-body { padding: 26px 28px 30px; }
.lot-service-card h3 { font-size: 23px; font-weight: 700; color: #16233b; margin: 0; }
.lot-service-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lot-gray);
}
.lot-service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  color: #1553a5;
}
.lot-service-card .learn-more .ti { transition: transform 0.25s ease; }
@media (hover: hover) {
  .lot-service-card .learn-more:hover .ti { transform: translateX(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .lot-service-card .learn-more .ti { transition: none; }
}

/* ---------- CTA band ---------- */
.lot-cta {
  position: relative;
  overflow: hidden;
  background: var(--lot-lime);
  padding: 140px 0;
}
.lot-cta__bg {
  position: absolute;
  left: 0;
  top: -80px;
  width: 100%;
  height: calc(100% + 160px);
  object-fit: cover;
  opacity: 0.10;
  pointer-events: none;
  will-change: transform;
}
.lot-cta > div { position: relative; z-index: 1; }
.lot-cta h2 {
  max-width: 640px;
  font-size: 44px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--lot-ink);
}
.lot-cta p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3a22;
}
.btn-lot-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #16233b;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
}
.btn-lot-white:hover { background: #f0f2ec; color: #16233b; }

/* ---------- Stats ---------- */
.lot-stats { padding: 64px 0; }
.lot-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.lot-stat-card {
  background: var(--lot-surface);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* grid items default to min-width:auto, so a wide value like "48,000 ft²"
     would push the card (and the whole grid) past the viewport instead of
     wrapping - this lets it shrink and wrap normally */
  min-width: 0;
  justify-content: space-between;
}
.lot-stat-card .ti { font-size: 34px; color: #1553a5; }
/* Icon roll on card hover (duplicate icon slides up) */
.lot-stat-card .stat-icon { display: block; height: 34px; overflow: hidden; }
.lot-stat-card .stat-roll { display: flex; flex-direction: column; transition: transform 0.5s ease; }
.lot-stat-card .stat-roll .ti { display: flex; align-items: center; height: 34px; }
@media (hover: hover) {
  .lot-stat-card:hover .stat-roll { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .lot-stat-card .stat-roll { transition: none; }
}
.lot-stat-card .stat-value { font-size: 32px; line-height: 1.2; font-weight: 800; color: #16233b; }
.lot-stat-card .stat-value--paired { font-size: clamp(24px, 1.55vw, 28px); }
.lot-stat-card .stat-line { display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.lot-stat-card .stat-location { font-size: .9rem; opacity: .8; }
.lot-stat-card .stat-label { font-size: 14px; color: var(--lot-gray); margin-top: 4px; }

/* ---------- Global presence ---------- */
.lot-global {
  background: var(--lot-blue);
  color: #fff;
  padding: 90px 0 0;
  padding-bottom: 20px;
}
.lot-global h2 { font-size: 42px; font-weight: 700; }
.lot-global .section-intro {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.lot-global__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.lot-office-card {
  display: block;
  border-radius: 14px;
  padding: 24px 22px;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
/* .is-hot is set from JS when the card's pin on the map below is hovered,
   so pointing at a pin lights up the matching office card and vice versa */
.lot-office-card:hover,
.lot-office-card.is-hot {
  background: var(--lot-lime);
  color: #16233b;
}
.lot-office-card .ti { font-size: 22px; }
.lot-office-card h3 { font-size: 19px; font-weight: 700; margin: 14px 0 0; }
.lot-office-card .entity { margin: 8px 0 0; font-size: 14px; line-height: 1.5; font-weight: 600; }
.lot-office-card .city {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  opacity: 0.75;
}

.lot-map {
  position: relative;
  width: 100%;
  /* matches map-dotted.png's native 2000x1000 ratio exactly, so the image
     fills this box edge-to-edge with no letterboxing — that's what lets the
     pins below use plain left/top percentages and stay accurate at any width */
  aspect-ratio: 2 / 1;
  margin-top: 20px;
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  /* whole map (pins included) zooms together, so pins stay aligned */
  .lot-map:hover { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .lot-map { transition: none; }
}
.lot-map::before {
  /* background image lives on its own layer so opacity fades just the map,
     not the pins sitting on top of it (opacity on .lot-map itself would
     fade its children too) — tweak here instead of re-exporting the PNG */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../cdn-assets/map-dotted.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.7;
}
.lot-map .lot-pin {
  position: absolute;
  z-index: 1;
  /* anchor the pin's tip (bottom-center of the glyph) to the exact
     left/top coordinate, instead of the icon's top-left corner */
  transform: translate(-50%, -100%);
  /* grow from the tip, so a scaled pin keeps pointing at the same spot */
  transform-origin: bottom center;
  transition: transform 0.2s ease, color 0.2s ease;
  font-size: 40px;
  color: var(--lot-lime);
  color: #f71d1a;
}
/* .is-hot is set from JS when this pin's office card above is hovered */
.lot-map .lot-pin:hover,
.lot-map .lot-pin.is-hot {
  transform: translate(-50%, -100%) scale(1.25);
  color: var(--lot-lime);
  /* color: white; */
  z-index: 2;
}

/* ---------- Certifications ---------- */
.lot-certs { padding: 96px 0; }
.lot-certs h2 { font-size: 40px; font-weight: 700; color: #16233b; }
.lot-certs__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 64px;
  margin-top: 56px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.lot-certs__grid img {
  width: 180px;
  height: 96px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .lot-certs__grid img:hover { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .lot-nav .lot-logo,
  .lot-footer__logo,
  .lot-certs__grid img { transition: none; }
}

/* ---------- Footer ---------- */
.lot-footer {
  background: var(--lot-blue);
  color: #fff;
  padding: 30px 0 32px;
  overflow: hidden;
}
.lot-footer__logo {
  width: 100%;
  /* height: 180px; */
  /* object-fit: contain; */
  display: block;
  transform-origin: center;
  transition: transform 0.25s ease;
}
@media (hover: hover) {
  .lot-footer__logo:hover { transform: scale(1.010); }
}
.lot-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lot-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 15px;
  font-weight: 600;
}
.lot-footer__nav a { color: #fff; }
.lot-footer__nav a.active { color: var(--lot-lime); }
.lot-footer__nav a:hover { color: var(--lot-lime); }
.lot-footer .to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.lot-footer .to-top:hover { color: #fff; }
.lot-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.lot-footer__credit img { width: 18px; height: 18px; object-fit: contain; }
.lot-footer__credit:hover { color: #fff; }
.lot-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 28px;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}
.lot-footer__legal a { color: #fff; }
.lot-footer__legal a:hover { color: var(--lot-lime); }

/* ---------- Interior pages: page hero ---------- */
.lot-page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.lot-page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lot-page-hero__inner {
  position: relative;
  height: 100%;
}
.lot-page-hero__scrim {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(13, 38, 88, 0.78) 0%, rgba(13, 38, 88, 0.42) 55%, rgba(13, 38, 88, 0.18) 100%); */
  background-color: #063674;
}
.lot-page-hero__scrim-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 38, 88, 0.78) 0%, rgba(13, 38, 88, 0.42) 55%, rgba(13, 38, 88, 0.18) 100%);
  /*
  background-color: #063674;
  */
}
.lot-page-hero__content {
  position: absolute;
  left: 48px;
  bottom: 56px;
  color: #fff;
}
.lot-page-hero__content .eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lot-lime);
}
.lot-page-hero__content .eyebrow a { color: inherit; }
.lot-page-hero__content .eyebrow a:hover { color: #fff; }
.lot-page-hero__content h1 {
  margin: 10px 0 0;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}
.lot-page-hero__content .lead-copy {
  margin: 16px 0 0;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Search page: hero search form ---------- */
.lot-search-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
}
.lot-search-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1.5px solid #e1e6ee;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  background: #fff;
  color: var(--lot-navy-text);
}
.lot-search-form input::placeholder { color: var(--lot-gray); }
.lot-search-form input:focus { outline: 2px solid var(--lot-lime); outline-offset: 2px; }
.lot-search-form button { border: 0; cursor: pointer; flex-shrink: 0; }
.lot-search-form button.btn-lot-lime { gap: 8px; }
.lot-search-form button.btn-lot-lime .ti { font-size: 18px; }

/* ---------- Interior pages: sidebar + main content ---------- */
.lot-contact-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  padding: 72px 0 96px;
  align-items: start;
}
.lot-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 104px;
}
.lot-sidebar__card {
  background: var(--lot-surface);
  border-radius: 16px;
  padding: 26px 24px;
}
.lot-sidebar__card h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lot-blue);
}
.lot-sidebar__card h3 a { color: inherit; }
.lot-sidebar__card h3 a:hover { color: var(--lot-blue-dark); }
.lot-sidebar__card nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
}
.lot-sidebar__card nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--lot-navy-text);
}
.lot-sidebar__card nav a.is-child { margin-left: 14px; padding-left: 18px; font-size: 14px; }
.lot-sidebar__card nav a:hover { background: rgba(0, 71, 143, 0.08); color: var(--lot-blue); }
.lot-sidebar__card nav a .ti { font-size: 16px; opacity: 0.6; }
.lot-sidebar__card nav a.active {
  background: var(--lot-blue);
  color: #fff;
}
.lot-sidebar__card--blue {
  background: var(--lot-blue);
  color: #fff;
}
.lot-sidebar__card--blue h3 { color: var(--lot-lime); }
.lot-sidebar__card--blue h3 a { color: inherit; }
.lot-sidebar__card--blue h3 a:hover { color: #fff; }
.lot-sidebar__card--blue p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.lot-sidebar__card--blue nav { gap: 8px; }
.lot-sidebar__card--blue nav a {
  display: inline-flex;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  color: #fff;
}
.lot-sidebar__card--blue nav a:hover { background: transparent; color: var(--lot-lime); }
.lot-sidebar__card--blue nav a .ti { color: var(--lot-lime); opacity: 1; }

/* ---------- Sitemap page ---------- */
.lot-sitemap-body { padding: 72px 0 96px; }
.lot-sitemap-row {
  display: grid;
  gap: 24px;
  align-items: start;
}
.lot-sitemap-row + .lot-sitemap-row { margin-top: 24px; }
.lot-sitemap-row--2 { grid-template-columns: repeat(2, 1fr); }
.lot-sitemap-row--3 { grid-template-columns: repeat(3, 1fr); }

.lot-contact-main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-width: 0;
}
.lot-contact-main h2 { font-size: 36px; font-weight: 700; color: var(--lot-ink); margin: 0; }
.lot-contact-main .section-intro {
  margin: 16px 0 0;
  /* max-width: 640px; */
  font-size: 16px;
  line-height: 1.65;
  color: var(--lot-gray);
}
.lot-h3 { font-size: 24px; font-weight: 700; color: var(--lot-ink); margin: 0 0 8px; }

/* ---------- Long-form legal copy (terms, privacy) ---------- */
.lot-legal { max-width: 1000px; }
.lot-legal p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #3c4a63;
}
.lot-legal .lot-h3 { margin: 40px 0 12px; }
.lot-legal .lot-h3:first-of-type { margin-top: 32px; }
/* on a page like privacy-policy.cfm the heading has no intro paragraph before
   it - it's the first thing in .lot-legal - so that top margin is just dead
   space above the title */
.lot-legal > .lot-h3:first-child { margin-top: 0; }
.lot-legal__sec {
  margin: 28px 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--lot-blue);
}
.lot-legal__source { font-size: 13.5px; color: var(--lot-gray); }
.lot-legal__rule { border: 0; border-top: 1px solid #e1e6ee; margin: 40px 0 28px; }
.lot-legal ul { margin: 0 0 14px; padding-left: 20px; }
.lot-legal ul li {
  margin-bottom: 6px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #3c4a63;
}
/* document reference code shown above the policy body */
.lot-legal__code {
  display: inline-block;
  background: var(--lot-surface);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--lot-blue);
}
.lot-legal__signers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lot-legal__signer {
  background: var(--lot-surface);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lot-gray);
}
.lot-legal__signer b { font-size: 15px; color: #16233b; }

/* ---------- Interior pages: shared extras ---------- */
/* offsets an in-page anchor target so the sticky pill nav (top:14px, 60px tall)
   doesn't land on top of it after a same-page jump link scrolls it into view */
.lot-scroll-offset { scroll-margin-top: 100px; }
.lot-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.lot-tags span, .lot-tags a { background: var(--lot-surface); color: var(--lot-blue); font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 999px; text-decoration: none; }
.lot-tags a:hover { background: var(--lot-blue); color: #fff; }
.lot-tags a:hover span { background: transparent; color: inherit; }
.lot-tags--sm { margin-top: 0; }
.lot-tags--sm span, .lot-tags--sm a { background: #fff; font-size: 13px; padding: 6px 14px; }
.btn-lot-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--lot-blue); color: var(--lot-blue);
  font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: 999px;
}
.btn-lot-outline-blue:hover { background: rgba(0,71,143,0.08); color: var(--lot-blue); }
.lot-card-icon { font-size: 28px; color: var(--lot-blue); }
.lot-card-body { margin: 10px 0 0; font-size: 15px; line-height: 1.65; color: var(--lot-gray); }
.lot-note { margin: 0 0 24px; font-size: 15px; color: var(--lot-gray); }
.lot-fact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 0;
  background: var(--lot-surface);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--lot-navy-text);
}
.lot-fact-address .ti { font-size: 20px; color: var(--lot-blue); margin-top: 2px; flex-shrink: 0; }
.lot-fact-address > span { flex: 1 1 auto; min-width: 0; }
.lot-units-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lot-unit-card { border: 1px solid #e1e6ee; border-radius: 16px; padding: 28px; min-width: 0; }
.lot-unit-card h4 { margin: 14px 0 0; font-size: 19px; font-weight: 700; color: #16233b; }
.lot-unit-card--photo { display: flex; gap: 20px; align-items: flex-start; }
.lot-unit-card--photo > img { width: 160px; height: 160px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.lot-unit-card--photo > div { min-width: 0; }
a.lot-unit-card { display: flex; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
a.lot-unit-card:hover { border-color: var(--lot-blue); box-shadow: 0 8px 20px -8px rgba(10, 30, 70, 0.25); }
a.lot-unit-card:hover .learn-more { color: var(--lot-blue-dark); }
.lot-fineprint { margin: 28px 0 0; font-size: 13.5px; color: #8a96a8; }

/* ---------- Company page ---------- */
/* Company page intro: copy on the left, logo pinned top right. The basis lets
   the logo drop below the copy on narrow screens instead of being squeezed. */
.lot-company-intro { flex: 1 1 340px; }
.lot-company-logo { width: 400px; max-width: 100%; height: auto; flex-shrink: 0; }

.lot-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; }
.lot-split__img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; border-radius: 16px; }
.lot-split__facts { display: flex; flex-direction: column; gap: 16px; }
.lot-fact { background: var(--lot-surface); border-radius: 14px; padding: 24px; display: flex; gap: 18px; flex: 1; align-items: flex-start; }
.lot-fact .ti { font-size: 30px; color: var(--lot-blue); }
.lot-fact h4 { margin: 0; font-size: 17px; font-weight: 700; color: #16233b; }
.lot-fact p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--lot-gray); }
.lot-phones {
  background: var(--lot-blue);
  border-radius: 20px;
  padding: 44px 40px;
  color: #fff;
}
.lot-phones h3 { margin: 0; font-size: 24px; font-weight: 700; }
.lot-phones > p {
  margin: 10px 0 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.lot-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.lot-value { background: rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.lot-value .ti { font-size: 20px; color: var(--lot-lime); margin-top: 2px; }
.lot-value span { font-size: 14.5px; line-height: 1.6; }

.lot-statement--gray { background: var(--lot-surface); }

/* ---------- Contact page ---------- */
.lot-dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lot-dept-card {
  background: var(--lot-surface);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #16233b;
}
.lot-dept-card:hover { background: #e3e9f1; color: #16233b; }
.lot-dept-card > .ti { font-size: 30px; color: var(--lot-blue); }
.lot-dept-card .label { font-size: 17px; font-weight: 700; }
.lot-dept-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1553a5;
}
.lot-dept-card .cta .ti { font-size: 15px; }

.lot-phones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.lot-phones__grid--dense { grid-template-columns: repeat(4, 1fr); }
.lot-phones__grid--colombia .number { white-space: nowrap; }
.lot-phone-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  /* a number like "+49 (0) 6074 485250" is wider than a narrow dense-grid
     column, so let the card shrink and the number wrap instead of overflowing */
  min-width: 0;
}
.lot-phone-card > .ti { font-size: 22px; color: var(--lot-lime); flex-shrink: 0; }
/* the text column is a flex item too - without this the number can't shrink
   and spills outside the card's rounded background on narrow screens */
.lot-phone-card > div { min-width: 0; }
.lot-phone-card .country {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.lot-phone-card .number { font-size: 16px; font-weight: 700; margin-top: 2px; }

.lot-unit-card .region {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lot-blue);
}
.lot-unit-card .region .ti { font-size: 20px; }
.lot-unit-card .city { margin: 6px 0 0; font-size: 14px; color: var(--lot-gray); }
.lot-unit-card .details {
  border-top: 1px solid #e1e6ee;
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #3c4a63;
}
.lot-unit-card .details > div { display: flex; gap: 10px; min-width: 0; }
.lot-unit-card .details > div > span { min-width: 0; overflow-wrap: break-word; }
.lot-unit-card .details .ti { font-size: 17px; color: var(--lot-blue); margin-top: 2px; }
.lot-unit-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #1553a5;
}
.lot-unit-card .learn-more .ti { font-size: 15px; }

/* ---------- Department contact pages: team ---------- */
.lot-phone-big { font-size: 19px; font-weight: 800; margin: 0; }
.btn-sm-pill { font-size: 14px !important; padding: 11px 22px !important; height: auto !important; gap: 8px; }
.lot-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lot-team-card { background: var(--lot-surface); border-radius: 16px; padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; min-width: 0; }
.lot-team-card > img { width:100px; height:100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; transition: transform 0.3s ease; }
@media (hover: hover) {
  .lot-team-card:hover > img { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .lot-team-card > img { transition: none; }
}
/* the info column is a flex item too, so without min-width:0 it won't shrink
   below its content's natural width - a long email address would then push
   the card (and the grid) wider than the viewport instead of wrapping */
.lot-team-card > div { min-width: 0; }
.lot-team-card h4 { margin: 0; font-size: 17px; font-weight: 700; color: #16233b; }
.lot-team-card .role { margin: 3px 0 0; font-size: 13.5px; font-weight: 600; color: var(--lot-blue); }
.lot-team-card .meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; margin-top: 10px; font-size: 13.5px; color: #3c4a63; max-width: 100%; }
.lot-team-card .meta span, .lot-team-card .meta a { display: inline-flex; align-items: center; gap: 7px; max-width: 100%; }
.lot-team-card .meta .ti { font-size: 16px; color: var(--lot-blue); }
.lot-team-card .meta a { color: #1553a5; font-weight: 600; overflow-wrap: anywhere; }
.lot-team-card .langs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.lot-team-card .langs span { background: #fff; color: var(--lot-gray); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }

/* ---------- Licensing and insurance page ---------- */
.lot-license { display: grid; grid-template-columns: 280px 1fr; gap: 28px; border: 1px solid #e1e6ee; border-radius: 16px; padding: 28px; align-items: center; }
.lot-license > img { width: 100%; max-width:280px; object-fit: contain; }
.lot-license h3 { margin: 0; font-size: 19px; font-weight: 700; color: #16233b; }
.lot-license .cred { margin: 6px 0 0; font-size: 13.5px; font-weight: 700; color: var(--lot-blue); }
.lot-license .body { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--lot-gray); }
.lot-license a { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: #1553a5; }
.lot-insured { background: var(--lot-blue); border-radius: 20px; padding: 40px; color: #fff; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.lot-insured:hover { color: #fff; }
.lot-insured > .ti { font-size: 44px; color: var(--lot-lime); }
.lot-insured h3 { margin: 0; font-size: 22px; font-weight: 700; }
.lot-insured:hover h3 { color: #fff; }
.lot-insured p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: rgba(255, 255, 255, 0.85); }
.lot-insured:hover .lot-insured__cta strong { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Business unit pages: photo + directions ---------- */
.lot-photo { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; display: block; }
/* stretches to match a taller sibling column instead of the fixed 380px,
   so a short image caption/column doesn't leave a mismatched gap beside it */
.lot-photo--fill { height: 100%; min-height: 320px; }
.lot-photo--ratio { height: auto; min-height: 0; aspect-ratio: 4/3; align-self: start; }
/* Swiper image slider replacing a single .lot-photo--fill image - the slider
   itself takes over the sizing/rounding job .lot-photo--fill normally does,
   so it needs the same "stretch to match the taller text column" behavior */
.lot-photo-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
}
.lot-photo-slider .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lot-photo-slider .swiper-pagination-bullet { background: #fff; opacity: 0.6; }
.lot-photo-slider .swiper-pagination-bullet-active { opacity: 1; background: #333; }
/* opts out of the "stretch to match the taller text column" behavior above -
   some columns are tall enough that stretching pushes the slider into a
   portrait-ish shape; this locks it to a landscape ratio instead */
.lot-photo-slider--ratio { height: auto; min-height: 0; aspect-ratio: 4/3; align-self: start; }

.lot-directions { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.lot-directions > img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: 16px; }
/* maps must never be cropped. Sized to its own natural aspect ratio (not
   stretched to match the taller directions panel) so the visible image
   content — not empty letterbox space — fills the rounded box on all sides */
.lot-directions > img.lot-directions__map { height: auto; min-height: 0; align-self: start; object-fit: contain; }
.lot-directions__panel { background: var(--lot-surface); border-radius: 16px; padding: 32px; }
.lot-directions__panel .fromto { display: flex; flex-direction: column; gap: 6px; padding-bottom: 20px; border-bottom: 1px solid #dde3ec; }
.lot-directions__panel .k { font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lot-blue); }
.lot-directions__panel .v { font-size: 16px; font-weight: 700; color: #16233b; }
.lot-directions__panel .k + .v + .k { margin-top: 10px; }
.lot-directions__panel ol { margin: 20px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; line-height: 1.55; color: #3c4a63; }
.lot-directions__panel .eta { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid #dde3ec; font-size: 14.5px; font-weight: 700; color: var(--lot-blue); }

/* ---------- Services page ---------- */
.lot-dep-row { display: grid; grid-template-columns: 380px 1fr; background: var(--lot-surface); border-radius: 16px; overflow: hidden; }
/* the second selector keeps the sizing when the image is wrapped in a link -
   the <a> is a grid item, so it stretches to the row and gives img its height */
.lot-dep-row > img,
.lot-dep-row > a > img { display: block; width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.lot-dep-row__body { padding: 32px 36px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.lot-dep-row__body .ti { font-size: 28px; color: var(--lot-blue); }
.lot-dep-row__body .btn-lot-primary .ti { font-size: 20px; color: white; margin-right: -2px; }
.lot-dep-row__body h3 { margin: 0; font-size: 24px; font-weight: 700; color: #16233b; }
.lot-dep-row__body p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--lot-gray); }

/* ---------- Department detail pages: why-choose list + category grid ---------- */
.lot-why-list { display: flex; flex-direction: column; gap: 12px; }
.lot-why-item {
  background: var(--lot-surface);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--lot-navy-text);
}
.lot-why-item .ti { font-size: 20px; color: var(--lot-blue); flex-shrink: 0; }

.lot-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lot-category-tile {
  background: var(--lot-surface);
  border: 0;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #16233b;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lot-category-tile:hover { background: #e3e9f1; color: #16233b; }
.lot-category-tile .ti-chevron-down {
  margin-left: auto;
  font-size: 18px;
  transition: transform 0.25s ease;
}
.lot-category-tile > .d-flex { width: 100%; align-items: center; }
.lot-category-tile .ti:first-child { font-size: 32px; color: var(--lot-blue); }
.lot-category-tile span { font-size: 15.5px; font-weight: 700; line-height: 1.35; }

/* active / open state - distinct fill + icon color + chevron flip */
.lot-category-tile.is-active {
  background: var(--lot-blue);
  color: #fff;
}
.lot-category-tile.is-active .ti:first-child { color: var(--lot-lime); }
.lot-category-tile.is-active .ti-chevron-down { transform: rotate(180deg); color: var(--lot-lime); }

/* expandable detail row - spans the full grid width so it drops in right
   below the row of tiles it belongs to, pushing later rows down */
.lot-category-panel {
  display: none; /* fully removed from grid flow while closed - an open-but-empty
                    grid-column:1/-1 row would still add a gap on either side */
  grid-column: 1 / -1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}
.lot-category-panel.is-open {
  opacity: 1;
  margin: 4px 0 2px;
}
.lot-category-panel__inner {
  background: #fff;
  border: 1px solid #e1e6ee;
  border-radius: 16px;
  padding: 32px 36px;
}
.lot-category-panel__heading {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--lot-blue);
}
.lot-category-panel__rule { width: 40px; height: 3px; background: var(--lot-lime); border-radius: 2px; margin: 0 0 22px; }
.lot-category-panel__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 28px;
}
.lot-category-panel__check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--lot-navy-text); }
.lot-category-panel__check-item .ti { font-size: 17px; color: var(--lot-lime); margin-top: 2px; flex-shrink: 0; }
.lot-category-panel__brands { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 22px; border-top: 1px solid #eef1f5; }
.lot-brand-chip {
  border: 1px solid #e1e6ee;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lot-navy-text);
  background: #fff;
}
/* logo variant of the brand row - the logos range from 4:1 wordmarks to
   near-square badges, so each gets an identical fixed-size box and is centered
   inside it, which keeps the grid even regardless of aspect ratio */
.lot-category-panel__brands--logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 12px;
}
.lot-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 12px 16px;
  border: 1px solid #e1e6ee;
  border-radius: 10px;
  background: #fff;
}
/* the box height is fixed, so a late-loading logo can't reflow the panel and
   invalidate the scrollHeight the open/close animation measures */
.lot-brand-logo img { max-width: 100%; max-height: 46px; width: auto; height: auto; object-fit: contain; }
.lot-brand-logo--text { font-size: 14px; font-weight: 700; text-align: center; line-height: 1.3; color: var(--lot-navy-text); }
@media (max-width: 575.98px) {
  .lot-category-panel__brands--logos { grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)); gap: 10px; }
  .lot-brand-logo { height: 64px; padding: 10px 12px; }
  .lot-brand-logo img { max-height: 36px; }
}

.lot-category-panel__note { font-size: 14px; color: var(--lot-gray); padding-top: 22px; border-top: 1px solid #eef1f5; }
.lot-category-panel__body { font-size: 15.5px; line-height: 1.65; color: var(--lot-gray); max-width: 720px; }

/* ---------- 404 page ---------- */
.lot-404 {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.lot-404__code {
  margin: 0;
  font-size: clamp(96px, 14vw, 168px);
  font-weight: 800;
  line-height: 1;
  color: var(--lot-blue);
  letter-spacing: -4px;
}
.lot-404__code strong { color: var(--lot-lime); }
.lot-404__title { margin: 8px 0 0; font-size: 28px; font-weight: 700; color: var(--lot-ink); }
.lot-404__body { margin: 14px auto 0; max-width: 480px; font-size: 16px; line-height: 1.6; color: var(--lot-gray); }
.lot-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.lot-404__links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 1599.98px) {
  /* 6 narrow columns wrap longer values/labels (e.g. "48,000 ft²") well before
     the existing 1199.98px breakpoint reflows the grid — drop to 3 sooner */
  .lot-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .lot-stat-card { padding-inline: 20px; }
}

@media (max-width: 1399.98px) {
  .lot-nav nav { gap: 26px; }
  .lot-mega__grid { gap: 32px; }
  .lot-mega__cols { gap: 32px; }
  .lot-mega__grid--company { grid-template-columns: 280px 1fr; }
  .lot-mega__grid--contact { grid-template-columns: 280px 1fr 300px; }
  .lot-split { grid-template-columns: 1fr; }
  .lot-split__img { height: auto; min-height: 0; aspect-ratio: 16/9; }
  .lot-contact-body--card-grid .lot-units-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1499.98px) {
  .lot-phones__grid--dense.lot-phones__grid--colombia { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1199.98px) {
  .lot-hero__content h1 { font-size: 56px; }
  .lot-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .lot-global__grid { grid-template-columns: repeat(3, 1fr); }
  .lot-nav nav { gap: 20px; font-size: 15px; }
  .lot-mega__panel { padding: 32px 34px 36px; }
  .lot-mega__feature { display: none; }
  .lot-mega__grid--company { grid-template-columns: 1fr; }
  .lot-mega__grid--contact { grid-template-columns: 1fr 300px; }
  .lot-mega__grid--bu { grid-template-columns: repeat(2, 1fr); }
  .lot-dept-grid, .lot-phones__grid { grid-template-columns: repeat(2, 1fr); }
  .lot-phones__grid--dense { grid-template-columns: repeat(3, 1fr); }
  .lot-category-grid { grid-template-columns: repeat(2, 1fr); }
  .lot-sitemap-row--3 { grid-template-columns: repeat(2, 1fr); }
  .lot-legal__signers { grid-template-columns: repeat(2, 1fr); }
  .lot-license { grid-template-columns: 1fr; }
  .lot-license > img { justify-self: center; }
  .lot-contact-body--detail .lot-contact-main > .row.g-4 > [class*="col-lg-"] { width: 100%; }
  .lot-mega__grid--services { gap: 24px; }
  /* Card-heavy overview pages need the full content width before the general
     tablet breakpoint; otherwise their fixed media columns overflow. */
  .lot-contact-body--card-grid { grid-template-columns: 1fr; }
  .lot-contact-body--card-grid > .lot-sidebar { position: static; order: 2; }
  .lot-contact-body--card-grid > .lot-contact-main { order: 1; }
}

@media (max-width: 991.98px) {
  .lot-nav nav { display: none !important; }
  .lot-mega { display: none; }
  .lot-hero { height: auto; min-height: 720px; }
  .lot-hero__content { position: relative; left: 0; top: 0; padding: 160px 24px 40px; }
  .lot-hero__cards {
    position: relative;
    right: 0;
    bottom: 0;
    padding: 0 24px 40px;
    flex-wrap: wrap;
  }
  .lot-services__grid { grid-template-columns: 1fr; }
  .lot-page-hero { height: auto; min-height: 320px; }
  .lot-page-hero__content { position: relative; left: 0; bottom: 0; padding: 120px 24px 32px; }
  .lot-contact-body { grid-template-columns: 1fr; }
  /* sidebar goes below the main content on mobile, matching the original site */
  .lot-sidebar { position: static; order: 2; }
  .lot-contact-main { order: 1; }
  .lot-units-grid { grid-template-columns: 1fr; }
  .lot-split { grid-template-columns: 1fr; }
  .lot-values-grid { grid-template-columns: 1fr; }
  .lot-team-grid { grid-template-columns: 1fr; }
  .lot-license { grid-template-columns: 1fr; }
  .lot-directions { grid-template-columns: 1fr; }
  .lot-dep-row { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .lot-hero__content h1 { font-size: 40px; }
  .lot-page-hero__content h1 { font-size: 40px; }
  .lot-hero__actions { flex-direction: column; align-items: stretch; }
  .lot-hero__actions .btn-lot-outline-light,
  .lot-hero__actions .btn-lot-lime { justify-content: center; }
  /* stacked so neither button has to shrink below its text's natural width -
     side by side on a narrow screen was forcing the label onto two lines */
  .lot-actions { flex-direction: column; align-items: stretch; }
  .lot-actions .btn-lot-primary,
  .lot-actions .btn-lot-outline-blue { justify-content: center; }
  /* side by side, the fixed 160px photo left only ~90px for the text column -
     stack instead so name/city/phone/link have the full card width to wrap in */
  .lot-unit-card--photo { flex-direction: column; }
  .lot-unit-card--photo > img { width: 100%; height: 180px; }
  /* photo on top so the info column gets the full card width by default -
     overflow-wrap on the email is just the failover if a card is ever this
     narrow some other way, not the primary fix */
  .lot-team-card { flex-direction: column; align-items: flex-start; }
  .lot-footer__bar { flex-direction: column; align-items: stretch; gap: 0; }
  .lot-footer__nav { flex-direction: column; gap: 0; }
  .lot-footer__nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .lot-footer .to-top { padding-top: 16px; align-self: flex-end; }
  .lot-footer__logo { height: auto; }
  .lot-cta h2 { font-size: 26px; }
  .lot-statement { padding: 30px 0; }
  .lot-statement h2 { font-size: 19px; font-weight: 600; }
  .lot-services h2, .lot-certs h2, .lot-global h2 { font-size: 30px; }
  .lot-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lot-global__grid { grid-template-columns: 1fr; }
  .lot-hero-card { width: 100%; }
  .lot-certs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
    justify-items: center;
  }
  .lot-certs__grid img { width: 100%; max-width: 150px; height: 90px; object-fit: contain; }
  .lot-dept-grid, .lot-phones__grid { grid-template-columns: 1fr; }
  .lot-phones__grid--dense { grid-template-columns: repeat(2, 1fr); }
  .lot-category-grid { grid-template-columns: 1fr; }
  .lot-sitemap-row--2, .lot-sitemap-row--3 { grid-template-columns: 1fr; }
  .lot-legal__signers { grid-template-columns: 1fr; }
  .lot-category-panel__checklist { grid-template-columns: 1fr; }
  .lot-404 { padding: 150px 24px 80px; }
  .lot-404__actions { gap: 16px 12px; }
  .lot-404__links { gap: 16px 10px; }
  /* search field + button stack in two rows so the placeholder stays readable */
  .lot-search-form { flex-direction: column; align-items: stretch; }
  .lot-search-form button { justify-content: center; }
  /* the map is only ~half its desktop width here, so the pins need to scale
     with it - at 40px they read as oversized blobs covering whole regions */
  .lot-map .lot-pin { font-size: 20px; }
}

@media (max-width: 575.98px) {
  /* one column keeps number/location stat pairs together down to 320px */
  .lot-stats__grid { grid-template-columns: 1fr; }
  .lot-stat-card { padding: 22px 18px 20px; gap: 18px; }
  .lot-stat-card .ti { font-size: 28px; }
  .lot-stat-card .stat-icon,
  .lot-stat-card .stat-roll .ti { height: 28px; }
  .lot-stat-card .stat-value { font-size: 24px; }
  .lot-stat-card .stat-value--paired { font-size: 24px; }
  .lot-stat-card .stat-label { font-size: 13px; }
  /* two dense columns leave ~90px for the number, forcing it to wrap
     mid-number - full width keeps each one on a single line */
  .lot-phones__grid--dense { grid-template-columns: 1fr; }
  .lot-phones__grid--colombia .number { white-space: normal; }
}

@media (max-width: 599.98px) {
  .lot-phones__grid--dense.lot-phones__grid--colombia { grid-template-columns: 1fr; }
  .lot-phones__grid--colombia .number { white-space: normal; }
}

@media (max-width: 390px) {
  .lot-nav .lot-logo { height: 24px; }
}

@media (max-width: 360px) {
  .lot-nav .lot-logo { height: 22px; }
  .lot-topbar__social { display: none !important; }
}

@media (max-width: 340px) {
  .lot-nav .lot-logo { height: 21px; }
}

@media (max-width: 320px) {
  .lot-nav .lot-logo { height: 18px; }
}
