.wecatquot-sgifts-form {
    position: relative;
    z-index: 10;
    margin-top: -70px;
    padding: 0 15px;
}

.wecatquot-sgifts-form .wecatquot-form-inner {
    max-width: 1400px;
    margin: 0 auto;
    background: #f4f4f4;
    border-radius: 6px;
    padding: 24px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.wecatquot-sgifts-form .wecatquot-form-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
}

.wecatquot-sgifts-form .wecatquot-title {
    color: #f5b400;
    font-weight: 700;
}

.wecatquot-sgifts-form .wecatquot-desc {
    color: #555;
    font-weight: 500;
}

.wecatquot-sgifts-form .wecatquot-form-row {
}

.wecatquot-sgifts-form .wecatquot-field {
    padding: 10px;
}

.wecatquot-sgifts-form input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 40px;
    background: #ececec;
    padding: 0 24px;
    font-size: 18px;
    outline: none;
    transition: all 0.2s ease;
    font-style: italic;
}

.wecatquot-sgifts-form input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(25,181,234,0.15);
}

.wecatquot-sgifts-form input::placeholder {
    color: #999;
}

.wecatquot-sgifts-form .wecatquot-submit button {
    height: 60px;
    padding: 0 36px;
    border: none;
    border-radius: 40px;
    background: #f5b400;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.wecatquot-sgifts-form .wecatquot-submit button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 991px) {

    .wecatquot-sgifts-form {
        margin-top: -50px;
    }

    .wecatquot-sgifts-form .wecatquot-form-row {
        flex-wrap: wrap;
    }

    .wecatquot-sgifts-form .wecatquot-field {
        width: calc(50% - 10px);
        flex: unset;
    }

    .wecatquot-sgifts-form .wecatquot-submit {
        width: 100%;
    }

    .wecatquot-sgifts-form .wecatquot-submit button {
        width: 100%;
        margin: 15px 0px 10px auto;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .wecatquot-sgifts-form {
        margin-top: -30px;
    }

    .wecatquot-sgifts-form .wecatquot-form-inner {
        padding: 20px;
    }

    .wecatquot-sgifts-form .wecatquot-form-heading {
        font-size: 20px;
    }

    .wecatquot-sgifts-form .wecatquot-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .wecatquot-sgifts-form .wecatquot-field {
        width: 100%;
    }

    .wecatquot-sgifts-form input,
    .wecatquot-sgifts-form .wecatquot-submit button {
        height: 54px;
        font-size: 16px;
    }

    .wecatquot-sgifts-form .wecatquot-submit {
        width: 100%;
    }

    .wecatquot-sgifts-form .wecatquot-submit button {
        width: 100%;
    }
}

/*======================================
=            Progress Wizard           =
======================================*/

.wecatquot-progress{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 0 30px;
    user-select:none;
}

.wecatquot-progress-item{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#e5e5e5;
    color:#999;
    font-size:12px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    transition:all .3s ease;
}

.wecatquot-progress-item::after{
    content:attr(data-progress-step);
    position:absolute;
    top:52px;
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap;
    font-size:13px;
    font-weight:500;
    color:#888;
}

.wecatquot-progress-item.is-active{
    background:#f5b400;
    color:#fff;
}

.wecatquot-progress-item.is-active::after{
    color:#f5b400;
    font-weight:600;
}

.wecatquot-progress-item.is-completed{
    background:#198754;
    color:#fff;
}

.wecatquot-progress-item.is-completed::after{
    color:#198754;
    font-weight:600;
}

.wecatquot-progress-line{
    flex:1;
    max-width:120px;
    height:4px;
    background:#e5e5e5;
    margin:0 15px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
}

.wecatquot-progress-line::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0%;
    height:100%;
    background:#198754;
    transition:width .3s ease;
}

.wecatquot-progress.step-2 .wecatquot-progress-line::before{
    width:100%;
}


/*======================================
=              Form Step               =
======================================*/

.wecatquot-step{
    display:none;
    animation:wecatquotFade .3s ease;
}

.wecatquot-step.is-active{
    display:block;
}

@keyframes wecatquotFade{

    from{
        opacity:0;
        transform:translateY(8px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/*======================================
=           Mobile Responsive          =
======================================*/

@media(max-width:767px){

    .wecatquot-progress{
        margin-bottom:20px;
    }

    .wecatquot-progress-item{
        width:45px;
        height:45px;
        font-size:12px;
    }

    .wecatquot-progress-item::after{
        font-size:12px;
        top:45px;
    }

    .wecatquot-progress-line{
        margin:0 10px;
        max-width:80px;
    }

}