@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #061c42;
    --navy-2: #0b2b61;
    --blue: #1264d8;
    --sky: #eaf3ff;
    --ink: #13213b;
    --muted: #627086;
    --line: #e4eaf2;
    --white: #fff;
    --soft: #f6f8fb;
    --success: #0d8b65;
    --shadow: 0 18px 50px rgba(7,28,66,.12);
    --radius: 20px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Manrope',Arial,sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65
}

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

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

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

.topbar {
    background: var(--navy);
    color: #d9e5f9;
    font-size: 13px
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        align-items: center;
        padding: 8px 0
    }

.topbar-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.topbar a:hover {
    color: #fff
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10,35,75,.08)
}

.nav-wrap {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px
}

    .brand img {
        width: 118px;
        height: 74px;
        object-fit: contain
    }

.nav {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 14px;
    font-weight: 700
}

    .nav a {
        position: relative;
        padding: 32px 0
    }

        .nav a:after {
            content: '';
            position: absolute;
            left: 0;
            right: 100%;
            bottom: 24px;
            height: 2px;
            background: var(--blue);
            transition: .25s
        }

        .nav a:hover:after, .nav a.active:after {
            right: 0
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 12px;
    padding: 13px 20px;
    font: 700 14px/1 'Manrope',sans-serif;
    cursor: pointer;
    transition: .25s
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 8px 24px rgba(18,100,216,.25)
}

    .btn-primary:hover {
        transform: translateY(-2px);
        background: #0a55bc
    }

.btn-dark {
    background: var(--navy);
    color: #fff
}

    .btn-dark:hover {
        background: #0a2a62;
        transform: translateY(-2px)
    }

.btn-light {
    background: white;
    color: var(--navy);
    border: 1px solid var(--line)
}

    .btn-light:hover {
        border-color: #bfd2ed;
        transform: translateY(-2px)
    }

.menu-btn {
    display: none;
    border: 0;
    background: var(--soft);
    width: 44px;
    height: 44px;
    border-radius: 11px;
    font-size: 22px;
    color: var(--navy)
}

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #041430;
    color: white
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,rgba(3,17,42,.94) 0%,rgba(3,17,42,.82) 42%,rgba(3,17,42,.46) 69%,rgba(3,17,42,.22) 100%)
}

.hero:after {
    content: '';
    position: absolute;
    z-index: 1;
    inset: auto -80px -180px auto;
    width: 440px;
    height: 440px;
    border: 85px solid rgba(255,255,255,.07);
    border-radius: 50%
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px,100%);
    padding: 72px 0 86px
}

.hero-brand-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
    padding: 10px 16px 10px 10px;
    width: max-content;
    max-width: 100%;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(9px);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.18)
}

.hero-logo-wrap {
    width: 88px;
    height: 72px;
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden
}

    .hero-logo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

.hero-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0
}

.hero-company-name {
    font-size: clamp(18px,2vw,25px);
    font-weight: 800;
    letter-spacing: .01em;
    color: #fff;
    line-height: 1.15
}

.hero-company-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #bcd8ff
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 800;
    color: #9ec8ff
}

    .eyebrow:before {
        content: '';
        width: 28px;
        height: 2px;
        background: currentColor
    }

.hero h1 {
    font-size: clamp(43px,6vw,76px);
    line-height: 1.03;
    letter-spacing: -.045em;
    margin: 20px 0 22px;
    max-width: 850px
}

.hero p {
    font-size: 18px;
    color: #dce8fa;
    max-width: 670px;
    margin: 0 0 34px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero .btn-light {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.24);
    color: #fff
}

.hero-proof {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    margin-top: 48px;
    color: #dce8fa;
    font-size: 13px
}

    .hero-proof strong {
        display: block;
        font-size: 23px;
        color: white
    }

.section {
    padding: 90px 0
}

.section-sm {
    padding: 65px 0
}

.section-soft {
    background: var(--soft)
}

.section-navy {
    background: var(--navy);
    color: #fff
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px
}

    .section-head.center {
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }

    .section-head h2 {
        font-size: clamp(34px,4vw,52px);
        line-height: 1.08;
        letter-spacing: -.035em;
        margin: 12px 0 15px;
        color: var(--navy)
    }

.section-navy .section-head h2 {
    color: #fff
}

.section-head p {
    color: var(--muted);
    margin: 0
}

.section-navy .section-head p {
    color: #c8d6ea
}

.grid {
    display: grid;
    gap: 24px
}

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

.grid-3 {
    grid-template-columns: repeat(3,1fr)
}

.grid-4 {
    grid-template-columns: repeat(4,1fr)
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 7px 24px rgba(8,30,68,.05);
    transition: .3s
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: #cfe0f6
    }

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sky);
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 22px
}

.card h3 {
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 10px;
    color: var(--navy)
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.card .link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 20px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800
}

.split {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 70px
}

    .split.reverse {
        grid-template-columns: .96fr 1.04fr
    }

