@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
                SECTION
========================================================= */

.ttp-track-section{

    position: relative;

    overflow: hidden;

    padding:
        110px 0;

    background:
        #f6fafc;

    font-family:
        'Outfit',
        sans-serif;

}

/* =========================================================
                GRID
========================================================= */

.ttp-grid{

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(4,69,105,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4,69,105,0.03) 1px, transparent 1px);

    background-size: 70px 70px;

}

/* =========================================================
                CONTAINER
========================================================= */

.ttp-container{

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding: 0 28px;

}

/* =========================================================
                TOP
========================================================= */

.ttp-top{

    text-align: center;

    max-width: 760px;

    margin:
        0 auto 55px;

}

/* LABEL */

.ttp-top span{

    display: inline-block;

    margin-bottom: 18px;

    color:
        #044569;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* HEADING */

.ttp-top h1{

    color:
        #102131;

    font-size:
        clamp(50px, 7vw, 90px);

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 32px;

}

/* SEARCH */

.ttp-search{

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        14px;

    border-radius: 24px;

    background:
        #ffffff;

    box-shadow:
        0 20px 60px rgba(4,69,105,0.05);

}

/* INPUT */

.ttp-search input{

    flex: 1;

    border: none;

    outline: none;

    background: transparent;

    padding:
        0 14px;

    color:
        #102131;

    font-size: 15px;

    font-family:
        'Outfit',
        sans-serif;

}

/* BUTTON */

.ttp-search button{

    border: none;

    outline: none;

    padding:
        18px 30px;

    border-radius: 16px;

    background:
        #044569;

    color:
        #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

}

/* =========================================================
                STATUS
========================================================= */

.ttp-status-card{

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        34px;

    border-radius: 30px;

    background:
        #ffffff;

    box-shadow:
        0 20px 60px rgba(4,69,105,0.05);

    margin-bottom: 30px;

}

/* STEP */

.ttp-step{

    flex: 1;

    text-align: center;

}

/* DOT */

.ttp-dot{

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background:
        #d7e2e9;

    margin:
        0 auto 16px;

    border:
        4px solid #ffffff;

}

.ttp-step.completed .ttp-dot{

    background:
        #044569;

}

.ttp-step.current .ttp-dot{

    background:
        #058F48;

    box-shadow:
        0 0 18px rgba(5,143,72,0.4);

}

/* TEXT */

.ttp-step-content h3{

    color:
        #102131;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 8px;

}

.ttp-step-content p{

    color:
        #647381;

    font-size: 12px;

}

/* LINE */

.ttp-line{

    height: 3px;

    flex: 1;

    border-radius: 100px;

    background:
        #dfe8ee;

}

.ttp-line.active{

    background:
        linear-gradient(
            90deg,
            #044569,
            #058F48
        );

}

/* =========================================================
                LAYOUT
========================================================= */

.ttp-layout{

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 28px;

}

/* =========================================================
                LEFT
========================================================= */

.ttp-left{

    display: flex;

    flex-direction: column;

    gap: 24px;

}

/* =========================================================
                CARDS
========================================================= */

.ttp-card,
.ttp-current-card,
.ttp-proof-card{

    background:
        #ffffff;

    border:
        1px solid rgba(4,69,105,0.05);

    box-shadow:
        0 20px 60px rgba(4,69,105,0.05);

}

/* CARD */

.ttp-card{

    padding:
        30px;

    border-radius: 28px;

}

/* TOP */

.ttp-card-top{

    margin-bottom: 28px;

}

.ttp-card-top h2{

    color:
        #102131;

    font-size: 28px;

    font-weight: 700;

}

/* =========================================================
                DETAILS GRID
========================================================= */

.ttp-details-grid{

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 18px;

}

/* BOX */

.ttp-detail-box{

    padding:
        22px;

    border-radius: 22px;

    background:
        #f7fbfd;

}

/* LABEL */

.ttp-detail-box span{

    display: inline-block;

    margin-bottom: 12px;

    color:
        #647381;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* TITLE */

.ttp-detail-box h3{

    color:
        #102131;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;

}

.ttp-detail-box h3.green{

    color:
        #058F48;

}

/* =========================================================
                TIMELINE
========================================================= */

.ttp-timeline{

    display: flex;

    flex-direction: column;

    gap: 28px;

}

/* ITEM */

.ttp-item{

    position: relative;

    display: flex;

    gap: 18px;

}

.ttp-item:not(:last-child)::before{

    content: "";

    position: absolute;

    top: 28px;
    left: 8px;

    width: 2px;
    height: calc(100% + 34px);

    background:
        #e3ebf0;

}

/* DOT */

.ttp-item-dot{

    min-width: 18px;
    height: 18px;

    border-radius: 50%;

    background:
        #dfe8ee;

    margin-top: 8px;

}

.ttp-item.active .ttp-item-dot{

    background:
        #058F48;

}

/* HEAD */

.ttp-item-head{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 10px;

}

/* TITLE */

.ttp-item-head h3{

    color:
        #102131;

    font-size: 18px;

    font-weight: 700;

}

/* TIME */

.ttp-item-head span{

    color:
        #647381;

    font-size: 13px;

}

/* TEXT */

.ttp-item-content p{

    color:
        #647381;

    font-size: 14px;

    line-height: 1.8;

}

/* =========================================================
                RIGHT
========================================================= */

.ttp-right{

    display: flex;

    flex-direction: column;

    gap: 24px;

}

/* =========================================================
                STATUS CARD
========================================================= */

.ttp-current-card{

    padding:
        34px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #044569,
            #0b5c89
        );

}

/* LABEL */

.ttp-current-card span{

    display: inline-block;

    margin-bottom: 18px;

    color:
        rgba(255,255,255,0.72);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* TITLE */

.ttp-current-card h2{

    color:
        #ffffff;

    font-size: 42px;

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 20px;

}

/* TEXT */

.ttp-current-card p{

    color:
        rgba(255,255,255,0.80);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 28px;

}

/* BADGE */

.ttp-status-badge{

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        12px 18px;

    border-radius: 100px;

    background:
        rgba(255,255,255,0.10);

}

/* DOT */

.ttp-status-dot{

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background:
        #4ade80;

    box-shadow:
        0 0 18px rgba(74,222,128,0.8);

}

/* TEXT */

.ttp-status-badge{

    color:
        #ffffff;

    font-size: 13px;

    font-weight: 600;

}

/* =========================================================
                PROOF
========================================================= */

.ttp-proof-card{

    padding:
        30px;

    border-radius: 28px;

}

.ttp-proof-card img{

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 22px;

    margin-bottom: 24px;

}

/* GRID */

.ttp-proof-grid{

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;

    margin-bottom: 24px;

}

/* BOX */

.ttp-proof-box{

    padding:
        18px;

    border-radius: 18px;

    background:
        #f7fbfd;

}

/* LABEL */

.ttp-proof-box span{

    display: inline-block;

    margin-bottom: 10px;

    color:
        #647381;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* VALUE */

.ttp-proof-box h3{

    color:
        #102131;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 700;

}

/* TEXT */

.ttp-proof-text span{

    display: inline-block;

    margin-bottom: 12px;

    color:
        #647381;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.ttp-proof-text p{

    color:
        #647381;

    font-size: 14px;

    line-height: 1.8;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .ttp-layout{

        grid-template-columns: 1fr;

    }

}

@media(max-width:992px){

    .ttp-status-card{

        flex-direction: column;

        align-items: stretch;

    }

    .ttp-line{

        width: 3px;

        height: 40px;

        margin: auto;

    }

}

@media(max-width:768px){

    .ttp-track-section{

        padding:
            90px 0;

    }

    .ttp-container{

        padding: 0 20px;

    }

    .ttp-search{

        flex-direction: column;

    }

    .ttp-search button{

        width: 100%;

    }

    .ttp-details-grid,
    .ttp-proof-grid{

        grid-template-columns: 1fr;

    }

}

@media(max-width:500px){

    .ttp-track-section{

        padding:
            80px 0;

    }

    .ttp-container{

        padding: 0 16px;

    }

    .ttp-top h1{

        font-size: 42px;

        letter-spacing: -2px;

    }

    .ttp-status-card{

        padding: 24px;

        border-radius: 24px;

    }

    .ttp-card,
    .ttp-current-card,
    .ttp-proof-card{

        padding: 22px;

        border-radius: 22px;

    }

    .ttp-card-top h2{

        font-size: 22px;

    }

    .ttp-item-head{

        flex-direction: column;

        align-items: flex-start;

    }

    .ttp-current-card h2{

        font-size: 30px;

        line-height: 1.1;

    }

}

/* =========================================================
                UPDATED LAYOUT
========================================================= */

.ttp-layout{

    display: flex;

    flex-direction: column;

    gap: 28px;

}

/* =========================================================
                FULL DETAILS
========================================================= */

.ttp-full-details{

    width: 100%;

}

/* =========================================================
                BOTTOM GRID
========================================================= */

.ttp-bottom-layout{

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 28px;

    align-items: start;

}

/* =========================================================
                DETAILS GRID
========================================================= */

.ttp-details-grid{

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .ttp-details-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}

@media(max-width:992px){

    .ttp-bottom-layout{

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px){

    .ttp-details-grid{

        grid-template-columns: 1fr;

    }

}

@media(max-width:500px){

    .ttp-bottom-layout{

        gap: 22px;

    }

}