/* =========================================================
   TRANSPORT PAGE
========================================================= */

.transport-page {
    background: #ffffff;
    color: #17352f;
}


/* =========================================================
   HERO
========================================================= */

.transport-hero {
    position: relative;
    min-height: 460px;
    height: 460px;
    overflow: hidden;
    color: #ffffff;
}

.transport-hero-media {
    position: absolute;
    inset: 0;
    display: block;
}

.transport-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.transport-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 38, 31, 0.82) 0%,
            rgba(8, 38, 31, 0.60) 42%,
            rgba(8, 38, 31, 0.20) 100%
        );
}

.transport-hero-container {
    width: min(1180px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   TRANSPORT BREADCRUMB
========================================================= */

.transport-breadcrumb {
    display: block;
    margin: 0 0 24px;
    padding: 0;
}

.transport-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.transport-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 0;
}

.transport-breadcrumb a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.transport-breadcrumb li > span {
    color: rgba(255, 255, 255, 0.60);
}

.transport-breadcrumb li:last-child span {
    color: #ffffff;
    font-weight: 600;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.transport-hero-content {
    width: 100%;
    max-width: 820px;
    padding: 120px 0 50px;
}

.transport-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
}

.transport-hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #ff6500;
}

.transport-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.transport-hero-content > p {
    max-width: 720px;
    margin: 19px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   CONTENT SECTION
========================================================= */

.transport-content-section {
    padding: 34px 0 90px;
    background: #f6f8f7;
}

.transport-container {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.transport-intro {
    position: relative;
    margin-bottom: 42px;
    padding: 42px 48px;
    background: #ffffff;
    border: 1px solid rgba(23, 53, 47, 0.06);
    border-radius: 24px;
    box-shadow:
        0 15px 40px rgba(23, 53, 47, 0.06),
        0 2px 8px rgba(23, 53, 47, 0.025);
}

.transport-intro > *:first-child {
    margin-top: 0;
}

.transport-intro > *:last-child {
    margin-bottom: 0;
}

.transport-intro h2 {
    position: relative;
    margin: 42px 0 16px;
    padding-left: 14px;
    color: #17352f;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.transport-intro h2:first-child {
    margin-top: 0;
}

.transport-intro h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 2px;
    height: calc(100% - 6px);
    min-height: 22px;
    border-radius: 999px;
    background: linear-gradient(
        to bottom,
        #01ff00 0%,
        #01ff00 50%,
        #ff6500 50%,
        #ff6500 100%
    );
}

.transport-intro h3 {
    margin: 28px 0 12px;
    color: #17352f;
    font-size: 22px;
    line-height: 1.3;
}

.transport-intro p {
    margin: 0 0 17px;
    color: #53635e;
    font-size: 16px;
    line-height: 1.85;
}

.transport-intro ul,
.transport-intro ol {
    margin: 0 0 20px;
    padding-left: 22px;
    color: #53635e;
}

.transport-intro li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* =========================================================
   TRANSPORT SECTION HEADING
========================================================= */

.transport-section-heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.transport-section-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #ff6500;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.transport-section-heading h2 {
    margin: 0;
    color: #17352f;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.transport-section-heading p {
    margin: 10px 0 0;
    color: #687873;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   TRANSPORT LIST
========================================================= */

.transport-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================================
   TRANSPORT CARD
========================================================= */

.transport-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(23, 53, 47, 0.07);
    border-radius: 22px;
    box-shadow:
        0 12px 32px rgba(23, 53, 47, 0.055),
        0 2px 7px rgba(23, 53, 47, 0.025);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.transport-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #01ff00 0%,
        #01ff00 48%,
        #ff6500 52%,
        #ff6500 100%
    );
    z-index: 3;
}


.transport-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 42px rgba(23, 53, 47, 0.10),
        0 4px 10px rgba(23, 53, 47, 0.035);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.transport-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #edf2ef;
}

.transport-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 60%,
            rgba(8, 38, 31, 0.10) 100%
        );
}

.transport-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.transport-card:hover .transport-card-image img {
    transform: scale(1.035);
}


/* =========================================================
   CARD BODY
========================================================= */

.transport-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px 27px 27px;
}

.transport-card-type {
    margin-bottom: 8px;
    color: #ff6500;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.transport-card h2 {
    margin: 0;
    color: #17352f;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.transport-capacity {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(1, 255, 0, 0.08);
    color: #31584e;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 650;
}

