:root {
    --navy: #0b1f3a;
    --navy-2: #12365f;
    --silver: #d9dee7;
    --silver-2: #eef1f5;
    --ink: #172033;
    --muted: #667085;
    --white: #ffffff;
    --accent: #28a5c7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 6vw;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--silver);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
    font-weight: 700;
}

.brand small,
.site-footer span,
.quick-links small {
    display: block;
    color: var(--muted);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.site-nav a {
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
    color: var(--accent);
}

.hero {
    min-height: 620px;
    display: flex;
    align-items: stretch;
    background: linear-gradient(90deg, rgba(11, 31, 58, 0.92), rgba(11, 31, 58, 0.48), rgba(11, 31, 58, 0.12)), url("../images/hero-logistics.png") center / cover no-repeat;
}

.hero-overlay {
    width: min(720px, 92vw);
    padding: 108px 6vw 88px;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: 0;
}

h2 {
    color: var(--navy);
    font-size: 1.65rem;
    line-height: 1.2;
}

h3 {
    color: var(--navy);
}

.hero p {
    max-width: 620px;
    font-size: 1.1rem;
}

.hero-actions,
.quick-links,
.feature-grid,
.service-grid,
.team-grid,
.split-section,
.contact-layout {
    display: grid;
    gap: 20px;
}

.hero-actions {
    grid-template-columns: repeat(2, max-content);
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

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

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 28px 6vw;
    background: var(--silver-2);
}

.quick-links a,
.feature-grid article,
.service-card,
.team-card,
.contact-panel,
.contact-details {
    border: 1px solid var(--silver);
    border-radius: 8px;
    background: var(--white);
}

.quick-links a {
    padding: 22px;
    text-decoration: none;
}

.icon {
    color: var(--accent);
    font-weight: 700;
}

.content-band,
.page-hero,
.timeline,
.service-grid,
.team-grid,
.contact-layout,
.split-section {
    padding: 64px 6vw;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

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

.feature-grid article,
.service-card,
.contact-panel,
.contact-details {
    padding: 26px;
}

.page-hero {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.page-hero h1,
.page-hero p {
    max-width: 840px;
}

.split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--silver-2);
}

.timeline ol {
    display: grid;
    gap: 14px;
    padding: 0;
    list-style: none;
}

.timeline li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--silver);
}

.timeline strong {
    color: var(--accent);
}

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

.service-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--navy);
    position: relative;
}

.service-icon::after {
    position: absolute;
    inset: 12px;
    border: 2px solid var(--white);
    border-radius: 4px;
    content: "";
}

.service-icon.truck::before,
.service-icon.location::before {
    position: absolute;
    right: 7px;
    bottom: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}

.service-icon.network::after {
    border-radius: 50%;
}

.service-icon.warehouse::after {
    border-top-width: 8px;
}

.text-link {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

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

.team-card {
    overflow: hidden;
}

.team-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--silver-2);
}

.team-card div {
    padding: 22px;
}

.role {
    color: var(--accent);
    font-weight: 700;
}

.contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    background: var(--silver-2);
}

label {
    display: block;
    margin: 14px 0 6px;
    color: var(--navy);
    font-weight: 700;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #c5ccd7;
    border-radius: 6px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.alert {
    display: block;
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 6px;
}

.alert.success {
    color: #135529;
    background: #e6f4ea;
}

.alert.error {
    color: #8a1f11;
    background: #fdecea;
}

.map-frame {
    overflow: hidden;
    min-height: 260px;
    border: 1px solid var(--silver);
    border-radius: 8px;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 6vw;
    color: var(--white);
    background: var(--navy);
}

.site-footer span {
    color: var(--silver);
}

@media (max-width: 920px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .quick-links,
    .feature-grid,
    .service-grid,
    .team-grid,
    .split-section,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 560px;
    }
}

@media (max-width: 560px) {
    .hero-actions {
        grid-template-columns: 1fr;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .timeline li {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.35rem;
    }
}
