.hero-section-5 {
    position: relative;
    z-index: 1;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    animation: zoomFade 24s infinite linear;
}

/* Staggering the animations */
.hero-slide-item:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide-item:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide-item:nth-child(3) {
    animation-delay: 12s;
}

.hero-slide-item:nth-child(4) {
    animation-delay: 18s;
}

@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    2.08% {
        /* 0.5s / 24s */
        opacity: 1;
    }

    25% {
        /* 6s / 24s */
        opacity: 1;
        transform: scale(1.1);
    }

    29.17% {
        /* 7s / 24s - Fade out overlap */
        opacity: 0;
        transform: scale(1.15);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Feature Collage Styles */
.feature-collage-wrapper .collage-top img {
    max-height: 285px; /* Adjust as needed */
    object-fit: cover;
}

.feature-collage-wrapper .collage-bottom .collage-sub-img img {
    max-height: 105px;
    object-fit: cover;
}

.feature-collage-wrapper .collage-icon-box {
    background-color: #ffe6cf !important; /* Light orange bg match */
}

/* Why Choose Us Feature Cards */
/* Why Choose Us Feature Cards */
.varaz-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.varaz-feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fd8c0d; /* Orange BG for default cards */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(253, 140, 13, 0.4); /* Orange Glow */
    font-size: 32px;
    color: #fff; /* White icon */
    border: 1px solid #fd8c0d;
    transition: all 0.3s ease;
}