.transport-card-body > p {
    margin: 16px 0 0;
    color: #5b6b66;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.transport-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 24px;
}

.transport-price {
    min-width: 0;
}

.transport-price span {
    display: block;
    margin-bottom: 3px;
    color: #7a8984;
    font-size: 12px;
    line-height: 1.4;
}

.transport-price strong {
    display: block;
    color: #17352f;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.transport-card-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 19px;
    border-radius: 999px;
    background: #ff6500;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 750;
    box-shadow: 0 8px 18px rgba(255, 101, 0, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.transport-card-button:hover {
    transform: translateY(-2px);
    background: #e85b00;
    box-shadow: 0 11px 23px rgba(255, 101, 0, 0.24);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.transport-empty {
    padding: 60px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(23, 53, 47, 0.06);
    border-radius: 22px;
    box-shadow:
        0 12px 32px rgba(23, 53, 47, 0.05);
}

.transport-empty h2 {
    margin: 0 0 9px;
    color: #17352f;
    font-size: 24px;
}

.transport-empty p {
    margin: 0;
    color: #687873;
    font-size: 15px;
}


/* =========================================================
   CTA
========================================================= */

.transport-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 42px;
    padding: 36px 42px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #17352f 0%,
            #214a41 100%
        );
    box-shadow:
        0 18px 40px rgba(23, 53, 47, 0.12);
}

.transport-cta-content {
    max-width: 700px;
}

.transport-cta-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #ff8a3d;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.transport-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.transport-cta p {
    max-width: 650px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
}

.transport-cta-action {
    flex-shrink: 0;
}

.transport-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 0 23px;
    border-radius: 999px;
    background: #ff6500;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.transport-cta-button:hover {
    transform: translateY(-2px);
    background: #e85b00;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .transport-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .transport-card-image {
        aspect-ratio: 16 / 8.5;
    }

    .transport-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .transport-hero {
        min-height: 420px;
        height: 420px;
    }

    .transport-hero-container,
    .transport-container {
        width: min(100% - 32px, 680px);
    }

    .transport-hero-media img {
        object-position: center bottom;
    }

    .transport-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 38, 31, 0.80) 0%,
                rgba(8, 38, 31, 0.58) 100%
            );
    }

    .transport-hero-content {
        padding: 72px 0 30px;
    }

    .transport-breadcrumb {
        margin: 0 0 10px;
        padding-top:25px;
    }

    .transport-breadcrumb ol {
        font-size: 13px;
        gap: 7px;
    }

    .transport-breadcrumb li {
        gap: 7px;
    }

    .transport-hero-eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .transport-hero h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .transport-hero-content > p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.7;
    }

    .transport-content-section {
        padding: 28px 0 70px;
    }

    /* bagian bawah tetap seperti CSS kita sebelumnya */
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .transport-hero-container,
    .transport-container {
        width: min(100% - 24px, 680px);
    }
.transport-hero-content {
    padding: 68px 0 24px;
}

.transport-breadcrumb {
    margin-bottom: 18px;
}

    .transport-hero h1 {
        font-size: 33px;
    }

    .transport-hero-content > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .transport-content-section {
        padding: 24px 0 60px;
    }

    .transport-intro {
        padding: 26px 19px;
        border-radius: 16px;
    }

    .transport-intro h2 {
        font-size: 23px;
    }

    .transport-card {
        border-radius: 18px;
    }

    .transport-card-image {
        aspect-ratio: 16 / 10;
    }

    .transport-card-body {
        padding: 21px 19px 21px;
    }

    .transport-card h2 {
        font-size: 21px;
    }

    .transport-card-body > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .transport-card-footer {
        align-items: stretch;
        flex-direction: column;
        padding-top: 20px;
    }

    .transport-card-button {
        width: 100%;
    }

    .transport-cta {
        padding: 27px 20px;
        border-radius: 17px;
    }

    .transport-cta h2 {
        font-size: 23px;
    }

    .transport-cta p {
        font-size: 14px;
    }

    .transport-cta-button {
        width: 100%;
    }
    
    .transport-card-description {
        font-size: 14px;
        line-height: 1.7;
        -webkit-line-clamp: 3;
    }

}

.transport-card-description {
    display: -webkit-box;
    margin-top: 16px;
    overflow: hidden;
    color: #5b6b66;
    font-size: 15px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}