/* ==========================================================
   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-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);
}
.lot-nav .lot-logo { height: 26px; width: auto; }
.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; }

/* ---------- 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;
}
.lot-mega__grid--services {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.lot-mega__grid--bu { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lot-mega__grid--contact { grid-template-columns: 1fr 340px; }
.lot-mega__cols--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}

.lot-mega .mega-heading {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--lot-blue);
  margin-bottom: 16px;
}
.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);
}

.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; }
.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;
}
.lot-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lot-hero__inner {
  position: relative;
  height: 100%;
}
.lot-hero__scrim {
  position: absolute;
  inset: 0;
  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%);
}
.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: 95px 0; }
.lot-statement h2 {
  max-width: 760px;
  font-size: 40px;
  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 img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.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;
}

/* ---------- CTA band ---------- */
.lot-cta {
  background: var(--lot-lime);
  padding: 110px 0;
}
.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: 28px;
}
.lot-stat-card .ti { font-size: 34px; color: #1553a5; }
.lot-stat-card .stat-value { font-size: 32px; font-weight: 800; color: #16233b; }
.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;
}
.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 {
  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;
}
.lot-office-card:hover {
  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;
  height: 560px;
  margin-top: 40px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 50% 45%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 90% at 50% 45%, #000 55%, transparent 100%);
}
.lot-map .lot-pin {
  position: absolute;
  font-size: 40px;
  color: var(--lot-lime);
}

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

/* ---------- 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;
}
.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__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__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 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: 520px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- 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 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: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 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; }

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

/* ---------- 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 { background: var(--lot-surface); color: var(--lot-blue); font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 999px; }
.lot-tags--sm { margin-top: 0; }
.lot-tags--sm span { 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-units-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lot-unit-card { border: 1px solid #e1e6ee; border-radius: 16px; padding: 28px; }
.lot-unit-card h4 { margin: 14px 0 0; font-size: 19px; font-weight: 700; color: #16233b; }
.lot-fineprint { margin: 28px 0 0; font-size: 13.5px; color: #8a96a8; }

/* ---------- Company page ---------- */
.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-phone-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lot-phone-card > .ti { font-size: 22px; color: var(--lot-lime); }
.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; }
.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; }
.lot-team-card > img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 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; }
.lot-team-card .meta span, .lot-team-card .meta a { display: inline-flex; align-items: center; gap: 7px; }
.lot-team-card .meta .ti { font-size: 16px; color: var(--lot-blue); }
.lot-team-card .meta a { color: #1553a5; font-weight: 600; }
.lot-team-card .langs { display: flex; 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; }

/* ---------- Licensing and insurance page ---------- */
.lot-license { display: grid; grid-template-columns: 180px 1fr; gap: 28px; border: 1px solid #e1e6ee; border-radius: 16px; padding: 28px; align-items: center; }
.lot-license > img { width: 180px; height: 96px; 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 > .ti { font-size: 44px; color: var(--lot-lime); }
.lot-insured h3 { margin: 0; font-size: 22px; font-weight: 700; }
.lot-insured p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: rgba(255, 255, 255, 0.85); }

/* ---------- Business unit pages: photo + directions ---------- */
.lot-photo { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; display: block; }
.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; }
.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; }
.lot-dep-row > img { 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;
}
.lot-category-panel__note { font-size: 14px; color: var(--lot-gray); padding-top: 22px; border-top: 1px solid #eef1f5; }

/* ---------- 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: 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: 1fr 300px; }
}

@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--bu { grid-template-columns: repeat(2, 1fr); }
  .lot-dept-grid, .lot-phones__grid { grid-template-columns: repeat(2, 1fr); }
  .lot-category-grid { grid-template-columns: repeat(2, 1fr); }
}

@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; }
  .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-category-grid { grid-template-columns: 1fr; }
  .lot-category-panel__checklist { grid-template-columns: 1fr; }
  .lot-404 { padding: 80px 24px; }
  .lot-404__actions { gap: 16px 12px; }
  .lot-404__links { gap: 16px 10px; }
}
