:root {
    --primary: #160b2e;
    --primary-2: #22124a;
    --secondary: #3a88dc;
    --white: #ffffff;
    --light: #f5f7fa;
    --surface: #f7f9fc;
    --text: #333333;
    --muted: #6f7b8e;
    --border: rgba(22, 11, 46, 0.08);
    --shadow: 0 24px 56px rgba(18, 25, 46, 0.12);
    --shadow-soft: 0 14px 32px rgba(18, 25, 46, 0.08);
    --shadow-card: 0 18px 34px rgba(18, 25, 46, 0.09);
    --container: min(1180px, calc(100% - 2rem));
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #edf2f7;
    overflow-x: hidden;
}

img,
svg,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section-pad {
    padding: 6.75rem 0;
}

.topbar {
    background: #6d7d92;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
}

.topbar-shell,
.topbar-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-shell {
    min-height: 38px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-2) 100%);
    box-shadow: 0 12px 28px rgba(16, 25, 45, 0.14);
}

.nav-shell {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.brand img {
    width: clamp(170px, 19vw, 255px);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.86rem;
    font-weight: 600;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #b7d7ff;
}

.header-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-contact {
    display: grid;
    gap: 0.12rem;
    padding-left: 0.85rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.header-contact span {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.64);
}

.header-contact strong {
    font-size: 0.8rem;
    font-weight: 600;
}

.header-cta,
.button,
.button-primary,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.82rem 1.18rem;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.button-primary {
    background: linear-gradient(135deg, var(--secondary), #69aef5);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(58, 136, 220, 0.24);
}

.button-secondary {
    background: var(--primary);
    color: var(--white);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: transparent;
}

.header-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--white);
}

.hero {
    background:
        linear-gradient(90deg, rgba(22, 11, 46, 0.96) 0%, rgba(22, 11, 46, 0.96) 40%, rgba(22, 11, 46, 0.72) 70%, rgba(22, 11, 46, 0.32) 88%, rgba(22, 11, 46, 0) 100%),
        url("assets/img/white-tanker-truck-races-along-highway-cloudy-daylight-fuel-logistics.jpg") right center/cover no-repeat;
    padding-bottom: 4rem;
}

.hero-stage {
    display: flex;
    align-items: center;
    width: min(1320px, calc(100% - 2rem));
    min-height: 610px;
    overflow: hidden;
    background: transparent;
}

.hero-copy {
    padding: 5.4rem 3rem 4rem 3.25rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    max-width: 840px;
    position: relative;
    z-index: 1;
}

.hero-image {
    display: none;
}

.hero-image-panel {
    display: none;
}

.hero-image-panel::after {
    display: none;
}

.hero-image-copy {
    position: absolute;
    left: 1.8rem;
    right: 1.8rem;
    bottom: 1.8rem;
    z-index: 1;
    color: var(--white);
}

.hero-image-copy span {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.82);
}

.hero-image-copy strong {
    display: block;
    max-width: 300px;
    font-size: 1.1rem;
    line-height: 1.45;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

.eyebrow.light {
    color: #b7d7ff;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--primary);
    line-height: 1.1;
}

.hero h1,
.hero p,
.showcase h2,
.showcase p,
.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
    color: var(--white);
}

h1 {
    font-size: clamp(2.65rem, 3.55vw, 4rem);
    margin-bottom: 1.15rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}

p {
    line-height: 1.8;
    color: rgba(51, 51, 51, 0.82);
}

.hero-text {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.hero-stats-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -2.7rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-stats-bar article {
    padding: 1.2rem 1.15rem;
    border-right: 1px solid rgba(22, 11, 46, 0.08);
}

.hero-stats-bar article:last-child {
    border-right: 0;
}

.hero-stats-bar strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
}

.hero-stats-bar strong::after {
    content: "%";
    font-size: 1rem;
    margin-left: 0.18rem;
}

.hero-stats-bar article:nth-child(2) strong::after,
.hero-stats-bar article:nth-child(4) strong::after {
    content: "+";
}

.hero-stats-bar span {
    color: var(--muted);
    font-size: 0.92rem;
}

.about,
.services,
.contact {
    background: var(--white);
}

.alt-surface {
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
}

.about-grid,
.coverage-grid,
.contact-grid,
.why-grid,
.mission-grid {
    display: grid;
    gap: 2.25rem;
    align-items: center;
}

.about-grid {
    align-items: stretch;
}

.about-grid,
.coverage-grid,
.contact-grid,
.why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-copy,
.coverage-copy {
    max-width: 540px;
}

.about-copy h2 {
    max-width: 500px;
}

.feature-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.feature-bullets span {
    padding: 0.72rem 0.95rem;
    background: var(--surface);
    border-left: 3px solid var(--secondary);
    box-shadow: var(--shadow-soft);
    font-size: 0.92rem;
}

.about-visual {
    position: relative;
    display: flex;
    padding: 1.25rem 0 1.8rem 3.2rem;
}

.about-photo {
    min-height: 430px;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(22, 11, 46, 0.04), rgba(22, 11, 46, 0.36)),
        url("assets/img/27197.jpg") center top/cover;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 205px;
    padding: 1.1rem 1rem;
    background: linear-gradient(180deg, var(--secondary) 0%, #2d5ea7 100%);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(58, 136, 220, 0.24);
}

.about-badge span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
    font-size: 0.84rem;
}

