/* ==========================================
   SYLFOW GROUP
   SMART QUOTE
========================================== */

.quote-hero{

    background:#f8fafc;

    padding:90px 0;

    min-height:100vh;

}

.quote-card{

    background:#fff;

    border-radius:30px;

    padding:55px;

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

}

.quote-badge{

    display:inline-block;

    background:#dcfce7;

    color:#15803d;

    padding:10px 22px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.quote-title{

    font-size:48px;

    font-weight:800;

    margin-bottom:15px;

}

.quote-subtitle{

    color:#64748b;

    font-size:19px;

    max-width:650px;

    margin:auto;

}

.progress{

    height:12px;

    border-radius:50px;

    background:#e5e7eb;

}

.progress-bar{

    background:#16a34a;

    transition:.4s;

}

.step-counter{

    text-align:center;

    margin-bottom:40px;

    color:#64748b;

    font-weight:600;

}

.quote-step{

    display:none;

}

.quote-step.active{

    display:block;

    animation:fade .4s;

}

@keyframes fade{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

.quote-option{

    border:2px solid #e5e7eb;

    border-radius:22px;

    padding:35px;

    cursor:pointer;

    transition:.30s;

    height:100%;

    background:white;

}

.quote-option:hover{

    transform:translateY(-8px);

    border-color:#16a34a;

    box-shadow:0 20px 45px rgba(22,163,74,.15);

}

.quote-option.selected{

    background:#16a34a;

    color:white;

    border-color:#16a34a;

}

.quote-option.selected p{

    color:white;

}

.option-icon{

    font-size:54px;

    margin-bottom:18px;

}

.quote-option h4{

    font-weight:700;

    margin-bottom:15px;

}

.quote-option p{

    color:#64748b;

    margin:0;

    line-height:1.7;

}

.quote-navigation{

    margin-top:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.quote-navigation .btn{

    min-width:170px;

    padding:14px 30px;

    border-radius:15px;

    font-weight:700;

}

@media(max-width:992px){

    .quote-card{

        padding:35px;

    }

    .quote-title{

        font-size:36px;

    }

}

@media(max-width:768px){

    .quote-navigation{

        flex-direction:column;

        gap:15px;

    }

    .quote-navigation .btn{

        width:100%;

    }

}

/* ==========================================
   CHECKBOX CARDS
========================================== */

.quote-checkbox-card{

    display:block;

    cursor:pointer;

    height:100%;

}

.quote-checkbox-card input:checked + .quote-option{

    background:#16a34a;

    color:white;

    border-color:#16a34a;

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(22,163,74,.18);

}

.quote-checkbox-card input:checked + .quote-option p,

.quote-checkbox-card input:checked + .quote-option small{

    color:white !important;

}

/* ==========================================
   PREMIUM OPTION CARDS
========================================== */

.quote-option{

    position:relative;

    overflow:hidden;

}

.quote-option hr{

    margin:20px 0;

    border-color:#edf2f7;

}

.quote-option .badge{

    font-size:.75rem;

    font-weight:600;

    padding:8px 12px;

}

.quote-option i{

    transition:.30s;

}

.quote-option:hover i{

    transform:scale(1.15) rotate(-5deg);

}

.quote-option strong{

    font-size:1rem;

}

.quote-option.selected hr,

.quote-checkbox-card input:checked + .quote-option hr{

    border-color:rgba(255,255,255,.35);

}

.quote-checkbox-card input:checked + .quote-option .badge{

    background:white !important;

    color:#16a34a !important;

}

.quote-checkbox-card input:checked + .quote-option i{

    color:white !important;

}

.quote-checkbox-card input:checked + .quote-option strong{

    color:white;

}

.quote-checkbox-card input:checked + .quote-option::after{

    content:"✓";

    position:absolute;

    top:18px;

    right:18px;

    width:34px;

    height:34px;

    border-radius:50%;

    background:white;

    color:#16a34a;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    font-weight:700;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/* ==========================================
   PROJECT SUMMARY
========================================== */

.summary-card{

    position:sticky;

    top:120px;

}

.summary-item{

    margin-bottom:25px;

}

.summary-value{

    font-size:2rem;

    font-weight:800;

}

.summary-list{

    margin-top:25px;

    max-height:260px;

    overflow-y:auto;

}

.summary-list li{

    padding:8px 0;

    border-bottom:1px solid #eef2f7;

}