/* ==========================================================
   QUOTE PAGE
   N-Printing Platform
========================================================== */

:root{

    --primary:#5B2C83;
    --primary-dark:#49206b;
    --accent:#F4B400;

    --light:#f8f9fa;
    --white:#ffffff;

    --text:#343a40;
    --muted:#6c757d;

    --radius:18px;

    --shadow-sm:0 5px 20px rgba(0,0,0,.05);
    --shadow-md:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 45px rgba(0,0,0,.12);

    --transition:.35s;

}


/* ==========================================================
   HERO
========================================================== */

.quote-hero{

    background:
    linear-gradient(rgba(91,44,131,.88),
    rgba(91,44,131,.88)),
    url("../images/printing-hero.jpg");

    background-size:cover;
    background-position:center;

    color:#fff;

    padding:110px 0;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    padding:10px 22px;

    border-radius:40px;

    font-weight:600;

}

.quote-hero h1{

    line-height:1.2;

}

.quote-hero p{

    opacity:.95;

}

.hero-card{

    background:#fff;

    border-radius:var(--radius);

    padding:35px;

    box-shadow:var(--shadow-lg);

}

.hero-stat{

    text-align:center;

    padding:18px 0;

}

.hero-stat i{

    font-size:2rem;

    color:var(--primary);

}

.hero-stat h3{

    margin-top:15px;

    color:var(--primary);

    font-weight:700;

}

.hero-stat p{

    color:var(--muted);

    margin-bottom:0;

}


/* ==========================================================
   INTRO
========================================================== */

.feature-card{

    background:#fff;

    border-radius:var(--radius);

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.feature-card i{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:20px;

}

.feature-card h4{

    font-weight:700;

    margin-bottom:15px;

}


/* ==========================================================
   PROGRESS
========================================================== */

.quote-progress{

    padding:70px 0;

    background:#fff;

}

.progress-wrapper{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-wrap:wrap;

}

.progress-step{

    text-align:center;

}

.step-circle{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#dee2e6;

    color:#666;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    margin:auto;

    transition:.35s;

}

.progress-step.active .step-circle{

    background:var(--primary);

    color:#fff;

}

.progress-step.completed .step-circle{

    background:var(--accent);

    color:#fff;

}

.progress-step h6{

    margin-top:12px;

    font-weight:600;

}

.progress-line{

    width:80px;

    height:3px;

    background:#dee2e6;

    margin:0 15px;

}


/* ==========================================================
   MAIN SECTION
========================================================== */

.quote-section{

    background:var(--light);

}

.quote-card{

    background:#fff;

    border-radius:var(--radius);

    padding:45px;

    box-shadow:var(--shadow-md);

}

.quote-sidebar{

    position:sticky;

    top:100px;

}

.sidebar-card{

    background:#fff;

    border-radius:var(--radius);

    padding:35px;

    box-shadow:var(--shadow-md);

}

.sidebar-card h4{

    color:var(--primary);

    font-weight:700;

}

.sidebar-card h6{

    font-weight:700;

    margin-top:20px;

}

.sidebar-card hr{

    margin:25px 0;

}

/* ==========================================================
   PRODUCT CARDS
========================================================== */

.product-card{

    background:#fff;
    border:2px solid #e9ecef;
    border-radius:var(--radius);
    padding:30px;
    text-align:center;
    cursor:pointer;

    transition:var(--transition);

    height:100%;

}

.product-card:hover{

    transform:translateY(-6px);
    border-color:var(--primary);
    box-shadow:var(--shadow-md);

}

.product-card.selected{

    background:var(--primary);
    color:#fff;
    border-color:var(--accent);

}

.product-card.selected small{

    color:#fff;

}

.product-card i{

    font-size:2.8rem;
    color:var(--primary);
    margin-bottom:20px;

}

.product-card.selected i{

    color:var(--accent);

}

.product-card h5{

    font-weight:700;
    margin-bottom:10px;

}


/* ==========================================================
   FORM ELEMENTS
========================================================== */

.form-control,
.form-select{

    border-radius:12px;
    padding:14px 16px;
    border:1px solid #ced4da;

    transition:var(--transition);

}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary);

    box-shadow:
        0 0 0 .2rem rgba(91,44,131,.15);

}

.form-label{

    font-weight:600;
    color:var(--text);

}


/* ==========================================================
   WIZARD STEPS
========================================================== */

.wizard-step{

    animation:fadeStep .35s ease;

}

@keyframes fadeStep{

    from{

        opacity:0;
        transform:translateY(15px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


/* ==========================================================
   FILE UPLOAD
========================================================== */

.upload-zone{

    border:3px dashed #ced4da;
    border-radius:var(--radius);

    padding:60px 30px;

    background:#fafafa;

    transition:var(--transition);

}

.upload-zone:hover{

    border-color:var(--primary);
    background:#fff;

}

.upload-icon{

    font-size:4rem;
    color:var(--primary);

}

#uploadedFiles{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.upload-file{

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#fff;

    padding:14px 20px;

    border-radius:12px;

    box-shadow:var(--shadow-sm);

}


/* ==========================================================
   REVIEW
========================================================== */

.review-card{

    background:#fff;

    border-radius:var(--radius);

    padding:35px;

    border-left:5px solid var(--accent);

    box-shadow:var(--shadow-sm);

}

.review-card h6{

    color:var(--primary);

    font-weight:700;

}


/* ==========================================================
   TIMELINE
========================================================== */

.timeline-card{

    background:#fff;

    padding:35px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.timeline-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.timeline-number{

    width:50px;
    height:50px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 20px;

    font-weight:700;

}

.timeline-card i{

    font-size:2.2rem;

    color:var(--accent);

    margin-bottom:18px;

}


/* ==========================================================
   FAQ
========================================================== */

.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:12px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.accordion-button{

    font-weight:600;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}


/* ==========================================================
   CTA
========================================================== */

.quote-cta{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    padding:90px 0;

}

.cta-box{

    max-width:900px;

    margin:auto;

}

.cta-box h2{

    font-weight:700;

    margin-bottom:20px;

}


/* ==========================================================
   BUTTONS
========================================================== */

.btn{

    border-radius:50px;

    padding:12px 30px;

    transition:var(--transition);

}

.btn-warning{

    background:var(--accent);

    border:none;

    color:#222;

    font-weight:600;

}

.btn-warning:hover{

    transform:translateY(-2px);

}

.btn-success{

    border-radius:50px;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:991px){

    .quote-sidebar{

        position:static;
        margin-top:40px;

    }

    .progress-line{

        display:none;

    }

    .progress-wrapper{

        gap:20px;

    }

    .quote-card{

        padding:30px;

    }

}

@media (max-width:768px){

    .quote-hero{

        padding:80px 0;

        text-align:center;

    }

    .hero-card{

        margin-top:30px;

    }

    .quote-card{

        padding:25px;

    }

    .upload-zone{

        padding:40px 20px;

    }

    .timeline-card{

        margin-bottom:20px;

    }

}

@media (max-width:576px){

    .step-circle{

        width:45px;
        height:45px;

        font-size:.9rem;

    }

    .progress-step h6{

        font-size:.8rem;

    }

    .product-card{

        padding:20px;

    }

    .product-card i{

        font-size:2.2rem;

    }

}
.product-card{
    cursor:pointer;
}

.product-card.selected{
    border:3px solid var(--gold);
    transform:translateY(-5px);
}