#quote-steps-bar {
    max-width: 100%;
    margin: 40px auto 20px auto;
}
.quote-steps {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
    gap: 24px;
}
.step-bubble {
    text-align: center;
    position: relative;
    flex: 1 1 0;
    min-width: 80px;
}
.step-bubble span {
    display: inline-block;
    width: 50px; height: 50px; line-height: 50px;
    background: #ffdf62;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 2px solid #ffdf62;
    margin-bottom: 2px;
    transition: background 0.2s, color 0.2s;
}
.step-bubble.active span {
    background: #ffc600;
    color: #fff;
    border: 2px solid #ffc600;
}
.step-title {
    font-size: 0.98rem;
    color: #ffc600;
    font-weight: bold;
    margin-top: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.step-bubble.active .step-title {
    color: #222;
}

.active-step-title-mobile {
    display: none;
}

#custom-quote-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(100,100,100,0.09);
    padding: 32px 30px 18px 30px;
    font-family: 'Montserrat', Arial, sans-serif;
    max-width: 100%;
    margin: 0 auto 40px auto;
}
.section-title {
    font-size: 1.25rem;
    margin: 0 0 20px 0;
    font-weight: bold;
    color: #222;
}
#custom-quote-form label {
    font-size: 1rem;
    color: #444;
    margin-top: 16px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}
#custom-quote-form input, #custom-quote-form select {
    width: 100%;
    padding: 9px 14px;
    font-size: 1rem;
    border: 1.5px solid #e0b631;
    border-radius: 7px;
    margin-bottom: 10px;
    background: #fff8d1;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: border .2s;
}
#custom-quote-form input:focus, #custom-quote-form select:focus {
    border-color: #ffc600;
}
.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}
.row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}
.col {
    flex: 1;
}
.nav-row { margin-top: 30px; }

.button-primary {
    background: #ffc600; color: #222;
    border: none; padding: 11px 36px; border-radius: 6px; font-size: 1.1rem;
    font-weight: 700; box-shadow:0 2px 6px rgba(0,0,0,0.08); cursor:pointer;
    margin-right: 14px; transition: background 0.2s, color 0.2s;
}
.button-primary:hover { background:#ffd700; color: #111; }
.button-secondary {
    background: #eaeaea; color: #666; border:none; padding: 11px 26px; border-radius: 6px; font-size: 1.1rem; font-weight:600;
    cursor:pointer; transition: background 0.2s, color 0.2s;
}
.button-secondary:hover { background:#ddd; color:#111; }

.error-message {
    color: #d00; font-size: 15px; margin: 10px 0 6px 0; display:none;
}
#quote-summary {
    background: #fff8d1; border-radius: 7px; padding: 18px 20px; color: #444; font-size: 1rem;
    margin-bottom: 16px;
}
#quote-form-response { text-align:center; font-size: 1.1rem; margin-top:25px;}

@media (max-width: 900px) {
    .step-title { font-size: 0.89rem; }
}
@media (max-width: 700px) {
    .quote-steps {
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }
    .step-bubble {
        flex: 0 0 38px;
        min-width: 40px;
        width: 38px; height: 38px;
        padding: 0; margin: 0;
        display: flex; align-items: center; justify-content: center;
    }
    .step-bubble span {
        width: 38px; height: 38px; font-size: 1.18rem; line-height: 38px; margin-bottom: 0;
    }
    .step-title { display: none; }
    .active-step-title-mobile {
        display: block;
        text-align: center;
        margin-top: 6px;
        font-weight: 700;
        color: #ffc600;
        font-size: 1.02rem;
        letter-spacing: 0.2px;
        text-transform: uppercase;
    }
    #custom-quote-form { padding: 16px 3vw; }
}
@media (max-width: 500px) {
    .row { flex-direction: column; gap: 0;}
    .step-bubble span {
        width: 32px; height: 32px; font-size: 0.97rem; line-height: 32px;
    }
    .active-step-title-mobile { font-size: 0.95rem;}
}

#comments, textarea[name="comments"] {
    width: 100%;
    padding: 13px 12px;
    border: 1.5px solid #e0b631;
    border-radius: 7px;
    background: #f7f7f7;
    font-size: 1rem;
    margin-bottom: 16px;
}
