.gjict-search-card{

    background:#ffffff;

    border-radius:12px;

    padding:30px;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

    margin-bottom:30px;

}

.gjict-search-card h2{

    margin-top:0;

    margin-bottom:10px;

}

.gjict-search-card p{

    color:#666;

    margin-bottom:20px;

}

.gjict-search-box input{

    border:1px solid #ddd;

    border-radius:6px;

}

.gjict-search-box button{

    background:#00008B;

    color:#fff;

    border:none;

    border-radius:6px;

    font-weight:600;

    cursor:pointer;

}

.gjict-search-box{
    display:flex;
    gap:10px;
    margin-bottom:25px;
}

.gjict-search-box input{
    flex:1;
    padding:12px;
}

.gjict-search-box button{
    padding:12px 20px;
}

.gjict-info-card{
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border:1px solid #ddd;
}

.gjict-event{

    position:relative;

    padding-left:55px;

    padding-bottom:35px;

    border-left:3px solid #e5e7eb;

    margin-left:20px;

}

.gjict-event:last-child{

    border-left:none;

}

.gjict-event:before{

    content:'';

    width:18px;

    height:18px;

    border-radius:50%;

    background:#d1d5db;

    position:absolute;

    left:-11px;

    top:5px;

}

.gjict-current:before{

    background:#f97316;

    box-shadow:
    0 0 0 6px rgba(249,115,22,.15);

}

.gjict-delivered:before{

    background:#16a34a;

    box-shadow:
    0 0 0 6px rgba(22,163,74,.15);

}

.gjict-status{

    font-size:20px;

    font-weight:700;

    color:#111827;

    margin-bottom:8px;

}

.gjict-event-remarks{

    font-size:16px;

    font-weight:700;

    color:#475569;

    margin-top:10px;

    margin-bottom:10px;

}

.gjict-current{
    border-left:4px solid #ffb300;
    background:#fff8e1;
    animation:pulse 1.5s infinite;
}

.gjict-delivered{
    animation:greenpulse 1.5s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(255,179,0,.7);
    }

    70%{
        box-shadow:0 0 0 12px rgba(255,179,0,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(255,179,0,0);
    }

}

@keyframes greenpulse{

    0%{
        box-shadow:0 0 0 0 rgba(40,167,69,.7);
    }

    70%{
        box-shadow:0 0 0 12px rgba(40,167,69,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(40,167,69,0);
    }

}

@media(max-width:768px){

    .gjict-search-box{
        flex-direction:column;
    }

}


.gjict-accordion details{

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:8px;

    overflow:hidden;

}

.gjict-accordion summary{

    background:#f8f8f8;

    padding:15px;

    cursor:pointer;

    font-weight:600;

}

.gjict-history-accordion{

    margin-bottom:20px;

}

.gjict-history-accordion summary{

    background:#f8f8f8;

    padding:15px;

    font-weight:600;

    cursor:pointer;

    border-bottom:1px solid #ddd;

}

.gjict-history-accordion[open] summary{

    border-bottom:1px solid #ddd;

}

/* ======================================
   ACCORDION
====================================== */

.gjict-accordion-item{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    margin-bottom:25px;

    box-shadow:
    0 2px 15px rgba(0,0,0,.05);

    border:none;

}

.gjict-accordion-header{

    padding:28px;

    font-size:20px;

    font-weight:700;

    background:#fff;

}

.gjict-accordion-header{

    padding:15px 20px;

    cursor:pointer;

    background:#f8f8f8;

    font-weight:600;

    position:relative;

}

.gjict-accordion-header:after{

    content:'+';

    position:absolute;

    right:25px;

    top:50%;

    transform:translateY(-50%);

    font-size:26px;

    font-weight:700;

    transition:.3s;

}

.gjict-accordion-item.active
.gjict-accordion-header:after{

    content:'−';

}

.gjict-accordion-content{

    padding:20px;

    display:block;

}


.gjict-branding{

    text-align:center;

    margin-bottom:25px;

}

.gjict-logo{

    max-width:120px;

    height:auto;

    margin-bottom:10px;

}

.gjict-event-remarks{

    font-weight:700;

    margin-top:8px;

    margin-bottom:8px;

    color:#222;

}

.gjict-tracking-header{

    background:#ffffff;

    border-radius:16px;

    padding:35px;

    display:flex;

    align-items:center;

    gap:30px;

    box-shadow:
    0 2px 15px rgba(0,0,0,.05);

    margin-bottom:25px;

}

.gjict-logo{

    width:70px;

    height:auto;

}

.gjict-branding-right h2{

    margin:0;

    font-size:20px;

    font-weight:700;

    color:#0f172a;

}

.gjict-tracking-number{

    margin-top:15px;

    font-size:42px;

    font-weight:800;

    color:#0f172a;

    letter-spacing:1px;

}

.gjict-logo{

    max-width:80px;

    height:auto;

}

.gjict-tracking-number{

    font-size:15px;

    font-weight:700;

    color:#1e293b;

}

.gjict-current-status-card{

    background:#fff8e1;

    border-left:5px solid #ffb300;

    padding:15px;

    margin-bottom:20px;

    border-radius:8px;

}

.gjict-status-label{

    display:block;

    font-size:13px;

    color:#666;

}

.gjict-status-badge{

    font-size:18px;

    font-weight:700;

}

@media(max-width:768px){

    .gjict-tracking-header{

        flex-direction:column;

        text-align:center;

    }

    .gjict-logo{

        max-width:60px;

    }

    .gjict-tracking-number{

        font-size:12px;

        word-break:break-word;

    }

}

.gjict-route-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.gjict-route-card{

    background:#fafafa;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:25px;

}

.gjict-route-card strong{

    display:block;

    font-size:12px;

    color:#64748b;

    margin-bottom:8px;

}

.gjict-route-card span{

    font-size:14px;

    font-weight:600;

    color:#0f172a;

}

.gjict-route-card{

    background:#f8f9fa;

    padding:15px;

    border-radius:8px;

}

@media(max-width:768px){

    .gjict-route-grid{

        grid-template-columns:1fr;

    }

}


.gjict-result{

    max-width:1100px;
    margin:40px auto;
    padding:0 15px;

}

.gjict-event-date{

    color:#64748b;

    font-size:16px;

    margin-top:8px;

}


@media(max-width:768px){

    .gjict-tracking-header{

        flex-direction:column;

        text-align:center;

        padding:25px;

    }

    .gjict-logo{

        width:90px;

    }

    .gjict-branding-right h2{

        font-size:28px;

    }

    .gjict-tracking-number{

        font-size:14px;

        word-break:break-word;

    }

    .gjict-status-badge{

        font-size:16px;

    }

    .gjict-route-grid{

        grid-template-columns:1fr;

    }

    .gjict-accordion-header{

        font-size:18px;

        padding:20px;

    }

    .gjict-status{

        font-size:20px;

    }

}

.gjict-accordion-header{

    position:relative;

    user-select:none;

}


.button.gjict-track-again{

    background:#00008B;

    color:#fff;

    padding:12px 14px;

    border-radius:5px;

    text-decoration:none;

    font-weight:400;

}