/* quote-style.css */
/* =========================================
   RFQ MODERN UI
========================================= */

:root{
    --primary:#2563eb;
    --primary-light:#3b82f6;
    --success:#10b981;
    --dark:#0f172a;
    --gray:#64748b;
    --border:#e2e8f0;
    --bg:#f8fafc;
}

.quote-page-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

@media(max-width:991px){
    .quote-page-grid{
        grid-template-columns:1fr;
    }
}

/* Form Card */

.contact-form-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:
        0 10px 25px rgba(0,0,0,.06),
        0 20px 60px rgba(37,99,235,.08);
    position:relative;
    overflow:hidden;
}

.contact-form-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(
        90deg,
        #2563eb,
        #06b6d4,
        #10b981
    );
}

/* Inputs */

.theme-form input,
.theme-form select,
.theme-form textarea{
    width:100%;
    border:2px solid var(--border);
    border-radius:14px;
    padding:15px 18px;
    transition:.3s ease;
    font-size:15px;
    background:#fff;
}

.theme-form input:hover,
.theme-form select:hover,
.theme-form textarea:hover{
    border-color:#93c5fd;
}

.theme-form input:focus,
.theme-form select:focus,
.theme-form textarea:focus{
    border-color:var(--primary);
    box-shadow:
        0 0 0 4px rgba(37,99,235,.12);
    outline:none;
    transform:translateY(-2px);
}

/* Labels */

.form-group label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
    color:var(--dark);
}

/* Form Rows */

.form-row-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

@media(max-width:768px){
    .form-row-2{
        grid-template-columns:1fr;
    }
}


/* beautiful file upload */

.file-upload-dragdrop{
    border:2px dashed #93c5fd;
    background:linear-gradient(
        135deg,
        #eff6ff,
        #f8fafc
    );
    border-radius:20px;
    padding:50px 30px;
    text-align:center;
    cursor:pointer;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.file-upload-dragdrop:hover{
    border-color:#2563eb;
    transform:translateY(-4px);
    box-shadow:
        0 15px 40px rgba(37,99,235,.12);
}

.file-upload-dragdrop i{
    font-size:55px;
    color:#2563eb;
    margin-bottom:15px;
    animation:floatUpload 3s ease-in-out infinite;
}

@keyframes floatUpload{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

/* animated progress bar */
.quote-steps{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:40px;
}

.quote-step{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#94a3b8;
    transition:.3s;
}

.quote-step-num{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e2e8f0;
    font-weight:700;
    margin-bottom:10px;
    transition:.3s;
}

.quote-step.active{
    color:#2563eb;
}

.quote-step.active .quote-step-num{
    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
    color:white;
    transform:scale(1.08);
    box-shadow:
        0 8px 20px rgba(37,99,235,.3);
}

/*premium submit button */

.theme-form button[type="submit"]{
    width:100%;
    border:none;
    border-radius:16px;
    padding:18px;
    font-size:18px;
    font-weight:700;
    color:white;
    cursor:pointer;
    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
    transition:.35s ease;
    box-shadow:
        0 10px 30px rgba(37,99,235,.25);
}

.theme-form button[type="submit"]:hover{
    transform:translateY(-4px);
    box-shadow:
        0 15px 40px rgba(37,99,235,.4);
}

.theme-form button[type="submit"] i{
    transition:.3s;
}

.theme-form button[type="submit"]:hover i{
    transform:translateX(6px);
}

/* modern sidebar card*/
.contact-info-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
    border:1px solid #eef2ff;
    box-shadow:
        0 8px 25px rgba(0,0,0,.04);
    transition:.3s ease;
}

.contact-info-card:hover{
    transform:translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.contact-info-sidebar{
    position:sticky;
    top:100px;
}
