.elementor-1526 .elementor-element.elementor-element-2b00954a2{margin-top:0px;margin-bottom:50px;z-index:0;}.elementor-1526 .elementor-element.elementor-element-40ec33d{margin-top:0px;margin-bottom:50px;z-index:0;}/* Start custom CSS for html, class: .elementor-element-0fde334 */:root {
    --log-primary: #F35A33;
    --log-primary-dark: #d84622;
    --log-primary-light: #fff0eb;
    --log-primary-soft: #ffd8cd;
    --log-white: #ffffff;
    --log-dark: #171717;
    --log-text: #656565;
    --log-border: #e6e6e6;
    --log-bg: #f8f8f8;
}

* {
    box-sizing: border-box;
}

.logistics-page,
.logistics-page input,
.logistics-page button {
    font-family: Arial, Helvetica, sans-serif;
}

.logistics-page a {
    text-decoration: none;
}

.logistics-container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}


/* HERO */

.logistics-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;

    background-image: url("https://trackmybl.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-26-2026-10_51_16-PM.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logistics-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 14, 22, 0.88) 0%,
            rgba(8, 14, 22, 0.63) 42%,
            rgba(8, 14, 22, 0.12) 72%,
            rgba(8, 14, 22, 0.28) 100%
        );
}

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

    padding: 70px 0 10px;

    display: grid;
    grid-template-columns: 1fr 500px;
    align-items: center;
    gap: 70px;
}

.logistics-hero-content {
    max-width: 620px;
    color: var(--log-white);
}

