/* =========================================================
   MIRACLE LOGISTICS
   Premium Landing Page Styles
   Brand: Navy #202945 | Orange #fc5900
   ========================================================= */

:root {
    --logistics-navy: #202945;
    --logistics-navy-dark: #151b30;
    --logistics-navy-light: #2c3657;
    --logistics-orange: #fc5900;
    --logistics-orange-light: #ff7a32;

    --white: #ffffff;
    --black: #0b0d14;
    --light-bg: #f6f7f9;
    --text-dark: #202945;
    --text-muted: #687084;

    --container-width: 1240px;
    --section-padding: 110px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .about-content,
html[dir="rtl"] .industries-intro,
html[dir="rtl"] .why-us-intro,
html[dir="rtl"] .contact-inner {
    text-align: right;
}

html[dir="rtl"] .section-heading.center,
html[dir="rtl"] .hero-buttons,
html[dir="rtl"] .hero-stats {
    text-align: center;
}

html[dir="rtl"] .fa-arrow-right {
    transform: scaleX(-1);
}

html[dir="rtl"] .logistics-service-modal-header,
html[dir="rtl"] .logistics-service-modal-footer,
html[dir="rtl"] .contact-info-item {
    flex-direction: row-reverse;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}


/* =========================================================
   LOGISTICS HEADER
   ========================================================= */

#logisticsHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(15, 21, 39, 0.45);
    backdrop-filter: blur(8px);

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}

#logisticsHeader.scrolled {
    background: rgba(32, 41, 69, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.logistics-navbar {
    width: 100%;
    height: 86px;
}

.logistics-nav-container {
    width: min(100% - 50px, var(--container-width));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logistics-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logistics-logo img {
    display: block;
    width: 175px;
    height: auto;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.logistics-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-left: auto;
}

.logistics-nav-menu a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 10px 15px;

    color: var(--white);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.logistics-nav-menu a::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 2px;

    height: 2px;

    background: var(--logistics-orange);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

.logistics-nav-menu a:hover {
    color: var(--logistics-orange);
}

.logistics-nav-menu a:hover::after {
    transform: scaleX(1);
}

.logistics-nav-menu .language-switcher {
    color: var(--logistics-orange);
    font-weight: 700;
    text-transform: none;
}

.logistics-nav-menu .language-switcher:hover {
    color: var(--white);
}


/* =========================================================
   NAVIGATION RIGHT SIDE
   ========================================================= */

.logistics-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;

    flex-shrink: 0;
}


/* =========================================================
   REQUEST QUOTE BUTTON
   ========================================================= */

.logistics-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding: 0 21px;

    background: var(--logistics-orange);
    color: var(--white);

    border-radius: 3px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    box-shadow: 0 8px 25px rgba(252, 89, 0, 0.20);

    transition: all 0.3s ease;
}

.logistics-nav-cta i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.logistics-nav-cta:hover {
    color: var(--white);

    background: var(--logistics-orange-light);

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(252, 89, 0, 0.32);
}

.logistics-nav-cta:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE TOGGLE
   ========================================================= */

.logistics-mobile-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.06);

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    transition: all 0.3s ease;
}

.logistics-mobile-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--white);

    border-radius: 2px;

    transition: all 0.3s ease;
}

.logistics-mobile-toggle:hover {
    background: var(--logistics-orange);
    border-color: var(--logistics-orange);
}


/* Hamburger active state */

.logistics-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.logistics-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.logistics-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.logistics-mobile-menu {
    display: none;

    position: fixed;

    top: 86px;
    left: 0;

    width: 100%;

    padding: 25px;

    background: rgba(21, 27, 48, 0.98);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    transform: translateY(-20px);

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}

.logistics-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.logistics-mobile-menu a {
    display: block;

    padding: 15px 5px;

    color: var(--white);

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}

.logistics-mobile-menu a:hover {
    color: var(--logistics-orange);
    padding-left: 10px;
}

.logistics-mobile-menu .language-switcher {
    color: var(--logistics-orange);
    font-weight: 700;
    text-transform: none;
}

.logistics-mobile-menu .logistics-mobile-cta {
    margin-top: 18px;

    text-align: center;

    background: var(--logistics-orange);

    border: none;

    padding: 14px 20px;

    color: var(--white);
}

.logistics-mobile-menu .logistics-mobile-cta:hover {
    background: var(--logistics-orange-light);
    color: var(--white);
    padding-left: 20px;
}


/* =========================================================
   HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .logistics-nav-container {
        width: min(100% - 35px, var(--container-width));
        gap: 20px;
    }

    .logistics-nav-menu {
        gap: 0;
    }

    .logistics-nav-menu a {
        padding: 10px 10px;
        font-size: 12px;
    }

    .logistics-nav-cta {
        padding: 0 16px;
        font-size: 11px;
    }
}


@media (max-width: 991px) {

    .logistics-navbar {
        height: 76px;
    }

    .logistics-nav-container {
        width: calc(100% - 30px);
    }

    .logistics-logo {
        height: 60px;
    }

    .logistics-logo img {
        height: 52px;
        max-width: 190px;
    }

    .logistics-nav-menu {
        display: none;
    }

    .logistics-nav-cta {
        display: none;
    }

    .logistics-mobile-toggle {
        display: flex;
    }

    .logistics-mobile-menu {
        display: block;
        top: 76px;
    }
}


@media (max-width: 480px) {

    .logistics-nav-container {
        width: calc(100% - 24px);
    }

    .logistics-logo img {
        height: 47px;
        max-width: 170px;
    }

    .logistics-mobile-toggle {
        width: 43px;
        height: 43px;
    }

    .logistics-mobile-menu {
        padding: 20px;
    }
}

/* =========================================================
   HERO
   ========================================================= */

.logistics-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--logistics-navy);
}


/* Video */

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 21, 39, 0.94) 0%,
            rgba(20, 28, 49, 0.82) 38%,
            rgba(20, 28, 49, 0.48) 68%,
            rgba(20, 28, 49, 0.35) 100%
        );

    z-index: 1;
}


