/* Cargo Services — online public page */

.cargo-page {
    background: var(--bg-primary);
}

/* ── Section 1: Hero ── */
.cargo-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cargo-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/onlinesite/CargoSection1.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.cargo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 51, 0.38) 0%,
        rgba(0, 0, 51, 0.58) 50%,
        rgba(0, 0, 51, 0.75) 100%
    );
}

.cargo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 56px 20px 64px;
    max-width: 900px;
    margin: 0 auto;
}

.cargo-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cargo-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cargo-breadcrumb a:hover {
    color: var(--primary-light);
}

.cargo-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.45);
}

.cargo-breadcrumb .current {
    color: var(--primary-light);
}

.cargo-hero-title {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.2;
}

/* ── Section 2: Content ── */
.cargo-content-section {
    background: #fff;
    padding: 72px 0 88px;
}

.cargo-content-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.cargo-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 14px;
}

.cargo-heading {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color, #EF782C);
    margin: 0;
    line-height: 1.3;
}

.cargo-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cargo-split-content p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 20px;
}

.cargo-split-content p:last-child {
    margin-bottom: 0;
}

.cargo-split-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 51, 0.12);
}

.cargo-split-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.cargo-split-image:hover img {
    transform: scale(1.03);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cargo-split-row {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 640px;
    }

    .cargo-split-image {
        order: -1;
    }
}

@media (max-width: 575px) {
    .cargo-hero {
        min-height: 300px;
    }

    .cargo-hero-content {
        padding: 44px 16px 52px;
    }

    .cargo-content-section {
        padding: 52px 0 64px;
    }

    .cargo-content-header {
        margin-bottom: 36px;
    }
}