.media-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: var(--shadow);
    background: linear-gradient(rgba(7,29,64,.1),rgba(7,29,64,.1)),url('../img/container-truck.png') center/cover no-repeat
}

    .media-card.warehouse {
        background-image: linear-gradient(rgba(7,29,64,.08),rgba(7,29,64,.08)),url('../img/warehouse.jpg')
    }

.floating-stat {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: var(--shadow);
    max-width: 250px
}

    .floating-stat strong {
        font-size: 31px;
        color: var(--navy);
        display: block
    }

    .floating-stat span {
        color: var(--muted);
        font-size: 13px
    }

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 13px
}

    .check-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: var(--ink)
    }

        .check-list li:before {
            content: '✓';
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #e7f7f1;
            color: var(--success);
            font-weight: 900;
            flex: 0 0 24px
        }

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: #dbe4f2;
    border-radius: 20px;
    overflow: hidden
}

.stat {
    background: #fff;
    padding: 30px;
    text-align: center
}

    .stat strong {
        font-size: 38px;
        line-height: 1;
        display: block;
        color: var(--navy)
    }

    .stat span {
        font-size: 13px;
        color: var(--muted)
    }

.service-feature {
    border-radius: 24px;
    overflow: hidden;
    min-height: 350px;
    position: relative;
    background: #091e43;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background-position: center;
    background-size: cover
}

    .service-feature:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(3,18,42,.96),rgba(3,18,42,.12))
    }

    .service-feature > * {
        position: relative;
        z-index: 1
    }

    .service-feature h3 {
        font-size: 25px;
        margin: 0 0 8px
    }

    .service-feature p {
        margin: 0;
        color: #dbe7f7;
        font-size: 14px
    }

.feature-1 {
    background-image: url('../img/truck-australia.png')
}

.feature-2 {
    background-image: url('../img/container-truck.png')
}

.feature-3 {
    background-image: url('../img/warehouse.jpg')
}

.cta {
    background: linear-gradient(105deg,#0c55b8,#06306e);
    color: #fff;
    border-radius: 28px;
    padding: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    position: relative
}

    .cta:after {
        content: '';
        position: absolute;
        width: 260px;
        height: 260px;
        border: 55px solid rgba(255,255,255,.08);
        border-radius: 50%;
        right: -60px;
        top: -80px
    }

    .cta h2 {
        font-size: 36px;
        line-height: 1.1;
        margin: 0 0 12px;
        max-width: 650px
    }

    .cta p {
        color: #d9e9ff;
        margin: 0
    }

    .cta .btn {
        position: relative;
        z-index: 1;
        flex: 0 0 auto
    }

.page-hero {
    padding: 105px 0 85px;
    background: linear-gradient(105deg,rgba(3,20,49,.97),rgba(6,40,89,.8)),url('../img/container-truck.png') center/cover;
    color: #fff
}

    .page-hero h1 {
        font-size: clamp(42px,6vw,66px);
        line-height: 1.05;
        margin: 13px 0 15px;
        letter-spacing: -.04em
    }

    .page-hero p {
        max-width: 680px;
        color: #d5e4f8;
        font-size: 17px
    }

.breadcrumbs {
    font-size: 13px;
    color: #a9c4e9
}

    .breadcrumbs a {
        color: #fff
    }

.process {
    counter-reset: step
}

    .process .card {
        position: relative;
        padding-top: 76px
    }

        .process .card:before {
            counter-increment: step;
            content: '0' counter(step);
            position: absolute;
            top: 24px;
            left: 28px;
            font-weight: 900;
            font-size: 30px;
            color: #cfe0f6
        }

.band {
    background: #eaf3ff;
    border-top: 1px solid #d6e7fb;
    border-bottom: 1px solid #d6e7fb
}

.logo-watermark {
    opacity: .09;
    width: 280px;
    filter: grayscale(1)
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    display: block;
    margin-bottom: 7px
}

.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid #d7e0eb;
    border-radius: 11px;
    padding: 13px 14px;
    font: 500 14px 'Manrope',sans-serif;
    outline: none;
    background: #fff
}

    .field input:focus, .field select:focus, .field textarea:focus {
        border-color: #7ba9e9;
        box-shadow: 0 0 0 3px rgba(18,100,216,.09)
    }

.field textarea {
    min-height: 135px;
    resize: vertical
}

.helper {
    font-size: 12px;
    color: var(--muted)
}

.contact-list {
    display: grid;
    gap: 18px
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

    .contact-item .icon-box {
        margin: 0;
        flex: 0 0 50px
    }

    .contact-item h4 {
        margin: 0 0 3px;
        color: var(--navy)
    }

    .contact-item p {
        margin: 0;
        color: var(--muted)
    }

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 390px
}

    .map-wrap iframe {
        width: 100%;
        height: 390px;
        border: 0
    }

.job-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff
}

    .job-card h3 {
        margin: 0 0 5px;
        color: var(--navy)
    }

.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted)
}