/* Hero content */

.hero-container {
    position: relative;
    z-index: 2;

    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 850px;
}


/* Eyebrow */

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--logistics-orange);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 22px;
}

.eyebrow-line {
    width: 42px;
    height: 2px;

    background: var(--logistics-orange);
}


/* Hero title */

.hero-title {
    color: var(--white);

    font-size: clamp(48px, 6vw, 86px);
    line-height: 1.03;

    font-weight: 700;

    letter-spacing: -2.5px;

    margin-bottom: 28px;
}

.hero-title span {
    color: var(--logistics-orange);
}


/* Description */

.hero-description {
    max-width: 690px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 19px;
    line-height: 1.8;

    margin-bottom: 38px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons,
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.logistics-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.logistics-btn-primary {
    background: var(--logistics-orange);
    color: var(--white);

    box-shadow:
        0 12px 30px rgba(252, 89, 0, 0.25);
}

.logistics-btn-primary:hover {
    color: var(--white);

    transform: translateY(-3px);

    background: var(--logistics-orange-light);

    box-shadow:
        0 18px 40px rgba(252, 89, 0, 0.35);
}

.logistics-btn-outline {
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(255, 255, 255, 0.04);
}

.logistics-btn-outline:hover {
    color: var(--logistics-navy);

    background: var(--white);

    transform: translateY(-3px);
}


/* =========================================================
   HERO STATS
   ========================================================= */

.hero-stats {
    display: flex;
    align-items: center;

    margin-top: 55px;

    gap: 28px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    color: var(--white);

    font-size: 29px;
    line-height: 1;

    margin-bottom: 8px;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.hero-scroll {
    position: absolute;

    z-index: 3;

    right: 50px;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 15px;

    transform: rotate(90deg);
    transform-origin: right center;

    color: rgba(255, 255, 255, 0.7);

    font-size: 10px;
    letter-spacing: 2px;
}

.hero-scroll:hover {
    color: var(--white);
}

.scroll-line {
    width: 65px;
    height: 1px;

    background: var(--logistics-orange);
}


/* =========================================================
   SECTION GENERAL
   ========================================================= */

.logistics-about,
.logistics-services,
.logistics-contact {
    padding: var(--section-padding) 0;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 60px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    color: var(--logistics-navy);

    font-size: clamp(38px, 4.5vw, 62px);

    line-height: 1.1;

    letter-spacing: -1.8px;

    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--logistics-orange);
}

.section-heading p {
    color: var(--text-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT
   ========================================================= */

.logistics-about {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}

.about-content {
    max-width: 620px;
}

.about-content p {
    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 22px;
}

.about-content .about-lead {
    color: var(--logistics-navy);

    font-size: 23px;

    line-height: 1.6;

    font-weight: 500;

    margin-bottom: 25px;
}


/* Text link */

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--logistics-orange);

    font-weight: 700;

    font-size: 14px;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--logistics-navy);
}

.text-link:hover i {
    transform: translateX(5px);
}


/* Highlight cards */

.about-highlight {
    display: grid;

    grid-template-columns: 1fr;

    gap: 2px;

    background: #e6e8ed;
}

.highlight-card {
    position: relative;

    padding: 32px;

    background: var(--logistics-navy);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.highlight-card:hover {
    background: var(--logistics-orange);

    transform: translateX(6px);
}

.highlight-number {
    display: block;

    color: rgba(255, 255, 255, 0.35);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.highlight-card h3 {
    color: var(--white);

    font-size: 22px;

    margin-bottom: 10px;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.7;
}

.highlight-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   SERVICES
   ========================================================= */

.logistics-services {
    background: var(--light-bg);
}

.services-coming-soon {
    min-height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px dashed #d7dae2;

    color: var(--text-muted);
}


/* =========================================================
   CONTACT
   ========================================================= */

.logistics-contact {
    position: relative;

    background:
        linear-gradient(
            135deg,
            var(--logistics-navy-dark),
            var(--logistics-navy)
        );

    overflow: hidden;
}

.logistics-contact::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    right: -200px;
    top: -250px;

    background: rgba(252, 89, 0, 0.12);

    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.contact-inner h2 {
    color: var(--white);

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.contact-inner h2 span {
    color: var(--logistics-orange);
}

.contact-inner p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 18px;

    max-width: 650px;

    margin-bottom: 35px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    :root {
        --section-padding: 85px;
    }

    .hero-container {
        padding-top: 130px;
    }

    .hero-title {
        font-size: clamp(45px, 8vw, 70px);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-scroll {
        display: none;
    }

}


@media (max-width: 767px) {

    .container {
        width: min(100% - 30px, var(--container-width));
    }

    .logistics-hero {
        min-height: 850px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(15, 21, 39, 0.78),
                rgba(15, 21, 39, 0.94)
            );
    }

    .hero-container {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: clamp(42px, 12vw, 60px);

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 16px;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .logistics-btn {
        width: 100%;
    }

    .hero-stats {
        gap: 15px;

        margin-top: 45px;

        flex-wrap: wrap;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        min-width: 90px;
    }

    .hero-stat strong {
        font-size: 24px;
    }

    .hero-stat span {
        font-size: 10px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .about-content .about-lead {
        font-size: 20px;
    }

    .contact-buttons {
        flex-direction: column;

        align-items: stretch;
    }

}


@media (max-width: 480px) {

    .hero-eyebrow {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 12px;
    }

    .hero-stat strong {
        font-size: 21px;
    }

    .hero-stat span {
        font-size: 9px;

        letter-spacing: 1px;
    }

}


/* =========================================================
   WHO WE ARE
========================================================= */

.logistics-about {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 90px;
    align-items: center;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
    max-width: 650px;
}

.about-content .section-heading {
    margin-bottom: 30px;
}

.about-content .section-heading h2 {
    margin-bottom: 0;
}

.about-content p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.about-content .about-lead {
    color: var(--logistics-navy);
    font-size: 21px;
    line-height: 1.7;
    font-weight: 500;
}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {
    position: relative;
    min-height: 500px;
}


/* Main visual */

.about-visual-main {
    position: relative;

    min-height: 430px;

    background:
        linear-gradient(
            135deg,
            var(--logistics-navy-dark),
            var(--logistics-navy)
        );

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(32, 41, 69, 0.18);
}


/* Grid background */

.visual-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    opacity: 0.45;
}


/* Orange glow */

.about-visual-main::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -100px;

    border-radius: 50%;

    background: var(--logistics-orange);

    opacity: 0.15;

    filter: blur(5px);
}


/* Main text */

.visual-content {
    position: absolute;

    left: 45px;
    bottom: 45px;

    z-index: 3;

    display: flex;
    flex-direction: column;
}

.visual-label {
    color: var(--logistics-orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.visual-content strong {
    color: var(--white);

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -3px;
}

.visual-subtitle {
    margin-top: 15px;

    color: rgba(255,255,255,0.65);

    font-size: 14px;
}


/* =========================================================
   ROUTES
========================================================= */

.visual-route {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--logistics-orange),
            transparent
        );

    transform-origin: left center;

    opacity: 0.8;
}

.route-one {
    width: 280px;

    left: 15%;
    top: 35%;

    transform: rotate(-18deg);
}

.route-two {
    width: 240px;

    left: 35%;
    top: 58%;

    transform: rotate(12deg);
}


/* =========================================================
   ROUTE DOTS
========================================================= */

.visual-dot {
    position: absolute;

    width: 10px;
    height: 10px;

    background: var(--logistics-orange);

    border-radius: 50%;

    box-shadow:
        0 0 0 7px rgba(252,89,0,0.12),
        0 0 25px rgba(252,89,0,0.5);

    z-index: 3;

    animation: logisticsPulse 2.5s infinite;
}

.dot-one {
    left: 16%;
    top: 34%;
}

.dot-two {
    left: 53%;
    top: 25%;
    animation-delay: 0.7s;
}

.dot-three {
    right: 17%;
    top: 58%;
    animation-delay: 1.4s;
}


@keyframes logisticsPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }

}


