/* =====================
   GLOBAL RESPONSIVE FIX
===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================
   BRADCAM / PAGE HEADER
===================== */
.bradcam_area {
    background-image: url('../img/banner/bradcam.png');
    background-size: cover;
    background-position: center center;
    padding: 115px 0;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    width: 100%;
    overflow: hidden;
}

.bradcam_area::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #001D38;
    opacity: .8;
    z-index: -1;
    content: '';
}

.bradcam_area h3 {
    font-size: 48px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.2;
    word-break: break-word;
}

.bradcam_area p {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 0;
    line-height: 1.7;
    word-break: break-word;
}

.bradcam_area p a {
    color: #fff;
}

/* =====================
   TRACKING SECTION
===================== */
.tracking_area {
    padding: 90px 0 100px;
    background: #fff;
    width: 100%;
    overflow: hidden;
}

.tracking_search_wrap {
    background: #F5FBFF;
    border-radius: 4px;
    padding: 50px 48px;
    margin-bottom: 60px;
    box-shadow: 0 4px 24px rgba(0, 29, 56, .07);
    width: 100%;
    max-width: 100%;
}

.tracking_search_wrap h4 {
    font-size: 22px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 6px;
    line-height: 1.35;
}

.tracking_search_wrap p {
    font-size: 15px;
    color: #727272;
    margin-bottom: 28px;
    line-height: 1.7;
}

.tracking_form {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.tracking_input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    height: 54px;
    border: 1.5px solid #d4e8d0;
    border-radius: 4px;
    padding: 0 20px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #001D38;
    background: #fff;
    transition: border-color .25s;
    outline: none;
}

.tracking_input::placeholder {
    color: #b0b8c1;
}

.tracking_input:focus {
    border-color: #528540;
}

.tracking_btn {
    flex: 0 0 auto;
    height: 54px;
    padding: 0 36px;
    background: #528540;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background .25s, transform .15s;
    white-space: nowrap;
}

.tracking_btn:hover {
    background: #3d6630;
}

.tracking_btn:active {
    transform: translateY(0);
}

.tracking_btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}

/* =====================
   RESULT PANEL
===================== */
.tracking_result {
    display: none;
    animation: fadeInUp .4s ease;
    width: 100%;
    max-width: 100%;
}

