/*
====================================================
SK ACADEMY
CHECKOUT
====================================================
*/

.checkout-training{

    background:#f8f4ee;

    padding:70px 0;

}

.checkout-wrapper{

display:grid;

grid-template-columns:1fr;

gap:30px;

}

.checkout-sidebar{

position:relative;

top:auto;

}

.checkout-content{

    width:100%;

    min-width:0;

}

.checkout-summary{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*
====================================================
SIDEBAR
====================================================
*/

.checkout-sidebar{

    position:sticky;

    top:110px;

}

.checkout-summary{

    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 55px rgba(0,0,0,.08);
    display:block;

}

.checkout-cover{

    padding:30px 30px 20px;

    text-align:center;

    background:#fff;

}

.checkout-cover img{

    width:100%;

    max-width:250px;

    display:block;

    margin:auto;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.checkout-info{
     padding:25px 30px;
}

.checkout-price{
    padding:28px;
}

.checkout-title{

    font-size:30px;

    font-weight:800;

    line-height:1.3;

    color:#17304f;

    margin:0 0 10px;

}

.checkout-subtitle{

    color:#666;

    margin-bottom:25px;

}

.checkout-meta{

    list-style:none;

    padding:0;

    margin:20px 0 0;

}

.checkout-meta li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #eee;

}

.checkout-price{

    background:#faf8f2;

    padding:28px 30px;

    border-top:1px solid #eee;

}

.price-label{

    text-transform:uppercase;

    font-size:12px;

    color:#888;

    letter-spacing:2px;

    margin-bottom:10px;

}

.price-normal-label{

    font-size:13px;

    color:#999;

}

.price-normal{

    font-size:20px;

    color:#999;

    text-decoration:line-through;

    margin-bottom:18px;

}

.price-sale-label{

    font-size:13px;

    color:#c8a96b;

    font-weight:700;

    text-transform:uppercase;

}

.price-sale{

    font-size:42px;

    font-weight:800;

    color:#17304f;

    margin:5px 0 20px;

}

.price-saving{

    display:inline-block;

    background:#e8f6eb;

    color:#188038;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

}

.checkout-features{

    margin-top:30px;

}

.checkout-feature{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:15px;

    font-size:15px;

    color:#555;

}

/* Ringkasan checkout pelatihan */
.checkout-training .checkout-wrapper{
    grid-template-columns:minmax(320px, 380px) minmax(0, 1fr);
    align-items:start;
}

.checkout-training .checkout-summary{
    width:100%;
}

.checkout-training .checkout-meta{
    margin:20px 0 0;
    padding:0;
}

.checkout-training .checkout-meta-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid #eee;
}

.checkout-training .checkout-meta-row:first-child{
    border-top:1px solid #eee;
}

.checkout-training .checkout-meta-row span{
    color:#666;
    font-size:14px;
}

.checkout-training .checkout-meta-row strong{
    color:#17304f;
    font-size:14px;
    text-align:right;
}

/*
====================================================
FORM
====================================================
*/

.checkout-content{

    background:#fff;

    padding:45px;

    border-radius:22px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}
.checkout-form-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:35px;

    padding-bottom:22px;

    border-bottom:2px solid #efe5d2;

}

.checkout-form-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    background:#17304f;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.checkout-form-header h2{

    margin:0;

    color:#17304f;

    font-size:34px;

}

.checkout-form-header p{

    margin-top:6px;

    color:#666;

}

.form-group{

    margin-bottom:24px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:700;

    color:#17304f;

}

.form-group span{

    color:#d32f2f;

}

.checkout-form input{

    width:100%;

    height:56px;

    border:1px solid #d9d9d9;

    border-radius:12px;

    padding:0 18px;

    font-size:16px;

    transition:.3s;

}

.checkout-form textarea{

    width:100%;

    min-height:140px;

    border:1px solid #d9d9d9;

    border-radius:12px;

    padding:16px 18px;

    font-size:16px;

    resize:vertical;

    transition:.3s;

}

.checkout-form input:focus,

.checkout-form textarea:focus{

    border-color:#c8a96b;

    outline:none;

    box-shadow:0 0 0 4px rgba(200,169,107,.15);

}

/*
====================================================
SECURITY BOX
====================================================
*/

.checkout-security{

    display:flex;

    gap:18px;

    margin:35px 0;

    padding:22px;

    border-radius:18px;

    background:#fffdf7;

    border:1px solid #edd9a6;

}

.security-icon{

    font-size:34px;

}

.checkout-security strong{

    display:block;

    margin-bottom:5px;

    color:#17304f;

}

.checkout-security p{

    margin:0;

    color:#666;

    line-height:1.6;

}

/*
====================================================
BUTTON
====================================================
*/

.checkout-button{

    width:100%;

    height:66px;

    border:none;

    border-radius:16px;

    background:#17304f;

    color:#fff;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.checkout-button:hover{

    background:#10243d;

    transform:translateY(-2px);

    box-shadow:0 18px 35px rgba(23,48,79,.25);

}

/*
====================================================
RESPONSIVE
====================================================
*/

@media(max-width:991px){

.checkout-wrapper{

grid-template-columns:1fr;

}

.checkout-training .checkout-wrapper{

grid-template-columns:1fr;

}

.checkout-sidebar{

position:relative;

top:auto;

}

.checkout-content{

padding:30px;

}

.checkout-form-header{

flex-direction:column;

text-align:center;

}

.checkout-form-header h2{

font-size:28px;

}

.checkout-cover img{

max-width:220px;

}

.price-sale{

font-size:34px;

}

}

@media(max-width:576px){

    .checkout-training{

    padding:30px 15px 50px;

    }

    .checkout-content{

    padding:22px;

    }

    .checkout-summary{

    border-radius:18px;

    }

    .checkout-title{

    font-size:24px;

    }

    .checkout-button{

    font-size:18px;

    height:58px;

    }

}

.checkout-trust{

    padding:25px 30px;

    border-top:1px solid #eee;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.checkout-feature{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:15px;

    color:#555;

}