/* =========================================================
   TRANSPORT ICONS
========================================================= */

.visual-icon {
    position: absolute;

    color: rgba(255,255,255,0.12);

    font-size: 70px;

    z-index: 2;

    transition: all 0.4s ease;
}

.icon-ship {
    right: 50px;
    top: 70px;
}

.icon-plane {
    left: 45%;
    top: 105px;

    font-size: 55px;

    transform: rotate(-15deg);
}

.icon-truck {
    right: 90px;
    bottom: 55px;

    font-size: 55px;
}

.about-visual-main:hover .visual-icon {
    color: rgba(252,89,0,0.18);
}


/* =========================================================
   MINI CARDS
========================================================= */

.about-visual-cards {
    position: absolute;

    left: -45px;
    bottom: -35px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    width: calc(100% + 45px);

    gap: 2px;

    z-index: 5;
}

.mini-card {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 20px;

    background: var(--white);

    box-shadow:
        0 15px 40px rgba(32,41,69,0.12);

    border-left: 3px solid var(--logistics-orange);

    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-5px);
}

.mini-card-number {
    color: var(--logistics-orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.mini-card strong {
    display: block;

    color: var(--logistics-navy);

    font-size: 14px;

    margin-bottom: 3px;
}

.mini-card small {
    display: block;

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .logistics-about {
        padding: 90px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-visual {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

}


@media (max-width: 767px) {

    .logistics-about {
        padding: 75px 0;
    }

    .about-content .about-lead {
        font-size: 19px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-visual-main {
        min-height: 380px;
    }

    .visual-content {
        left: 30px;
        bottom: 35px;
    }

    .visual-content strong {
        font-size: 52px;
    }

    .about-visual-cards {
        position: relative;

        left: 0;
        bottom: auto;

        width: 100%;

        margin-top: 15px;

        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .about-visual-main {
        min-height: 350px;
    }

    .visual-content {
        left: 25px;
        bottom: 30px;
    }

    .visual-content strong {
        font-size: 45px;
    }

    .icon-ship {
        right: 25px;
        top: 50px;
    }

    .icon-plane {
        left: 45%;
        top: 80px;
    }

    .icon-truck {
        right: 40px;
        bottom: 50px;
    }

}
/* =========================================================
   SERVICES - MAIN SERVICE CARDS
========================================================= */

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 65px;
    background: #dfe2e8;
}

.main-service-card {
    position: relative;
    min-height: 410px;
    padding: 38px;
    background: var(--white);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.main-service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(252, 89, 0, 0.06);
    transition: transform 0.5s ease;
}

.main-service-card:hover {
    background: var(--logistics-navy);
    transform: translateY(-8px);
    z-index: 2;
}

.main-service-card:hover::before {
    transform: scale(2);
}

.main-service-card.featured {
    background: var(--logistics-navy);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.service-number {
    color: #a5a9b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.main-service-card.featured .service-number {
    color: rgba(255,255,255,0.45);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logistics-orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.4s ease;
}

.main-service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.08);
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-card-content h3 {
    color: var(--logistics-navy);
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.service-card-content h3 span {
    display: block;
    color: var(--logistics-orange);
}

.main-service-card.featured .service-card-content h3,
.main-service-card:hover .service-card-content h3 {
    color: var(--white);
}

.service-card-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 360px;
}

.main-service-card.featured .service-card-content p,
.main-service-card:hover .service-card-content p {
    color: rgba(255,255,255,0.68);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--logistics-orange);
    font-size: 13px;
    font-weight: 700;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--logistics-orange-light);
}

.service-link:hover i {
    transform: translateX(6px);
}

.service-card-line {
    position: absolute;
    left: 38px;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--logistics-orange);
    transition: width 0.4s ease;
}

.main-service-card:hover .service-card-line {
    width: 110px;
}


/* =========================================================
   BEYOND FREIGHT
========================================================= */

.beyond-freight {
    margin-top: 100px;
}

.beyond-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 45px;
}

.beyond-header h3 {
    color: var(--logistics-navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-top: 15px;
}

.beyond-header h3 span {
    color: var(--logistics-orange);
}

.beyond-header > p {
    max-width: 470px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   VALUE ADDED SERVICES
========================================================= */

.value-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dfe2e8;
    border-left: 1px solid #dfe2e8;
}

.value-service {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-right: 1px solid #dfe2e8;
    border-bottom: 1px solid #dfe2e8;
    background: var(--white);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.value-service:hover {
    background: var(--logistics-navy);
    transform: translateY(-4px);
    position: relative;
    z-index: 2;
}

.value-service-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(252, 89, 0, 0.1);
    color: var(--logistics-orange);
    font-size: 16px;
    transition: all 0.3s ease;
}

.value-service:hover .value-service-icon {
    background: var(--logistics-orange);
    color: var(--white);
}

.value-service h4 {
    color: var(--logistics-navy);
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 7px;
}

.value-service:hover h4 {
    color: var(--white);
}

.value-service p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.value-service:hover p {
    color: rgba(255,255,255,0.65);
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .main-services-grid {
        grid-template-columns: 1fr;
    }

    .main-service-card {
        min-height: 360px;
    }

    .value-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beyond-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

}


@media (max-width: 767px) {

    .main-services-grid {
        margin-top: 45px;
    }

    .main-service-card {
        min-height: auto;
        padding: 30px;
    }

    .service-card-top {
        margin-bottom: 45px;
    }

    .service-card-content h3 {
        font-size: 25px;
    }

    .beyond-freight {
        margin-top: 70px;
    }

    .value-services-grid {
        grid-template-columns: 1fr;
    }

    .value-service {
        padding: 25px 20px;
    }

}


@media (max-width: 480px) {

    .main-service-card {
        padding: 25px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 17px;
    }

    .service-card-line {
        left: 25px;
    }

}
/* =========================================================
   SECTOR EXPERTISE
========================================================= */

.logistics-industries {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--logistics-navy);
    overflow: hidden;
}

.logistics-industries::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -300px;
    top: -250px;
    border-radius: 50%;
    background: rgba(252, 89, 0, 0.08);
    pointer-events: none;
}