.section-heading {
    max-width: 720px;
}

.section-heading.centered {
    text-align: center;
    margin: 0 auto 2.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card,
.info-card,
.reason-grid article,
.contact-cards article,
.form-card,
.coverage-map,
.coverage-photo {
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card {
    position: relative;
    padding: 1.7rem 1.2rem 1.45rem;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card::before {
    display: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: rgba(58, 136, 220, 0.08);
    color: var(--secondary);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(58, 136, 220, 0.12);
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.service-card h3 {
    color: var(--white);
}

.service-card,
.info-card,
.reason-grid article,
.contact-cards article,
.form-card,
.coverage-map,
.coverage-photo {
    box-shadow: var(--shadow-card);
}

.showcase {
    padding: 5.25rem 0;
    background:
        linear-gradient(rgba(12, 8, 27, 0.72), rgba(12, 8, 27, 0.72)),
        url("assets/img/white-tanker-truck-races-along-highway-cloudy-daylight-fuel-logistics.jpg") center/cover;
}

.showcase-shell {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.mission-grid {
    grid-template-columns: 0.85fr 1.15fr;
}

.vision-grid,
.reason-grid,
.contact-cards,
.contact-bottom-row,
.form-row,
.footer-grid,
.footer-bottom,
.footer-links,
.social-links {
    display: grid;
    gap: 1rem;
}

.vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
    padding: 1.55rem;
    background: var(--primary);
    color: var(--white);
}

.card-label {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.5rem 0.8rem;
    background: rgba(58, 136, 220, 0.18);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason-grid article {
    padding: 1.05rem 1.1rem;
    background: var(--primary);
    color: var(--white);
    border-left: 4px solid var(--secondary);
    font-weight: 600;
}

.coverage-map {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
}

.coverage-photo {
    min-height: 430px;
    background:
        linear-gradient(180deg, rgba(22, 11, 46, 0.14), rgba(22, 11, 46, 0.34)),
        url("assets/img/Freight Forwarding 2.jpg") center/cover;
}

.coverage-map text {
    fill: var(--white);
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.cta-band {
    background: linear-gradient(135deg, var(--primary), #2b5298);
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-shell h2 {
    max-width: 520px;
}

.contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
}

.contact-cards article {
    padding: 1.3rem;
    background: var(--primary);
    color: var(--white);
    border-top: 4px solid var(--secondary);
}

.info-card p,
.contact-cards article p,
.contact-cards article a {
    color: rgba(255, 255, 255, 0.8);
}

.info-card h3,
.contact-cards article h3 {
    color: var(--white);
}

.contact-forms,
.enquiry-form,
.callback-form {
    display: grid;
    gap: 1rem;
}

.form-card {
    padding: 1.6rem;
}

.form-row,
.contact-bottom-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

input,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(22, 11, 46, 0.12);
    background: #fbfdff;
    color: var(--text);
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(58, 136, 220, 0.16);
    border-color: var(--secondary);
}

.map-embed {
    min-height: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-embed iframe {
    width: 100%;
    min-height: 320px;
    height: 100%;
    border: 0;
}

.site-footer {
    padding: 4rem 0 1.4rem;
    background: #0f071f;
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    grid-template-columns: 1.1fr 0.8fr 0.9fr 0.8fr;
    align-items: start;
}

.footer-brand img {
    width: min(280px, 100%);
}

.footer-text {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.64);
}

.footer-links {
    grid-template-columns: 1fr;
}

.site-footer h3,
.site-footer a,
.footer-bottom a {
    color: var(--white);
}

.social-links {
    grid-template-columns: repeat(3, 42px);
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 1.4rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    padding: 0.9rem 1.1rem;
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1200;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 {
    transition-delay: 0.12s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .nav-shell {
        grid-template-columns: auto 1fr;
    }

    .header-side {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .header-contact {
        display: none;
    }
}

@media (max-width: 980px) {
    .about-grid,
    .coverage-grid,
    .contact-grid,
    .why-grid,
    .mission-grid,
    .footer-grid,
    .cta-shell {
        grid-template-columns: 1fr;
    }

    .hero-stats-bar,
    .services-grid,
    .vision-grid,
    .reason-grid,
    .contact-cards,
    .form-row,
    .contact-bottom-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .hero-stage {
        min-height: unset;
    }

    .hero {
        background-position: 72% center;
    }

    .hero-copy {
        padding: 4.5rem 2rem 2rem;
    }

    .hero-image {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .topbar {
        display: none;
    }

    .nav-shell {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-nav,
    .header-side {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: var(--primary-2);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-stats-bar,
    .services-grid,
    .vision-grid,
    .reason-grid,
    .contact-cards,
    .form-row,
    .contact-bottom-row {
        grid-template-columns: 1fr;
    }

    .hero-stats-bar {
        margin-top: 0;
    }

    .service-card {
        text-align: left;
    }

    .service-icon {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-stats-bar article {
        border-right: 0;
        border-top: 1px solid rgba(22, 11, 46, 0.08);
    }

    .about-visual {
        padding-left: 0;
    }

    .about-badge {
        position: static;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 4.5rem 0;
    }

    .hero-copy {
        padding: 4rem 1.25rem 2rem;
    }

    .hero-actions,
    .cta-shell {
        display: grid;
    }

    .button,
    .button-primary,
    .button-secondary,
    .button-ghost,
    .header-cta {
        width: 100%;
    }
}