.varaz-feature-card .feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.varaz-feature-card .feature-desc {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Read More Button Styles */
.varaz-feature-card .read-more-btn {
    display: inline-block;
    color: #fd8c0d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Primary Card (Left) Initial State: Blue Background */
.varaz-feature-card.primary-card {
    background: #0047ab;
    border-color: #0047ab;
}
.varaz-feature-card.primary-card .feature-title,
.varaz-feature-card.primary-card .feature-desc {
    color: #fff;
}
.varaz-feature-card.primary-card .icon-wrapper {
    background: #fff;
    color: #0047ab;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* White/Blue Glow */
}
.varaz-feature-card.primary-card .read-more-btn {
    color: #fff; /* White text on blue bg */
}

/* Standard Card (White) Hover Effect -> Turns Blue */
.varaz-feature-card:hover {
    background: #0047ab;
    border-color: #0047ab;
    transform: translateY(-5px);
}
.varaz-feature-card:hover .feature-title,
.varaz-feature-card:hover .feature-desc {
    color: #fff;
}
.varaz-feature-card:hover .icon-wrapper {
    background: #fff;
    color: #0047ab;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Glow changes to White */
}
.varaz-feature-card:hover .read-more-btn {
    color: #fff;
}

/* Primary Card (Blue) Hover Effect -> Turns White (Inverse) */
.varaz-feature-card.primary-card:hover {
    background: #fff;
    border-color: #eee;
}
.varaz-feature-card.primary-card:hover .feature-title {
    color: #1a1a1a;
}
.varaz-feature-card.primary-card:hover .feature-desc {
    color: #666;
}
.varaz-feature-card.primary-card:hover .icon-wrapper {
    background: #fd8c0d;
    color: #fff;
    border-color: #fd8c0d;
    box-shadow: 0 0 20px rgba(253, 140, 13, 0.4); /* Glow changes to Orange */
}
.varaz-feature-card.primary-card:hover .read-more-btn {
    color: #fd8c0d; /* Orange text on white bg */
}

/* CTA Parallax Section */
.cta-banner-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* The Parallax Effect */
    border-radius: 20px;
    padding: 100px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-banner-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark Overlay */
    z-index: 1;
}

.cta-content {
    z-index: 2;
    color: #fff;
}

.cta-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

.cta-desc {
    color: #f0f0f0;
    font-size: 18px;
    line-height: 1.6;
}

.cta-whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-whatsapp-btn:hover {
    background-color: #1faf53;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* ================= CEK ONGKIR STYLES ================= */
.co-text-primary-red {
    color: #e30613;
}

.co-bg-primary-red {
    background-color: #e30613;
}

.co-text-primary-black {
    color: #111111;
}

/* Route Visual */
.co-route-visual {
    position: relative;
}

.co-route-point {
    background: #f5f5f5;
    z-index: 1;
    padding: 10px 15px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    min-width: 100px;
}

/* Service Card */
.co-service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.co-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.co-service-logo {
    background: #111111;
    color: #fff;
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
    line-height: 1.2;
}

.co-service-logo span {
    color: #e30613;
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.co-detail-item .label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    font-weight: 600;
}

.co-detail-item .value {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.co-btn-custom-red {
    background: #e30613;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    padding: 12px 30px;
    transition: 0.3s;
}

.co-btn-custom-red:hover {
    background: #ffffff;
    color: #e30613;
    border: 1px solid #e30613;
}

/* Input Focus Styling */
.co-form-control:focus {
    border-color: #e30613 !important;
}

.co-form-control:hover {
    border-color: #e30613 !important;
}

/* New Helper Classes */
.co-rounded-card {
    border-radius: 16px !important;
}

.co-route-svg-wrapper {
    top: 50px;
    width: 62%;
    height: 2px;
    z-index: 0;
    overflow: visible;
}

.co-route-point-wrapper {
    z-index: 1;
    background: transparent;
    box-shadow: none;
}

.co-route-point-visual {
    width: 50px;
    height: 50px;
}

.co-min-note {
    font-size: 10px;
}

@keyframes co-moveRight {
    0% {
        left: 0;
    }

    100% {
        left: 95%;
    }
}

.co-delivery-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-90%);
    /* Sits on top of the line */
    font-size: 24px;
    color: #e30613;
    animation: co-moveRight 6s linear infinite;
    z-index: 2;
}

/* ================= TRACKING STYLES ================= */

/* ================= SEARCH ================= */
.tr-search-box {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.tr-search-box h2 {
    margin: 0 0 8px;
    color: #e30613;
    font-size: 24px;
    font-weight: 700;
}

.tr-search-box p {
    font-size: 14px;
    color: #6b6b6b;
}

.tr-search-group {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.tr-search-group input {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.tr-search-group input:focus {
    outline: none;
    border-color: #e30613;
}

.tr-search-group button {
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    background: #e30613;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.tr-search-group button:hover {
    background: #b8050f;
}

/* ================= INFO ================= */
.tr-info-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.tr-info-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #eee;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Added shadow */
}

.tr-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e30613;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.tr-info-text span {
    font-size: 12px;
    color: #6b6b6b;
    display: block;
}

.tr-info-text strong {
    display: block;
    font-size: 15px;
    margin-top: 4px;
    color: #333;
}

/* ================= TIMELINE ================= */
.tr-timeline {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tr-timeline h3 {
    margin-bottom: 30px;
    color: #e30613;
    font-weight: 700;
}

.tr-timeline .tr-timeline-item {
    border-inline-start: 0;
    padding-inline-start: 0;
}

.tr-timeline-list {
    position: relative;
    margin-left: 20px;
}

.tr-timeline-list::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2ecc71, #e30613, #ccc);
    border-radius: 10px;
}

.tr-timeline-item {
    display: flex;
    gap: 22px;
    margin-bottom: 32px;
    position: relative;
}

.tr-timeline-item:last-child {
    margin-bottom: 0;
}

.tr-timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 16px;
    flex-shrink: 0;
}

.tr-timeline-item.done .tr-timeline-dot {
    background: #2ecc71;
}

.tr-timeline-item.active .tr-timeline-dot {
    background: #e30613;
    box-shadow: 0 0 0 8px rgba(227, 6, 19, 0.18);
}

.tr-timeline-item.pending .tr-timeline-dot {
    background: #bdbdbd;
}

.tr-timeline-card {
    background: #fafafa;
    border-radius: 18px;
    padding: 18px 22px;
    flex: 1;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Added shadow */
}

.tr-timeline-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.tr-timeline-card p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #6b6b6b;
}

.tr-timeline-meta {
    display: flex;
    gap: 18px;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}

.tr-timeline-meta i {
    color: #e30613;
}

@media (max-width: 576px) {
    .tr-search-group {
        flex-direction: column;
    }
}