.logistics-industries::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -250px;
    bottom: -250px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}


/* =========================================================
   INDUSTRIES LAYOUT
========================================================= */

.industries-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: center;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.industries-intro {
    max-width: 500px;
}

.industries-intro .section-eyebrow {
    color: var(--logistics-orange);
}

.industries-intro h2 {
    color: var(--white);

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 15px 0 25px;
}

.industries-intro h2 span {
    display: block;
    color: var(--logistics-orange);
}

.industries-intro p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 16px;

    line-height: 1.85;

    margin-bottom: 20px;
}

.industries-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    border-bottom: 1px solid var(--logistics-orange);

    padding-bottom: 7px;
}

.industries-link i {
    color: var(--logistics-orange);

    transition: transform 0.3s ease;
}

.industries-link:hover {
    color: var(--logistics-orange);
}

.industries-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   INDUSTRY GRID
========================================================= */

.industries-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.industry-item {
    min-height: 125px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    gap: 14px;

    padding: 22px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.025);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.industry-item i {
    color: var(--logistics-orange);

    font-size: 20px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.industry-item span {
    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;

    font-weight: 600;

    transition: color 0.35s ease;
}

.industry-item:hover {
    background: var(--logistics-orange);

    transform: translateY(-4px);

    position: relative;

    z-index: 2;
}

.industry-item:hover i {
    color: var(--white);

    transform: translateY(-3px) scale(1.1);
}

.industry-item:hover span {
    color: var(--white);
}


/* Highlight industries */

.industry-item.industry-highlight {
    background: rgba(252, 89, 0, 0.09);
}

.industry-item.industry-highlight span {
    color: var(--white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .industries-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .industries-intro {
        max-width: 700px;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .logistics-industries {
        padding: 80px 0;
    }

    .industries-layout {
        gap: 45px;
    }

    .industries-intro h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item {
        min-height: 110px;

        padding: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industry-item {
        min-height: 100px;

        padding: 16px;
    }

    .industry-item span {
        font-size: 12px;
    }

}
/* =========================================================
   VISION & MISSION
   ========================================================= */

.logistics-vision-mission {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--logistics-navy);
    overflow: hidden;
}

.logistics-vision-mission::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(252, 89, 0, 0.08);
    top: -250px;
    right: -180px;
}

.logistics-vision-mission::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    bottom: -180px;
    left: -120px;
}

.logistics-vision-mission .section-heading {
    position: relative;
    z-index: 2;
}

.logistics-vision-mission .section-eyebrow {
    color: var(--logistics-orange);
}

.logistics-vision-mission .section-heading h2 {
    color: var(--white);
}

.logistics-vision-mission .section-heading p {
    color: rgba(255, 255, 255, 0.65);
}


/* Grid */

.vision-mission-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    max-width: 1050px;
    margin: 0 auto;
}


/* Cards */

.vision-mission-card {
    position: relative;

    min-height: 390px;

    padding: 50px 45px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.10);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;
}

.vision-mission-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(252, 89, 0, 0.55);
}


/* Orange corner */

.vision-mission-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 0;

    background: var(--logistics-orange);

    transition: height 0.4s ease;
}

.vision-mission-card:hover::before {
    height: 100%;
}


/* Number */

.vm-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 70px;
    font-weight: 700;

    line-height: 1;
}


/* Icon */

.vm-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: var(--logistics-orange);

    color: var(--white);

    font-size: 21px;

    border-radius: 50%;
}


/* Label */

.vm-label {
    display: block;

    margin-bottom: 12px;

    color: var(--logistics-orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


/* Heading */

.vision-mission-card h3 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: 32px;
    font-weight: 600;
}


/* Text */

.vision-mission-card p {
    max-width: 500px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   VISION & MISSION — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-card {
        min-height: auto;

        padding: 40px 30px;
    }

    .vm-number {
        font-size: 55px;
        top: 20px;
        right: 20px;
    }

    .vision-mission-card h3 {
        font-size: 28px;
    }

}

/* =========================================================
   WHAT DRIVES US — CORE VALUES
   ========================================================= */

.logistics-values {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--light-bg);
    overflow: hidden;
}


