.section {
    padding: 40px 20px;
    background: #F7F9FC;
}

.quote-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px;
}

.quote-step {
    opacity: 0.4;
}

.quote-step.active {
    opacity: 1;
    color: var(--primary);
}

.quote-intro {
    text-align: center;
    max-width: 320px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.quote-form {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-form input,
.quote-form select {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.full-btn {
    width: 100%;
    margin-top: 10px;
}

/* ================= FLOATING LABELS ================= */

.floating-group {
    position: relative;
}

.floating-group input,
.floating-group textarea {
    width: 100%;
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    background: #fff;
    outline: none;
}

.floating-group label {
    position: absolute;
    left: 14px;
    top: 16px;
    color: #94A3B8;
    font-size: 14px;
    transition: .2s ease;
    pointer-events: none;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label,
.floating-group textarea:focus + label,
.floating-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 10px;
    background: #ffffff;
    padding: 0 6px;
    font-size: 12px;
    color: var(--primary);
}

/* ================= BUTTON GLOW ================= */

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 60%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: opacity .3s ease;
}

.glow-btn:hover::after {
    opacity: 1;
}

/* ================= CONTACT MOBILE POLISH ================= */

.quote-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 12px;
    display: block;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

/* ================= QUOTE MOBILE ================= */

@media (max-width: 768px) {

    body .section h2 {
        text-align: center !important;
        width: 100%;
        display: block;
        margin: 0 auto 20px auto;
    }

    .quote-intro {
        text-align: center;
        max-width: 320px;
        margin: 0 auto 30px auto;
    }

}