.logistics-hero-content h1 {
    margin: 0 0 22px;

    font-size: clamp(42px, 4.3vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.logistics-hero-content h1 span {
    display: block;
    color: var(--log-primary-soft);
}

.logistics-hero-content p {
    max-width: 560px;
    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.65;
}

.logistics-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.logistics-btn {
    min-height: 54px;
    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

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

.logistics-btn-primary {
    color: var(--log-white);
    background: var(--log-primary);
}

.logistics-btn-primary:hover {
    color: var(--log-white);
    background: var(--log-primary-dark);
}

.logistics-btn-outline {
    color: var(--log-white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

.logistics-btn-outline:hover {
    color: var(--log-primary);
    background: var(--log-white);
}

.logistics-play-icon {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border: 1px solid currentColor;
    border-radius: 50%;
}

.logistics-play-icon svg {
    width: 14px;
    fill: currentColor;
}


/* TRACKING */

.logistics-tracking-box {
    padding: 28px;

    color: var(--log-white);
    background: rgba(17, 20, 26, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;

    backdrop-filter: blur(10px);
}

.logistics-tracking-box h2 {
    margin: 0 0 18px;
    font-size: 25px;
}

.logistics-tracking-form {
    display: flex;
    overflow: hidden;
    border-radius: 7px;
}

.logistics-tracking-form input {
    width: 100%;
    min-width: 0;
    height: 58px;
    padding: 0 20px;

    border: 0;
    outline: none;
}

.logistics-tracking-form button {
    min-width: 130px;
    padding: 0 20px;

    color: var(--log-white);
    background: var(--log-primary);

    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.logistics-tracking-form button:hover {
    background: var(--log-primary-dark);
}


/* QUICK POP-UP CARDS */

.logistics-quick-section {
    position: relative;
    z-index: 5;
    height: 0;
}

.logistics-quick-links {
    position: relative;
    top: -58px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: var(--log-white);
    border: 1px solid var(--log-border);
    border-radius: 18px;

    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.logistics-quick-card {
    position: relative;
    min-height: 125px;
    padding: 25px 27px;

    display: grid;
    grid-template-columns: 60px 1fr 32px;
    align-items: center;
    gap: 17px;

    color: var(--log-dark);
    background: var(--log-white);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.logistics-quick-card:first-child {
    border-radius: 18px 0 0 18px;
}

.logistics-quick-card:last-child {
    border-radius: 0 18px 18px 0;
}

.logistics-quick-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    bottom: 24px;
    width: 1px;
    background: var(--log-border);
}

.logistics-quick-card:hover {
    z-index: 2;
    color: var(--log-dark);
    background: var(--log-primary-light);
    transform: translateY(-10px);
}

.logistics-quick-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    color: var(--log-primary);
    background: var(--log-primary-light);

    border: 1px solid var(--log-primary-soft);
    border-radius: 13px;
}

.logistics-quick-icon svg {
    width: 38px;
    height: 38px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logistics-quick-text strong {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
}

.logistics-quick-text small {
    display: block;
    color: var(--log-text);
    font-size: 13px;
    line-height: 1.5;
}

.logistics-card-arrow {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    color: var(--log-dark);
    border-radius: 50%;
}

.logistics-card-arrow svg {
    width: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logistics-quick-card:hover .logistics-card-arrow {
    color: var(--log-white);
    background: var(--log-primary);
}


/* TARIFF SECTION */

.logistics-tariff-section {
    padding: 120px 0 25px;
    background: var(--log-bg);
}

.logistics-tariff-box {
    position: relative;
    min-height: 230px;
    padding: 23px 300px 23px 23px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 38px;

    color: var(--log-white);

    background:
        linear-gradient(
            120deg,
            var(--log-primary-dark),
            var(--log-primary) 70%,
            #fb8568
        );

    border-radius: 18px;
}

.logistics-tariff-image {
    position: relative;
    z-index: 2;
    height: 185px;
    overflow: hidden;

    border-radius: 15px;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.logistics-tariff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logistics-tariff-content {
    position: relative;
    z-index: 2;
}

.logistics-tariff-content h2 {
    margin: 0 0 10px;
    font-size: 27px;
}

.logistics-tariff-content p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.6;
}

.logistics-btn-white {
    min-height: 46px;
    color: var(--log-primary-dark);
    background: var(--log-white);
}

.logistics-btn-white:hover {
    color: var(--log-white);
    background: var(--log-primary-dark);
}

.logistics-decoration {
    position: absolute;
    right: -30px;
    bottom: -20px;
    width: 370px;

    color: rgba(108, 28, 10, 0.25);
}

.logistics-decoration svg {
    width: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}


/* BENEFITS */

.logistics-benefits {
    padding: 40px 0 65px;
    background: var(--log-bg);
}

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

.logistics-benefit-item {
    position: relative;
    min-height: 130px;
    padding: 20px 28px;

    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 17px;
}

.logistics-benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: #dddddd;
}

.logistics-benefit-icon {
    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    color: var(--log-primary);
    background: var(--log-white);

    border: 1px solid var(--log-primary-soft);
    border-radius: 14px;
}

.logistics-benefit-icon svg {
    width: 37px;
    height: 37px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logistics-benefit-item h3 {
    margin: 0 0 8px;
    font-size: 15px;
}

.logistics-benefit-item p {
    margin: 0;
    color: var(--log-text);
    font-size: 13px;
    line-height: 1.55;
}


/* TABLET */

@media (max-width: 992px) {

    .logistics-hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 145px;
        gap: 40px;
    }

    .logistics-tracking-box {
        max-width: 650px;
    }

    .logistics-quick-section {
        height: auto;
        background: var(--log-bg);
    }

    .logistics-quick-links {
        margin-bottom: -55px;
        grid-template-columns: 1fr;
    }

    .logistics-quick-card,
    .logistics-quick-card:first-child,
    .logistics-quick-card:last-child {
        border-radius: 0;
    }

    .logistics-quick-card:first-child {
        border-radius: 18px 18px 0 0;
    }

    .logistics-quick-card:last-child {
        border-radius: 0 0 18px 18px;
    }

    .logistics-quick-card:not(:last-child)::after {
        top: auto;
        left: 25px;
        right: 25px;
        bottom: 0;
        width: auto;
        height: 1px;
    }

    .logistics-quick-card:hover {
        transform: translateX(7px);
    }

    .logistics-tariff-section {
        padding-top: 45px;
    }

    .logistics-tariff-box {
        padding: 23px;
        grid-template-columns: 220px 1fr;
    }

    .logistics-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logistics-benefit-item:nth-child(2)::after {
        display: none;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .logistics-container {
        width: calc(100% - 30px);
    }

    .logistics-hero {
        min-height: auto;
    }

    .logistics-hero-inner {
        padding: 65px 0 140px;
    }

    .logistics-hero-content h1 {
        font-size: 38px;
    }

    .logistics-hero-content p {
        font-size: 15px;
    }

    .logistics-hero-buttons {
        flex-direction: column;
    }

    .logistics-btn {
        width: 100%;
    }

    .logistics-tracking-form {
        overflow: visible;
        flex-direction: column;
        gap: 10px;
    }

    .logistics-tracking-form input,
    .logistics-tracking-form button {
        width: 100%;
        height: 55px;
        border-radius: 7px;
    }

    .logistics-quick-card {
        min-height: 115px;
        padding: 20px 17px;
        grid-template-columns: 52px 1fr 28px;
        gap: 12px;
    }

    .logistics-quick-icon {
        width: 50px;
        height: 50px;
    }

    .logistics-quick-icon svg {
        width: 32px;
        height: 32px;
    }

    .logistics-tariff-box {
        grid-template-columns: 1fr;
    }

    .logistics-tariff-image {
        width: 100%;
        height: 205px;
    }

    .logistics-decoration {
        right: -130px;
        opacity: 0.35;
    }

    .logistics-benefit-grid {
        grid-template-columns: 1fr;
    }

    .logistics-benefit-item {
        padding-left: 10px;
        padding-right: 10px;
        border-bottom: 1px solid #dddddd;
    }

    .logistics-benefit-item:last-child {
        border-bottom: 0;
    }

    .logistics-benefit-item::after {
        display: none;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6bcd06c */:root {
  --primary-color: #F35A33;
  --background-color: #F8F8F8;

  --card-color: #ffffff;
  --heading-color: #11131f;
  --text-color: #353844;
  --border-color: rgba(17, 19, 31, 0.08);

  --card-radius: 34px;
  --container-width: 1440px;
}


/* Reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  font-family: "Inter", sans-serif;
  color: var(--heading-color);
  background: var(--background-color);
}

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


/* Main Section */

.solutions-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 100vh;
  padding: 80px 24px 100px;

  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(243, 90, 51, 0.06),
      transparent 32%
    ),
    var(--background-color);
}

.solutions-container {
  position: relative;
  z-index: 2;

  width: min(100%, var(--container-width));
  margin: 0 auto;
}


/* Decorative Background */

.background-decoration {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(243, 90, 51, 0.11);
  border-radius: 50%;
}

.background-decoration-one {
  width: 800px;
  height: 800px;
  right: -320px;
  top: 200px;
}

.background-decoration-two {
  width: 580px;
  height: 580px;
  left: -330px;
  bottom: -290px;
}


/* Heading */

.section-header {
  max-width: 730px;
  margin-bottom: 54px;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;

  color: var(--primary-color);

  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  color: var(--heading-color);

  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.title-line {
  width: 105px;
  height: 5px;
  margin-top: 26px;

  border-radius: 100px;
  background: var(--primary-color);
}


/* Grid */

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


/* Card */

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;

  min-height: 580px;
  padding: 34px 38px 36px;

  overflow: hidden;

  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.94)
    );

  box-shadow:
    0 24px 70px rgba(17, 19, 31, 0.07),
    0 6px 20px rgba(17, 19, 31, 0.04);

  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.solution-card::before {
  content: "";

  position: absolute;
  width: 220px;
  height: 220px;
  right: -130px;
  top: -130px;

  border-radius: 50%;
  background: rgba(243, 90, 51, 0.06);

  transition: transform 350ms ease;
}

.solution-card:hover {
  transform: translateY(-12px);

  border-color: rgba(243, 90, 51, 0.2);

  box-shadow:
    0 35px 90px rgba(17, 19, 31, 0.12),
    0 10px 30px rgba(243, 90, 51, 0.08);
}

.solution-card:hover::before {
  transform: scale(1.35);
}


/* Icon */

.icon-wrapper {
  position: relative;
  z-index: 1;

  display: grid;
  place-items: center;

  width: 112px;
  height: 112px;
  margin-bottom: 26px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(243, 90, 51, 0.15),
      rgba(243, 90, 51, 0.035)
    );

  box-shadow:
    inset 0 0 0 1px rgba(243, 90, 51, 0.04);
}

.solution-icon {
  width: 72px;
  height: 72px;

  filter: drop-shadow(0 8px 10px rgba(243, 90, 51, 0.18));

  transition: transform 300ms ease;
}

.solution-card:hover .solution-icon {
  transform: translateY(-4px) scale(1.05);
}

.primary-fill {
  fill: var(--primary-color);
}


/* Card Content */

.card-title {
  position: relative;
  z-index: 1;

  margin-bottom: 18px;

  color: var(--heading-color);

  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.small-line {
  width: 36px;
  height: 4px;
  margin-bottom: 24px;

  border-radius: 30px;
  background: var(--primary-color);
}

.card-description {
  position: relative;
  z-index: 1;

  color: var(--text-color);

  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}


/* Card Link */

.card-link {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;

  margin-top: auto;
  padding-top: 32px;

  color: var(--primary-color);

  font-size: 18px;
  font-weight: 800;

  transition: gap 220ms ease;
}

.card-link svg {
  width: 27px;
  height: 27px;

  transition: transform 220ms ease;
}

.card-link:hover {
  gap: 20px;
}

.card-link:hover svg {
  transform: translateX(5px);
}


/* Tablet */

@media (max-width: 1100px) {

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

  .solution-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 21px);
    width: 100%;
    margin: 0 auto;
  }

}


/* Mobile */

@media (max-width: 760px) {

  .solutions-section {
    padding: 60px 18px 70px;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .section-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-card,
  .solution-card:last-child {
    grid-column: auto;
    max-width: none;
    min-height: 520px;

    padding: 28px 26px 30px;
    border-radius: 26px;
  }

  .icon-wrapper {
    width: 96px;
    height: 96px;
  }

  .solution-icon {
    width: 62px;
    height: 62px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-description {
    font-size: 16px;
    line-height: 1.65;
  }

}


/* Small Mobile */

@media (max-width: 420px) {

  .section-title br {
    display: none;
  }

  .solution-card {
    min-height: auto;
  }

  .card-link {
    margin-top: 34px;
  }

}/* End custom CSS */