/* Subtle background decoration */

.logistics-values::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(252, 89, 0, 0.045);

    top: -200px;
    left: -180px;

    pointer-events: none;
}


/* Heading */

.logistics-values .section-heading {
    position: relative;
    z-index: 2;
}


/* Grid */

.values-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    max-width: 1150px;

    margin: 0 auto;
}


/* Cards */

.value-card {
    position: relative;

    min-height: 270px;

    padding: 32px 28px;

    background: var(--white);

    border: 1px solid #e7e9ee;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.value-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(252, 89, 0, 0.35);

    box-shadow:
        0 20px 45px rgba(32, 41, 69, 0.10);
}


/* Orange top line */

.value-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: var(--logistics-orange);

    transition: width 0.4s ease;
}


.value-card:hover::before {
    width: 100%;
}


/* Number */

.value-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: rgba(32, 41, 69, 0.07);

    font-size: 42px;

    font-weight: 700;

    line-height: 1;
}


/* Icon */

.value-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 12px;

    background:
        rgba(252, 89, 0, 0.10);

    color: var(--logistics-orange);

    font-size: 19px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.value-card:hover .value-icon {
    background: var(--logistics-orange);

    color: var(--white);

    transform: rotate(-5deg) scale(1.05);
}


/* Heading */

.value-card h3 {
    margin-bottom: 12px;

    color: var(--logistics-navy);

    font-size: 21px;

    font-weight: 700;

    line-height: 1.25;
}


/* Description */

.value-card p {
    margin: 0;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CORE VALUES — RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .values-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 767px) {

    .values-grid {
        grid-template-columns: 1fr 1fr;

        gap: 14px;
    }

    .value-card {
        min-height: 250px;

        padding: 25px 22px;
    }

    .value-card h3 {
        font-size: 19px;
    }

}


@media (max-width: 480px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;

        padding: 30px 25px;
    }

}
/* =========================================================
   CLIENT PERSPECTIVE — WHY CUSTOMERS CHOOSE US
   ========================================================= */

.logistics-why-us {
    position: relative;

    padding: var(--section-padding) 0;

    background: var(--white);

    overflow: hidden;
}


/* Background decoration */

.logistics-why-us::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(32, 41, 69, 0.035);

    left: -260px;
    bottom: -260px;

    pointer-events: none;
}


/* Main grid */