.notice {
    padding: 18px 20px;
    border-radius: 14px;
    background: #f4f8fd;
    border-left: 4px solid var(--blue);
    color: #43536a;
    font-size: 14px
}

.prose {
    max-width: 880px
}

    .prose h2 {
        color: var(--navy);
        margin-top: 36px
    }

    .prose h3 {
        color: var(--navy);
        margin-top: 28px
    }

    .prose p, .prose li {
        color: #4d5e75
    }

.site-footer {
    background: #031634;
    color: #b7c9df;
    padding: 70px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .8fr .9fr 1.2fr;
    gap: 48px
}

.footer-logo {
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    width: 150px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 22px
}

.site-footer h4 {
    color: #fff;
    margin: 0 0 16px
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
    font-size: 14px
}

.site-footer a:hover {
    color: #fff
}

.footer-note {
    font-size: 14px;
    max-width: 340px
}

.footer-bottom {
    margin-top: 55px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px
}

.socials {
    display: flex;
    gap: 8px
}

    .socials a {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 10px;
        display: grid;
        place-items: center
    }

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #092655;
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 2000;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: .3s
}

    .toast.show {
        transform: none;
        opacity: 1
    }

@media(prefers-reduced-motion:reduce) {
    .hero-bg-video {
        display: none
    }

    .hero {
        background: linear-gradient(100deg,rgba(4,20,48,.97) 0%,rgba(4,20,48,.82) 48%,rgba(4,20,48,.24) 100%),url('../img/truck-australia.png') center/cover no-repeat
    }
}

@media(max-width:980px) {
    .menu-btn {
        display: flex
    }

    .nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 88px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px
    }

        .nav.open {
            display: flex
        }

        .nav a {
            padding: 14px 15px
        }

            .nav a:after {
                display: none
            }

    .header-actions .btn-light {
        display: none
    }

    .grid-4 {
        grid-template-columns: repeat(2,1fr)
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr)
    }

    .split, .split.reverse {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .media-card {
        min-height: 420px
    }

    .stats {
        grid-template-columns: repeat(2,1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:680px) {
    .container {
        width: min(100% - 28px,1180px)
    }

    .topbar .container {
        justify-content: center
    }

    .topbar-links span:nth-child(2) {
        display: none
    }

    .nav-wrap {
        height: 76px
    }

    .brand img {
        width: 210px;
        height: 62px
    }

    .nav {
        top: 76px
    }

    .header-actions .btn-primary {
        display: none
    }

    .hero {
        min-height: 660px
    }

    .hero-content {
        padding: 54px 0 64px
    }

    .hero-brand-lockup {
        gap: 12px;
        margin-bottom: 22px;
        padding: 8px 12px 8px 8px
    }

    .hero-logo-wrap {
        width: 70px;
        height: 58px
    }

    .hero-company-tagline {
        font-size: 9px;
        letter-spacing: .09em
    }

    .hero h1 {
        font-size: 43px
    }

    .hero p {
        font-size: 16px
    }

    .hero-proof {
        gap: 20px
    }

    .section {
        padding: 66px 0
    }

    .section-sm {
        padding: 50px 0
    }

    .section-head h2 {
        font-size: 36px
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr
    }

    .cta {
        padding: 36px 28px;
        display: block
    }

        .cta h2 {
            font-size: 31px
        }

        .cta .btn {
            margin-top: 24px
        }

    .form-grid {
        grid-template-columns: 1fr
    }

    .field.full {
        grid-column: auto
    }

    .job-card {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .footer-bottom {
        flex-direction: column
    }

    .page-hero {
        padding: 76px 0 64px
    }
}


/* Interface icons */
.icon-sprite {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none
}

.ui-icon, .menu-icon {
    width: 17px;
    height: 17px;
    display: inline-block;
    vertical-align: -.18em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round
}

.topbar-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

    .topbar-icon-link .ui-icon {
        width: 14px;
        height: 14px;
        color: #9ec8ff
    }

.nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap
}

    .nav a .ui-icon {
        width: 15px;
        height: 15px;
        color: #47719f;
        transition: .25s
    }

    .nav a:hover .ui-icon, .nav a.active .ui-icon {
        color: var(--blue)
    }

.btn .ui-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2.1
}

.menu-btn {
    align-items: center;
    justify-content: center
}

    .menu-btn .menu-icon {
        width: 23px;
        height: 23px;
        stroke-width: 2.2
    }

.icon-box .ui-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.9
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px
}

.footer-contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0
}

.footer-contact-list .ui-icon {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    color: #8fb8ec;
    flex: 0 0 auto
}

.footer-contact-list span {
    min-width: 0;
    overflow-wrap: anywhere
}

.footer-address {
    align-items: flex-start
}

@media(min-width:981px) {
    .nav {
        gap: 17px;
        font-size: 13px
    }

    .nav-wrap {
        gap: 18px
    }

    .brand {
        min-width: 125px
    }

        .brand img {
            width: 250px
        }

    .header-actions .btn {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px
    }
}
