*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Inter', sans-serif;
    background:#000;
    color:#FFF;
    overflow-x:hidden;

}

.wizard-wrapper{

    min-height:100vh;
    position:relative;
    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),
        url('../img/bg.jpg');

    background-size:cover;
    background-position:center;

}

.bg-overlay{

    position:absolute;
    inset:0;
    backdrop-filter:blur(4px);

}

.sidebar{

    position:relative;
    z-index:2;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.35)
        );

    border-right:1px solid rgba(255,255,255,.08);

    padding:60px 50px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

}

.wizard-header{

    margin-bottom:40px;

}

.main-logo{

    width:240px;
    max-width:100%;

}
.summary-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:35px;

    backdrop-filter:blur(18px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);

}

.summary-item{

    display:flex;
    flex-direction:column;

    gap:6px;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.summary-item:last-child{

    border-bottom:none;

}

.summary-item span{

    color:#999;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.5px;

}

.summary-item strong{

	display:block;

    background:rgba(255,255,255,.08);

    padding:10px 14px;

    border-radius:10px;

    font-size:15px;
    font-weight:600;

}

.content-area{

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
    z-index:2;

}

.wizard-content{

    width:100%;
    max-width:920px;

    padding:60px;

}

.step{

    display:none;

    opacity:0;
    transform:translateX(30px);

    transition:.35s ease;

}

.step.active{

    display:block;

    opacity:1;
    transform:none;

}

h1,h2{

    font-weight:700;
    margin-bottom:20px;

}

.subtitle{

    color:#CCC;
    margin-bottom:40px;

}

.option-card{

    background:#FFF;
    color:#000;

    border-radius:24px;

    padding:15px;

    cursor:pointer;

    transition:.25s ease;

    text-align:center;

}

.option-card:hover{

    transform:translateY(-4px);

}

.option-card.selected{

    border:3px solid #EB0A1E;

}

.option-card img{

    width:100%;
    max-height:180px;
    object-fit:contain;

}

.custom-progress{

    height:10px;
    border-radius:50px;

    margin-bottom:10px;

}

.progress-bar{

    background:#EB0A1E;

}

.step-indicator{

    color:#AAA;
    margin-bottom:40px;

}

.custom-input{

    height:60px;

    border-radius:16px;

    border:none;

    padding-left:20px;

}

.payment-options{

    display:grid;
    gap:20px;

}

.wizard-navigation{

    display:flex;
    justify-content:space-between;

    margin-top:50px;

}

.btn-back{

    background:transparent;
    border:1px solid rgba(255,255,255,.2);

    color:#FFF;

    padding:14px 30px;

    border-radius:14px;

}

.btn-next{

    background:#EB0A1E;
    color:#FFF;

    border:none;

    padding:14px 30px;

    border-radius:14px;

}

.review-box{

    background:rgba(255,255,255,.06);

    border-radius:24px;

    padding:30px;

}

.review-item{

    display:flex;
    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.success-box{

    text-align:center;

}

@media(max-width:991px){

    .sidebar{

        display:none;

    }

    .wizard-content{

        padding:30px;

    }

}

@media(max-width:991px){

    .wizard-header{

        text-align:center;

        margin-bottom:30px;

    }

    .main-logo{

        width:190px;

    }

}



.mobile-summary{

    display:none;

}

@media(max-width:991px){

    .mobile-summary{

        display:grid;

        grid-template-columns:1fr 1fr 1fr;

        gap:10px;

        margin-bottom:20px;

    }

    .mobile-summary-item{

        background:rgba(255,255,255,.05);

        border-radius:10px;

        padding:8px;

        text-align:center;

    }

    .mobile-summary-item small{

        display:block;

        color:#999;

        font-size:11px;

    }

    .mobile-summary-item strong{

        display:block;

        color:#FFF;

        font-size:12px;

        margin-top:4px;

    }

}



.wizard-error{

    background:rgba(235,10,30,.15);

    border:1px solid rgba(235,10,30,.35);

    color:#FFF;

    padding:14px 18px;

    border-radius:14px;

    margin-bottom:25px;

    font-size:14px;

    backdrop-filter:blur(10px);

    animation:fadeIn .2s ease;

}

.input-error{

    border:2px solid #EB0A1E !important;

}

@keyframes fadeIn{

    from{

        opacity:0;
        transform:translateY(-5px);

    }

    to{

        opacity:1;
        transform:none;

    }

}