.why-us-grid {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.why-us-intro {
    position: sticky;
    top: 130px;
}

.why-us-intro .section-eyebrow {
    color: var(--logistics-orange);
}

.why-us-intro h2 {

    color: var(--logistics-navy);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.why-us-intro h2 span {
    color: var(--logistics-orange);
}

.why-us-intro p {

    max-width: 480px;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.85;

    margin-bottom: 35px;
}


/* Accent */

.why-us-accent {

    display: flex;

    align-items: center;

    gap: 6px;
}

.why-us-accent span {

    display: block;

    height: 4px;

    border-radius: 10px;

    background: var(--logistics-orange);
}

.why-us-accent span:nth-child(1) {
    width: 55px;
}

.why-us-accent span:nth-child(2) {
    width: 20px;
}

.why-us-accent span:nth-child(3) {
    width: 8px;
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.why-us-list {

    display: flex;

    flex-direction: column;
}


/* Item */

.why-us-item {

    position: relative;

    display: grid;

    grid-template-columns:
        45px 58px 1fr;

    align-items: center;

    gap: 20px;

    padding: 28px 0;

    border-bottom: 1px solid #e7e9ee;

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}


.why-us-item:first-child {
    border-top: 1px solid #e7e9ee;
}


.why-us-item:hover {
    padding-left: 15px;
}


/* Number */

.why-us-number {

    color: #cdd1d9;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}


.why-us-item:hover .why-us-number {
    color: var(--logistics-orange);
}


/* Icon */

.why-us-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(32, 41, 69, 0.06);

    color: var(--logistics-navy);

    font-size: 19px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.why-us-item:hover .why-us-icon {

    background: var(--logistics-orange);

    color: var(--white);

    transform: scale(1.08);
}


/* Text */

.why-us-text h3 {

    color: var(--logistics-navy);

    font-size: 19px;

    font-weight: 700;

    margin-bottom: 5px;
}


.why-us-text p {

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .why-us-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .why-us-intro {
        position: static;
    }

}


@media (max-width: 767px) {

    .why-us-grid {
        gap: 40px;
    }

    .why-us-intro h2 {
        font-size: 44px;
    }

    .why-us-item {

        grid-template-columns:
            35px 50px 1fr;

        gap: 14px;

        padding: 23px 0;
    }

    .why-us-icon {

        width: 50px;
        height: 50px;

        font-size: 16px;
    }

    .why-us-text h3 {
        font-size: 17px;
    }

    .why-us-text p {
        font-size: 13px;
    }

}


@media (max-width: 480px) {

    .why-us-item {

        grid-template-columns:
            30px 45px 1fr;

        gap: 10px;
    }

    .why-us-icon {

        width: 45px;
        height: 45px;

        font-size: 15px;
    }

    .why-us-text h3 {
        font-size: 16px;
    }

}

/* =========================================================
   OUR SERVICE COMMITMENT
   ========================================================= */

.logistics-commitment {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--white);
    overflow: hidden;
}

.logistics-commitment::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: 80px;
    border-radius: 50%;
    background: rgba(252, 89, 0, 0.05);
    pointer-events: none;
}

.logistics-commitment .container {
    position: relative;
    z-index: 2;
}


/* Heading */

.logistics-commitment .section-heading {
    max-width: 700px;
}


/* Grid */

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e4e7ed;
}


/* Card */

.commitment-card {
    position: relative;
    min-height: 285px;
    padding: 34px;
    background: var(--white);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* Number */

.commitment-number {
    position: absolute;
    top: 25px;
    right: 28px;

    color: #e8eaf0;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    transition: color 0.35s ease;
}


/* Icon */

.commitment-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: rgba(252, 89, 0, 0.09);
    color: var(--logistics-orange);

    border-radius: 4px;

    font-size: 20px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* Title */

.commitment-card h3 {
    color: var(--logistics-navy);

    font-size: 20px;
    line-height: 1.3;

    margin-bottom: 12px;

    transition: color 0.35s ease;
}


/* Main commitment */

.commitment-card strong {
    display: block;

    color: var(--logistics-orange);

    font-size: 17px;
    font-weight: 700;

    margin-bottom: 7px;
}


/* Description */

.commitment-card p {
    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.7;

    margin: 0;
}


/* Hover */

.commitment-card:hover {
    background: var(--logistics-navy);

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(32, 41, 69, 0.15);

    z-index: 2;
}

.commitment-card:hover .commitment-number {
    color: rgba(255, 255, 255, 0.2);
}

.commitment-card:hover .commitment-icon {
    background: var(--logistics-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.commitment-card:hover h3 {
    color: var(--white);
}

.commitment-card:hover p {
    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .commitment-card {
        min-height: auto;
        padding: 30px;
    }

}
/* =========================================================
   QUALITY, SAFETY & COMPLIANCE
   ========================================================= */

.logistics-standards {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--light-bg);
    overflow: hidden;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #dfe2e8;
}


/* Standard Card */

.standard-card {
    position: relative;
    padding: 40px;
    background: var(--white);
    min-height: 390px;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.standard-card:hover {
    background: var(--logistics-navy);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(32, 41, 69, 0.18);
    z-index: 2;
}


/* Top */

.standard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 35px;
}

.standard-number {
    color: #dfe2e8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* Icon */

.standard-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    background: rgba(252, 89, 0, 0.1);
    color: var(--logistics-orange);

    font-size: 22px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.standard-card:hover .standard-icon {
    background: var(--logistics-orange);
    color: var(--white);
    transform: rotate(-5deg);
}


/* Title */

.standard-card h3 {
    color: var(--logistics-navy);
    font-size: 28px;
    margin-bottom: 18px;

    transition: color 0.35s ease;
}

.standard-card:hover h3 {
    color: var(--white);
}


/* Description */

.standard-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;

    transition: color 0.35s ease;
}

.standard-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}


/* Bottom line */

.standard-line {
    width: 45px;
    height: 2px;
    background: var(--logistics-orange);
    margin-bottom: 12px;
}

.standard-label {
    color: var(--logistics-navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.standard-card:hover .standard-label {
    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   METRICS
   ========================================================= */

.standards-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 2px;

    background: var(--logistics-navy);
}

.metric-item {
    padding: 35px 25px;
    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item:last-child {
    border-right: none;
}

.metric-item strong {
    display: block;
    color: var(--logistics-orange);
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.metric-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .standard-card {
        min-height: auto;
    }

}


@media (max-width: 767px) {

    .standards-metrics {
        grid-template-columns: 1fr;
    }

    .metric-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .metric-item:last-child {
        border-bottom: none;
    }

    .standard-card {
        padding: 30px;
    }

}

/* =========================================================
   CLIENT EXPERIENCE
   ========================================================= */

.logistics-client-experience {
    padding: var(--section-padding) 0;
    background: var(--white);
    overflow: hidden;
}

.client-experience-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: center;
}


/* LEFT */

.client-experience-content {
    max-width: 680px;
}

.client-experience-content h2 {
    color: var(--logistics-navy);
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.client-experience-content h2 span {
    color: var(--logistics-orange);
}

.client-experience-intro {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}


/* SUPPORT LIST */

.support-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #e5e7eb;
}

.support-item {
    display: flex;
    gap: 22px;
    padding: 25px;
    background: var(--white);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.support-item:hover {
    background: var(--logistics-navy);
    transform: translateX(6px);
}

.support-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(252, 89, 0, 0.1);
    color: var(--logistics-orange);

    border-radius: 4px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.support-item:hover .support-icon {
    background: var(--logistics-orange);
    color: var(--white);
}

.support-item h3 {
    color: var(--logistics-navy);
    font-size: 17px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.support-item p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.support-item:hover h3 {
    color: var(--white);
}

.support-item:hover p {
    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   TESTIMONIAL
   ========================================================= */

.client-testimonial {
    position: relative;

    padding: 55px 45px;

    background: var(--logistics-navy);

    min-height: 420px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
}

.client-testimonial::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(252, 89, 0, 0.12);
}

.testimonial-mark {
    color: var(--logistics-orange);
    font-size: 30px;
    margin-bottom: 25px;
}

.client-testimonial blockquote {
    position: relative;
    z-index: 2;

    color: var(--white);

    font-size: 25px;
    line-height: 1.6;
    font-weight: 400;

    margin: 0 0 30px;
}

.testimonial-line {
    width: 45px;
    height: 2px;
    background: var(--logistics-orange);
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 14px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .client-experience-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .client-testimonial {
        min-height: 350px;
    }

}


@media (max-width: 767px) {

    .client-experience-content h2 {
        font-size: 42px;
    }

    .support-item {
        padding: 22px;
    }

    .client-testimonial {
        padding: 40px 30px;
        min-height: 330px;
    }

    .client-testimonial blockquote {
        font-size: 21px;
    }

}

/* =========================================================
   PREMIUM SERVICE CARDS
========================================================= */

.logistics-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.logistics-service-card {
    position: relative;
    min-height: 330px;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Orange accent line */

.logistics-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--logistics-orange);
    transition: height 0.35s ease;
}

/* Soft background glow */

.logistics-service-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -100px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(252, 89, 0, 0.06);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.logistics-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 89, 0, 0.35);
    box-shadow: 0 20px 45px rgba(32, 41, 69, 0.12);
}

.logistics-service-card:hover::before {
    height: 100%;
}

.logistics-service-card:hover::after {
    transform: scale(1.5);
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-card-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #dfe2e8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logistics-service-card:hover .service-card-number {
    color: rgba(252, 89, 0, 0.35);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: var(--logistics-navy);
    color: var(--white);
    font-size: 21px;
    border-radius: 4px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.logistics-service-card:hover .service-card-icon {
    background: var(--logistics-orange);
    transform: scale(1.08) rotate(-3deg);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-content h3 {
    color: var(--logistics-navy);
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.service-card-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}


/* =========================================================
   EXPLORE SERVICE
========================================================= */

.service-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    width: fit-content;

    color: var(--logistics-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.service-explore i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.service-explore:hover {
    color: var(--logistics-navy);
    text-decoration: none;
    gap: 12px;
}

.service-explore:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CLICK TO EXPLORE CUE
========================================================= */

.service-explore::before {
    content: "Explore";
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   SERVICES BOTTOM CTA
========================================================= */

.services-bottom-cta {
    margin-top: 55px;
    padding-top: 35px;
    border-top: 1px solid #e5e7eb;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.services-bottom-cta p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
}


/* =========================================================
   SERVICE MODAL
========================================================= */

.logistics-service-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.logistics-service-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.logistics-service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.78);
    backdrop-filter: blur(8px);
}

.logistics-service-modal-container {
    position: relative;
    z-index: 2;

    width: min(100%, 1050px);
    max-height: 90vh;

    overflow-y: auto;

    background: var(--white);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);

    transform: translateY(25px) scale(0.97);
    transition: transform 0.35s ease;
}

.logistics-service-modal.active
.logistics-service-modal-container {
    transform: translateY(0) scale(1);
}


/* =========================================================
   MODAL CLOSE
========================================================= */

.logistics-service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: var(--logistics-navy);
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 5;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.logistics-service-modal-close:hover {
    background: var(--logistics-orange);
    transform: rotate(90deg);
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.logistics-service-modal-content {
    padding: 55px;
}

.logistics-service-modal-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 30px;
}

.logistics-service-modal-icon {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--logistics-navy);
    color: var(--white);

    font-size: 26px;
}

.logistics-service-modal-eyebrow {
    display: block;

    color: var(--logistics-orange);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 8px;
}

.logistics-service-modal-header h2 {
    color: var(--logistics-navy);
    font-size: 36px;
    line-height: 1.2;
    margin: 0;
}

.logistics-service-modal-description {
    max-width: 850px;

    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 35px;
}


/* =========================================================
   MODAL FEATURES
========================================================= */

.logistics-modal-label {
    display: block;

    color: var(--logistics-navy);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 18px;
}

.logistics-service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.logistics-service-feature {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;

    background: var(--light-bg);

    color: var(--text-dark);

    font-size: 13px;
}

.logistics-service-feature i {
    color: var(--logistics-orange);
    font-size: 12px;
}


/* =========================================================
   MODAL PROCESS
========================================================= */

.logistics-service-modal-section {
    margin-top: 35px;
}

.logistics-service-process {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.logistics-process-step {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    gap: 5px;

    min-width: 100px;
}

.logistics-process-step span {
    color: var(--logistics-orange);
    font-size: 11px;
    font-weight: 700;
}

.logistics-process-step strong {
    color: var(--logistics-navy);
    font-size: 12px;
}

.logistics-process-line {
    width: 35px;
    height: 1px;
    flex-shrink: 0;
    background: #d9dce3;
}


/* =========================================================
   MODAL FOOTER
========================================================= */

.logistics-service-modal-footer {
    margin-top: 40px;
    padding-top: 30px;

    border-top: 1px solid #e5e7eb;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logistics-service-modal-footer strong {
    display: block;
    color: var(--logistics-navy);
    margin-bottom: 5px;
}

.logistics-service-modal-footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}


/* Prevent background scrolling */

body.logistics-modal-open {
    overflow: hidden;
}

/* =========================================================
   SERVICE MODAL
========================================================= */

.logistics-service-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.logistics-service-modal.active {
    display: flex;
}

.logistics-service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.78);
    backdrop-filter: blur(7px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logistics-service-modal.active .logistics-service-modal-overlay {
    opacity: 1;
}

.logistics-service-modal-container {
    position: relative;
    z-index: 2;
    width: min(100%, 900px);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: all 0.35s ease;
}

.logistics-service-modal.active .logistics-service-modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.logistics-service-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f1f3f6;
    color: var(--logistics-navy);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.logistics-service-modal-close:hover {
    background: var(--logistics-orange);
    color: var(--white);
    transform: rotate(90deg);
}

.logistics-service-modal-content {
    padding: 50px;
}

.logistics-service-modal-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 55px;
    margin-bottom: 30px;
}

.logistics-service-modal-icon {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logistics-orange);
    color: var(--white);
    font-size: 27px;
}

.logistics-service-modal-eyebrow {
    display: block;
    color: var(--logistics-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 7px;
}

.logistics-service-modal-header h2 {
    color: var(--logistics-navy);
    font-size: 34px;
    line-height: 1.2;
    margin: 0;
}

.logistics-service-modal-description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.85;
    max-width: 780px;
    margin-bottom: 38px;
}

.logistics-service-modal-section {
    margin-bottom: 38px;
}

.logistics-modal-label {
    display: block;
    color: var(--logistics-navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.logistics-service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.logistics-service-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 15px;
    background: #f6f7f9;
    color: var(--text-dark);
    font-size: 13px;
    line-height: 1.5;
}

.logistics-service-feature i {
    color: var(--logistics-orange);
    margin-top: 2px;
}

.logistics-service-process {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 5px;
}

.logistics-process-step {
    flex: 1;
    min-width: 105px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.logistics-process-step span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logistics-navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.logistics-process-step strong {
    color: var(--logistics-navy);
    font-size: 12px;
    line-height: 1.4;
}

.logistics-process-line {
    flex: 0 0 25px;
    height: 1px;
    background: #d9dce3;
    margin-top: 17px;
}

.logistics-service-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 10px;
    padding: 25px 0 0;
    border-top: 1px solid #e6e8ed;
}

.logistics-service-modal-footer strong {
    display: block;
    color: var(--logistics-navy);
    font-size: 16px;
    margin-bottom: 4px;
}

.logistics-service-modal-footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}


/* =========================================================
   MODAL SCROLLBAR
========================================================= */

.logistics-service-modal-container::-webkit-scrollbar {
    width: 7px;
}

.logistics-service-modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.logistics-service-modal-container::-webkit-scrollbar-thumb {
    background: #c5c8cf;
    border-radius: 10px;
}

.logistics-service-modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--logistics-orange);
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .logistics-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logistics-service-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .logistics-services-grid {
        grid-template-columns: 1fr;
    }

    .services-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .logistics-service-modal {
        padding: 12px;
    }

    .logistics-service-modal-container {
        max-height: 94vh;
    }

    .logistics-service-modal-content {
        padding: 35px 22px;
    }

    .logistics-service-modal-header {
        gap: 15px;
        padding-right: 45px;
    }

    .logistics-service-modal-icon {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .logistics-service-modal-header h2 {
        font-size: 25px;
    }

    .logistics-service-features {
        grid-template-columns: 1fr;
    }

    .logistics-service-modal-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .logistics-service-modal-footer .logistics-btn {
        width: 100%;
    }

}