.tracking_result.visible {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   STATUS CARD
===================== */
.status_card {
    border: 1.5px solid #e0edd9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
}

.status_card_header {
    background: #528540;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.status_card_header.delivered {
    background: #528540;
}

.status_card_header.on_process {
    background: #001D38;
}

.status_card_header.pending {
    background: #7a8793;
}

.status_card_header.failed {
    background: #b42318;
}

.status_resi {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2px;
}

.status_resi_number {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.status_badge {
    background: #fff;
    color: #528540;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status_badge.on_process {
    color: #e0860a;
}

.status_badge.delivered {
    color: #528540;
}

.status_badge.pending {
    color: #596672;
}

.status_badge.failed {
    color: #b42318;
}

.status_card_body {
    background: #fff;
    padding: 28px 32px;
}

/* =====================
   INFO GRID
===================== */
.info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px 32px;
    margin-bottom: 0;
    width: 100%;
}

.info_item {
    min-width: 0;
}

.info_item label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #96a2ad;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.info_item p {
    font-size: 15px;
    font-weight: 500;
    color: #001D38;
    margin-bottom: 0;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* =====================
   ROUTE BOX
===================== */
.tracking_route_box {
    margin-top: 24px;
    padding: 20px 22px;
    border: 1.5px solid #e0edd9;
    border-radius: 6px;
    background: #F8FCF6;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(220px, 1.3fr) minmax(0, .85fr);
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.tracking_route_point {
    min-width: 0;
}

.tracking_route_point span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #96a2ad;
    margin-bottom: 3px;
    font-weight: 600;
    line-height: 1.4;
}

.tracking_route_point strong {
    display: block;
    font-size: 14px;
    color: #001D38;
    font-weight: 600;
    line-height: 22px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tracking_route_point.route_to {
    text-align: right;
}

.tracking_route_arrow {
    height: 26px;
    position: relative;
    min-width: 0;
}

.tracking_route_arrow::before {
    content: "";
    position: absolute;
    left: -18px;
    right: 14px;
    top: 50%;
    height: 2px;
    border-radius: 20px;
    background:
        repeating-linear-gradient(90deg, rgba(82, 133, 64, .45) 0, rgba(82, 133, 64, .45) 12px, transparent 12px, transparent 20px),
        linear-gradient(90deg, rgba(82, 133, 64, .18), #528540);
    transform: translateY(-50%);
}

.tracking_route_arrow::after {
    content: "";
    position: absolute;
    right: 1px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-top: 2px solid #528540;
    border-right: 2px solid #528540;
    transform: translateY(-50%) rotate(45deg);
}

/* =====================
   TIMELINE
===================== */
.timeline_wrap {
    border: 1.5px solid #e8eff2;
    border-radius: 6px;
    padding: 32px;
    background: #fff;
    width: 100%;
    max-width: 100%;
}

.timeline_wrap h5 {
    font-size: 17px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 28px;
    line-height: 1.4;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #dce7d6;
}

.timeline_item {
    display: flex;
    gap: 22px;
    position: relative;
    padding-bottom: 28px;
    width: 100%;
}

.timeline_item:last-child {
    padding-bottom: 0;
}

.timeline_dot {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c9dcc3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 2px;
}

.timeline_dot i {
    font-size: 13px;
    color: #c9dcc3;
}

.timeline_item.active .timeline_dot {
    background: #528540;
    border-color: #528540;
}

.timeline_item.active .timeline_dot i {
    color: #fff;
}

.timeline_item.failed .timeline_dot {
    background: #b42318;
    border-color: #b42318;
}

.timeline_item.failed .timeline_dot i {
    color: #fff;
}

.timeline_item.failed .timeline_content .tl_title {
    color: #b42318;
}

.timeline_content {
    flex: 1;
    min-width: 0;
}

.timeline_content .tl_title {
    font-size: 15px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 2px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.timeline_item:not(.active) .timeline_content .tl_title {
    color: #8a96a1;
}

.timeline_content .tl_desc {
    font-size: 14px;
    color: #727272;
    margin-bottom: 2px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.timeline_item:not(.active) .timeline_content .tl_desc {
    color: #b0bac3;
}

.timeline_content .tl_time {
    font-size: 12px;
    color: #a0acb5;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.timeline_location {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 5px 10px;
    border-radius: 100px;
    background: #F0F8EC;
    color: #528540;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* =====================
   POD CARD / THUMBNAIL
===================== */
.pod_card {
    width: 240px;
    max-width: 100%;
    margin-top: 14px;
    padding: 10px;
    background: #F8FCF6;
    border: 1px solid #d4e8d0;
    border-radius: 0;
    box-shadow: none;
}

.pod_card strong {
    display: block;
    color: #001D38;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.pod_card strong::before {
    display: none;
}

.pod_preview_btn {
    width: 100%;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin: 0;
    background: #fff;
    border: 1px solid #d4e8d0;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
}

.pod_preview_btn:hover {
    background: #F8FCF6;
    border-color: #528540;
    box-shadow: none;
    transform: none;
}

.pod_preview_btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.pod_preview_btn:hover img {
    transform: none;
}

.pod_actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.pod_action_btn {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #528540;
    border: 1px solid #528540;
    border-radius: 0;
    color: #fff !important;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: none;
    transition: all .2s ease;
    text-align: center;
    line-height: 1.4;
    padding: 8px 10px;
}

.pod_action_btn.secondary {
    background: #fff;
    color: #528540 !important;
}

.pod_action_btn:hover,
.pod_action_btn.secondary:hover {
    background: #446f34;
    border-color: #446f34;
    color: #fff !important;
}

/* =====================
   POD MODAL RESPONSIVE FINAL
===================== */
body.pod-preview-open {
    overflow: hidden;
}

.pod_modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.pod_modal.visible {
    display: flex;
}

.pod_modal_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 29, 56, .78);
    backdrop-filter: none;
}

.pod_modal_card {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: calc(100vw - 36px);
    max-height: calc(100dvh - 36px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #528540;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 29, 56, .25);
}

.pod_modal_header {
    flex: 0 0 auto;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #528540;
    color: #fff;
    border: 0;
    border-bottom: 0;
    outline: 0;
    box-shadow: none;
}

.pod_modal_title {
    min-width: 0;
    display: block;
}

.pod_modal_eyebrow {
    display: none;
}

.pod_modal_header strong {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.pod_modal_header button {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    padding: 0;
    background: #528540;
    border: 0;
    outline: 0;
    border-radius: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
}

.pod_modal_header button:hover {
    background: #446f34;
    color: #fff;
}

.pod_modal_body {
    flex: 1 1 auto;
    width: auto;
    max-width: calc(100vw - 36px);
    max-height: calc(100dvh - 94px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
    border: 0;
    overflow: hidden;
}

.pod_modal_image_wrap {
    width: auto;
    height: auto;
    max-width: calc(100vw - 36px);
    max-height: calc(100dvh - 94px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 0;
    border-radius: 0;
    overflow: hidden;
}

.pod_modal_body img,
.pod_modal_image_wrap img,
#podModalImage {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100vw - 36px);
    max-height: calc(100dvh - 94px);
    object-fit: contain;
    object-position: center center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* =====================
   EMPTY / ERROR STATES
===================== */
.tracking_notice {
    text-align: center;
    padding: 60px 20px;
    display: none;
    width: 100%;
}

.tracking_notice.visible {
    display: block;
}

.tracking_notice .notice_icon {
    width: 72px;
    height: 72px;
    background: #F5FBFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tracking_notice .notice_icon i {
    font-size: 30px;
    color: #528540;
}

.tracking_notice.error .notice_icon {
    background: #fff3f3;
}

.tracking_notice.error .notice_icon i {
    color: #d9534f;
}

.tracking_notice h5 {
    font-size: 18px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 8px;
    line-height: 1.4;
}

.tracking_notice p {
    font-size: 15px;
    color: #727272;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================
   SPINNER
===================== */
.tracking_spinner {
    text-align: center;
    padding: 50px 20px;
    display: none;
}

.tracking_spinner.visible {
    display: block;
}

.spinner_ring {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 4px solid #e0edd9;
    border-top-color: #528540;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================
   INFO CARDS BELOW
===================== */
.tracking_info_area {
    background: #F5FBFF;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.tracking_info_card {
    background: #fff;
    border-radius: 6px;
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s;
    width: 100%;
    max-width: 100%;
}

.tracking_info_card:hover {
    border-color: #528540;
    box-shadow: 0 8px 24px rgba(82, 133, 64, .12);
}

.tracking_info_card .icon {
    width: 60px;
    height: 60px;
    background: #f0f8ec;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.tracking_info_card .icon i {
    font-size: 24px;
    color: #528540;
}

.tracking_info_card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 10px;
    line-height: 1.4;
}

.tracking_info_card p {
    font-size: 14px;
    color: #727272;
    line-height: 26px;
    margin-bottom: 0;
}

/* =====================
   LOADER OVERLAY
===================== */
.loader_area {
    text-align: center;
    padding: 48px 0 32px;
}

/* =====================
   RESPONSIVE: DESKTOP MEDIUM
===================== */
@media (max-width: 1199px) {
    .tracking_route_box {
        grid-template-columns: minmax(0, .8fr) minmax(180px, 1fr) minmax(0, .8fr);
    }
}

/* =====================
   RESPONSIVE: TABLET BESAR
===================== */
@media (max-width: 991px) {
    .bradcam_area {
        padding: 100px 0;
    }

    .bradcam_area h3 {
        font-size: 42px;
    }

    .tracking_area {
        padding: 75px 0 85px;
    }

    .tracking_search_wrap {
        padding: 42px 34px;
    }

    .tracking_route_box {
        grid-template-columns: minmax(0, .8fr) minmax(160px, 1fr) minmax(0, .8fr);
        gap: 12px;
    }

    .pod_modal {
        padding: 14px;
    }

    .pod_modal_card {
        width: auto;
        max-width: calc(100vw - 28px);
        max-height: calc(100dvh - 28px);
    }

    .pod_modal_header {
        min-height: 54px;
        padding: 12px 14px;
    }

    .pod_modal_header strong {
        font-size: 15px;
    }

    .pod_modal_header button {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }

    .pod_modal_body,
    .pod_modal_image_wrap,
    .pod_modal_body img,
    .pod_modal_image_wrap img,
    #podModalImage {
        max-width: calc(100vw - 28px);
        max-height: calc(100dvh - 82px);
    }
}

/* =====================
   RESPONSIVE: TABLET / MOBILE
===================== */
@media (max-width: 768px) {
    .bradcam_area {
        padding: 90px 0;
    }

    .bradcam_area h3 {
        font-size: 36px;
    }

    .bradcam_area p {
        font-size: 15px;
    }

    .tracking_area {
        padding: 65px 0 75px;
    }

    .tracking_search_wrap {
        padding: 32px 20px;
        margin-bottom: 42px;
    }

    .tracking_search_wrap h4 {
        font-size: 20px;
    }

    .tracking_search_wrap p {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .status_card_header {
        padding: 16px 18px;
    }

    .status_card_body {
        padding: 20px 18px;
    }

    .status_resi_number {
        font-size: 16px;
    }

    .status_badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .info_grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 18px 20px;
    }

    .tracking_route_box {
        padding: 18px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .tracking_route_point.route_to {
        text-align: center;
    }

    .tracking_route_arrow {
        width: 32px;
        height: 58px;
        margin: 0 auto;
    }

    .tracking_route_arrow::before {
        left: 50%;
        right: auto;
        top: 6px;
        bottom: 18px;
        width: 2px;
        height: auto;
        background:
            repeating-linear-gradient(180deg, rgba(82, 133, 64, .45) 0, rgba(82, 133, 64, .45) 10px, transparent 10px, transparent 16px),
            linear-gradient(180deg, rgba(82, 133, 64, .18), #528540);
        transform: translateX(-50%);
    }

    .tracking_route_arrow::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 4px;
        transform: translateX(-50%) rotate(135deg);
    }

    .timeline_wrap {
        padding: 20px 18px;
    }

    .timeline_item {
        gap: 16px;
    }

    .pod_card {
        width: 100%;
        max-width: 100%;
    }

    .pod_preview_btn {
        height: 140px;
    }

    .tracking_info_area {
        padding: 60px 0;
    }

    .tracking_info_card {
        padding: 28px 22px;
    }
}

/* =====================
   RESPONSIVE: MOBILE
===================== */
@media (max-width: 575px) {
    .bradcam_area {
        padding: 82px 0;
    }

    .bradcam_area h3 {
        font-size: 32px;
    }

    .bradcam_area p {
        font-size: 14px;
    }

    .tracking_area {
        padding: 58px 0 68px;
    }

    .tracking_search_wrap {
        padding: 28px 16px;
        border-radius: 4px;
    }

    .tracking_form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .tracking_form input,
    .tracking_form button,
    .tracking_input,
    .tracking_btn {
        width: 100%;
    }

    .tracking_btn {
        padding: 0 20px;
    }

    .status_card_header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .status_badge {
        align-self: flex-start;
        white-space: normal;
        text-align: center;
    }

    .info_grid {
        grid-template-columns: 1fr;
    }

    .tracking_route_box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tracking_route_point.route_to {
        text-align: center;
    }

    .tracking_route_arrow {
        width: 32px;
        height: 58px;
        margin: 0 auto;
    }

    .tracking_route_arrow::before {
        left: 50%;
        right: auto;
        top: 6px;
        bottom: 18px;
        width: 2px;
        height: auto;
        background:
            repeating-linear-gradient(180deg, rgba(82, 133, 64, .45) 0, rgba(82, 133, 64, .45) 10px, transparent 10px, transparent 16px),
            linear-gradient(180deg, rgba(82, 133, 64, .18), #528540);
        transform: translateX(-50%);
    }

    .tracking_route_arrow::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 4px;
        transform: translateX(-50%) rotate(135deg);
    }

    .timeline_wrap h5 {
        margin-bottom: 22px;
    }

    .timeline_item {
        gap: 14px;
        padding-bottom: 24px;
    }

    .timeline_dot {
        width: 30px;
        height: 30px;
    }

    .timeline::before {
        left: 14px;
    }

    .timeline_content .tl_title {
        font-size: 14px;
    }

    .timeline_content .tl_desc {
        font-size: 13px;
    }

    .pod_actions {
        grid-template-columns: 1fr;
    }

    .pod_preview_btn {
        height: 130px;
    }

    .pod_modal {
        padding: 8px;
        align-items: center;
    }

    .pod_modal_card {
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
        max-height: calc(100dvh - 16px);
    }

    .pod_modal_header {
        width: 100%;
        min-height: 50px;
        padding: 10px 12px;
    }

    .pod_modal_header strong {
        font-size: 13px;
        white-space: normal;
    }

    .pod_modal_header button {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .pod_modal_body {
        width: 100%;
        height: calc(100dvh - 66px);
        max-width: 100%;
        max-height: calc(100dvh - 66px);
        padding: 0;
    }

    .pod_modal_image_wrap {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .pod_modal_body img,
    .pod_modal_image_wrap img,
    #podModalImage {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .tracking_notice {
        padding: 48px 16px;
    }
}

/* =====================
   RESPONSIVE: MOBILE KECIL
===================== */
@media (max-width: 480px) {
    .bradcam_area {
        padding: 80px 0;
    }

    .bradcam_area h3 {
        font-size: 30px;
    }

    .tracking_area {
        padding: 60px 0 70px;
    }

    .tracking_search_wrap {
        padding: 24px 14px;
    }

    .tracking_input,
    .tracking_btn {
        height: 50px;
        font-size: 14px;
    }

    .tracking_input {
        padding: 0 16px;
    }

    .status_card_header {
        padding: 15px;
    }

    .status_card_body {
        padding: 18px 15px;
    }

    .status_resi_number {
        font-size: 15px;
    }

    .timeline_wrap {
        padding: 18px 15px;
    }

    .tracking_info_area {
        padding: 50px 0;
    }

    .tracking_info_card {
        padding: 26px 18px;
    }

    .pod_modal_card {
        width: calc(100vw - 12px);
        max-width: calc(100vw - 12px);
        max-height: calc(100dvh - 12px);
    }

    .pod_modal_body {
        height: calc(100dvh - 62px);
        max-height: calc(100dvh - 62px);
    }
}

/* =====================
   RESPONSIVE: MOBILE SANGAT KECIL
===================== */
@media (max-width: 360px) {
    .bradcam_area h3 {
        font-size: 26px;
    }

    .tracking_search_wrap h4 {
        font-size: 18px;
    }

    .tracking_search_wrap p {
        font-size: 13px;
    }

    .status_badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .tracking_route_box {
        padding: 16px 12px;
    }

    .timeline_item {
        gap: 12px;
    }

    .timeline_content .tl_title {
        font-size: 13px;
    }

    .timeline_content .tl_desc {
        font-size: 12px;
    }
}

/* =====================
   RESPONSIVE: MOBILE LANDSCAPE / LAYAR PENDEK
===================== */
@media (max-height: 520px) and (orientation: landscape) {
    .pod_modal {
        padding: 8px;
    }

    .pod_modal_card {
        width: auto;
        max-width: calc(100vw - 16px);
        max-height: calc(100dvh - 16px);
    }

    .pod_modal_header {
        min-height: 44px;
        padding: 8px 12px;
    }

    .pod_modal_header strong {
        font-size: 13px;
    }

    .pod_modal_header button {
        width: 28px;
        height: 28px;
        font-size: 22px;
    }

    .pod_modal_body,
    .pod_modal_image_wrap {
        width: auto;
        height: auto;
        max-width: calc(100vw - 16px);
        max-height: calc(100dvh - 60px);
    }

    .pod_modal_body img,
    .pod_modal_image_wrap img,
    #podModalImage {
        width: auto;
        height: auto;
        max-width: calc(100vw - 16px);
        max-height: calc(100dvh - 60px);
        object-fit: contain;
    }
}

/* =====================
   FALLBACK BROWSER LAMA
===================== */
@supports not (height: 100dvh) {
    .pod_modal_card {
        max-height: calc(100vh - 36px);
    }

    .pod_modal_body,
    .pod_modal_image_wrap,
    .pod_modal_body img,
    .pod_modal_image_wrap img,
    #podModalImage {
        max-height: calc(100vh - 94px);
    }

    @media (max-width: 991px) {
        .pod_modal_card {
            max-height: calc(100vh - 28px);
        }

        .pod_modal_body,
        .pod_modal_image_wrap,
        .pod_modal_body img,
        .pod_modal_image_wrap img,
        #podModalImage {
            max-height: calc(100vh - 82px);
        }
    }

    @media (max-width: 575px) {
        .pod_modal_card {
            max-height: calc(100vh - 16px);
        }

        .pod_modal_body {
            height: calc(100vh - 66px);
            max-height: calc(100vh - 66px);
        }
    }

    @media (max-width: 480px) {
        .pod_modal_card {
            max-height: calc(100vh - 12px);
        }

        .pod_modal_body {
            height: calc(100vh - 62px);
            max-height: calc(100vh - 62px);
        }
    }
}