/* Modern Glassmorphism Styling - Orange Theme for Logistics */
.hero-logistics {
    position: relative;
    padding: 180px 0 120px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logistics::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85) 0%, rgba(255, 107, 0, 0.5) 100%);
}
.hero-content-logistics {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.hero-content-logistics h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: white;
    line-height: 1.2;
}
.hero-content-logistics p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

/* Tracking Card */
.tracking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 30px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-width: 950px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    transform: translateY(60px);
}

.tracking-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: #666;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 1.3rem;
}

.tab-btn.active {
    color: #ff6b00;
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff6b00;
    border-radius: 4px;
}

/* Tab Contents */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Inputs */
.input-group-modern {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 5px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}
.input-group-modern:focus-within {
    border-color: #ff6b00;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
    background: #fff;
}
.input-modern {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
    color: #333;
}
.btn-modern {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-modern:hover {
    background: #e65c00;
    transform: scale(1.02);
    color: white;
}

/* Cek Tarif Form */
.cek-tarif-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media(min-width: 900px) {
    .cek-tarif-form {
        grid-template-columns: 1fr 1fr 150px auto;
        align-items: center;
    }
}
.form-group-modern {
    position: relative;
}
.form-group-modern i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.2rem;
}
.form-group-modern input {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 18px 20px 18px 50px;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
}
.form-group-modern input:focus {
    outline: none;
    border-color: #ff6b00;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}
.weight-input input {
    padding-right: 45px;
    padding-left: 45px;
}
.weight-suffix {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-weight: 600;
}

@media(max-width: 768px) {
    .hero-content-logistics h1 { font-size: 2.2rem; }
    .tracking-tabs { flex-direction: column; }
    .tab-btn.active::after { display: none; }
    .tab-btn { justify-content: center; background: #f8f9fa; border-radius: 10px; }
    .tab-btn.active { background: #ff6b00; color: #fff; }
    .input-group-modern { flex-direction: column; border: none; background: transparent; padding: 0; }
    .input-modern { background: #f8f9fa; border-radius: 15px; border: 1px solid #e0e0e0; width: 100%; margin-bottom: 10px; }
    .btn-modern { width: 100%; justify-content: center; }
}

/* Cek Ongkir Page Styles */
.ongkir-page-wrapper {
    padding: 150px 0 100px;
    background-color: #fafbfc;
    min-height: 100vh;
}
.ongkir-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b1c3d;
    margin-bottom: 5px;
}
.ongkir-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.ongkir-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 650px;
    margin: 0 auto;
}

.ongkir-route-inputs {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    position: relative;
    padding: 5px 0;
}
.route-line-indicator {
    position: absolute;
    left: 29px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    border-left: 2px dotted #aaa;
    z-index: 1;
}

.ongkir-input-row {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
    background: transparent;
}
.ongkir-input-row i.fa-location-dot {
    color: #000;
}
.ongkir-input-row i.fa-circle-dot {
    color: #0b1c3d;
}
.ongkir-input-row i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.ongkir-input-row input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.1rem;
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
}
.ongkir-input-row input::placeholder {
    color: #bbb;
    text-transform: none;
}
.border-divider {
    border-bottom: 1px solid #f0f0f0;
    margin: 0 20px;
}

.ongkir-weight-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 5px;
    background: #fff;
    max-width: 650px;
    margin: 0 auto;
}
.ongkir-weight-input i {
    font-size: 1.1rem;
    width: 40px;
    text-align: center;
    color: #e63946;
}
.ongkir-weight-input input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.1rem;
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
}
.ongkir-weight-suffix {
    background: #e9ecef;
    padding: 15px 25px;
    border-radius: 0 13px 13px 0;
    font-weight: 600;
    color: #555;
}

.ongkir-btn-submit {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}
.ongkir-btn-submit:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,57,70,0.2);
    color: #fff;
}

.ongkir-summary-card {
    background: #fafafc;
    border-radius: 15px;
    padding: 25px 35px;
    max-width: 650px;
    margin: 0 auto;
}
.ongkir-summary-card table {
    width: 100%;
}
.ongkir-summary-card td {
    padding: 6px 0;
    font-size: 1.05rem;
    color: #333;
}
.ongkir-summary-card td:first-child {
    font-weight: 700;
    width: 100px;
}

.ongkir-table-container {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
}
.ongkir-table {
    width: 100%;
    border-collapse: collapse;
}
.ongkir-table th {
    background: #f1f3f5;
    padding: 15px 20px;
    text-align: left;
    color: #555;
    font-weight: 700;
    border-bottom: 2px solid #e0e0e0;
    font-size: 0.95rem;
}
.ongkir-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
}
.ongkir-table tr:last-child td {
    border-bottom: none;
}

/* --- Cek Ongkir Specific Appended Classes --- */
.btn-outline-orange {
    border: 2px solid #ff6b00 !important;
    color: #ff6b00 !important;
    transition: all 0.3s ease;
}
.btn-outline-orange:hover {
    background-color: #ff6b00 !important;
    color: #fff !important;
}
.bg-orange-custom { background-color: #ff6b00 !important; color: white !important; }
.text-orange-custom { color: #ff6b00 !important; }
.text-dark-blue-custom { color: #0b1c3d !important; }

/* Sizing Helpers */
.w-40px { width: 40px !important; }
.w-60px { width: 60px !important; }

/* Custom Layout Util */
.ongkir-wrapper-spacing { padding: 150px 0 100px !important; }
.timeline-dashed-line {
    left: 33px; 
    top: 25%; 
    z-index: 0; 
    border-color: #dee2e6 !important; 
    border-width: 2px !important; 
    border-style: dashed !important;
}
.fs-summary { font-size: 1.05rem !important; }
.bg-fafafc { background-color: #fafafc !important; }