@media (max-width: 480px) {

    .logistics-service-card {
        padding: 28px 24px;
    }

    .logistics-service-modal-description {
        font-size: 14px;
    }

}
/* =========================================================
   CONTACT SECTION
========================================================= */

.logistics-contact {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(
            135deg,
            var(--logistics-navy-dark),
            var(--logistics-navy)
        );
    overflow: hidden;
}

.logistics-contact::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    right: -250px;
    top: -280px;
    background: rgba(252, 89, 0, 0.12);
}

.logistics-contact::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    left: -180px;
    bottom: -180px;
    background: rgba(255, 255, 255, 0.03);
}

.logistics-contact .container {
    position: relative;
    z-index: 2;
}

.logistics-contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 80px;
    align-items: center;
}

.contact-inner {
    max-width: 750px;
}

.contact-inner h2 {
    color: var(--white);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-inner h2 span {
    color: var(--logistics-orange);
}

.contact-inner > p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 35px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* Contact information */

.logistics-contact-info {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 45px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logistics-orange);
    color: var(--white);
    border-radius: 4px;
    font-size: 17px;
}

.contact-info-item span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--logistics-orange);
}


/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 991px) {

    .logistics-contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .logistics-contact-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-left: 0;
        padding-top: 20px;
    }

}


@media (max-width: 767px) {

    .logistics-contact {
        padding: 80px 0;
    }

    .contact-inner h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .contact-inner > p {
        font-size: 16px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-buttons .logistics-btn {
        width: 100%;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.logistics-footer {
    background: #111827;
    color: var(--white);
    padding: 75px 0 0;
}

.logistics-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
    gap: 55px;
    padding-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.footer-company > p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--logistics-orange);
    color: var(--white);
    transform: translateY(-3px);
}


/* Footer columns */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0;
}

.footer-column a:hover {
    color: var(--logistics-orange);
    padding-left: 4px;
}


/* Footer contact */

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    width: 18px;
    color: var(--logistics-orange);
    margin-top: 4px;
}


/* Bottom */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-bottom a:hover {
    color: var(--logistics-orange);
}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 991px) {

    .logistics-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

}

@media (max-width: 600px) {

    .logistics-footer {
        padding-top: 55px;
    }

    .logistics-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }

}

.back-to-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-main:hover {
    background: #fc5900;
    border-color: #fc5900;
    color: #ffffff !important;
}

.back-to-main i {
    font-size: 12px;
}

/* =========================================================
   ARABIC RTL LAYOUT
========================================================= */

html[dir="rtl"] .logistics-nav-menu {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .logistics-mobile-menu a:hover {
    padding-left: 5px;
    padding-right: 10px;
}

html[dir="rtl"] .logistics-mobile-menu .logistics-mobile-cta:hover {
    padding-left: 20px;
    padding-right: 20px;
}

html[dir="rtl"] .hero-scroll {
    right: auto;
    left: 50px;
    transform: rotate(-90deg);
    transform-origin: left center;
}

html[dir="rtl"] .visual-content {
    left: auto;
    right: 45px;
}

html[dir="rtl"] .about-visual-cards {
    left: auto;
    right: -45px;
}

html[dir="rtl"] .mini-card {
    border-left: none;
    border-right: 3px solid var(--logistics-orange);
}

html[dir="rtl"] .industry-item {
    align-items: flex-end;
    text-align: right;
}

html[dir="rtl"] .logistics-service-card::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .service-card-number,
html[dir="rtl"] .commitment-number,
html[dir="rtl"] .value-number {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .why-us-item:hover,
html[dir="rtl"] .support-item:hover {
    padding-left: 0;
    padding-right: 15px;
}

html[dir="rtl"] .standard-line {
    margin-left: auto;
    margin-right: 0;
}

html[dir="rtl"] .logistics-contact-info {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-right: 45px;
}

html[dir="rtl"] .logistics-service-modal-close {
    right: auto;
    left: 18px;
}

html[dir="rtl"] .logistics-service-modal-header {
    padding-right: 0;
    padding-left: 55px;
}

html[dir="rtl"] .metric-item {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

html[dir="rtl"] .metric-item:last-child {
    border-left: none;
}

html[dir="rtl"] .footer-column a:hover {
    padding-left: 0;
    padding-right: 4px;
}

@media (max-width: 991px) {

    html[dir="rtl"] .logistics-contact-info {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 0;
    }

    html[dir="rtl"] .logistics-service-modal-header {
        padding-left: 45px;
    }

}

@media (max-width: 767px) {

    html[dir="rtl"] .visual-content {
        right: 30px;
    }

    html[dir="rtl"] .about-visual-cards {
        right: 0;
    }

    html[dir="rtl"] .logistics-service-modal-header {
        padding-left: 45px;
    }

}

@media (max-width: 480px) {

    html[dir="rtl"] .visual-content {
        right: 25px;
    }

}
