.posadvice-lead-form-wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    max-width: 700px;
}

.posadvice-lead-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.posadvice-lead-form-header h3 {
    color: #0369a1;
    margin: 0 0 8px 0;
    font-size: 22px;
}

.posadvice-lead-form-header p {
    color: #64748b;
    margin: 0;
}

.posadvice-lead-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.posadvice-lead-form .form-group {
    flex: 1;
}

.posadvice-lead-form label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    font-size: 14px;
}

.posadvice-lead-form input,
.posadvice-lead-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.posadvice-lead-form input:focus,
.posadvice-lead-form select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.posadvice-lead-form input::placeholder {
    color: #94a3b8;
}

.posadvice-submit-btn {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.posadvice-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.posadvice-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.posadvice-lead-success {
    text-align: center;
    padding: 20px;
}

.posadvice-lead-success .success-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}

.posadvice-lead-success h3 {
    color: #22c55e;
    margin: 0 0 12px 0;
}

.posadvice-lead-success p {
    color: #64748b;
    margin: 0;
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .posadvice-lead-form .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .posadvice-lead-form-wrapper {
        padding: 16px;
    }
    
    .posadvice-submit-btn {
        font-size: 16px;
        padding: 14px 20px;
    }
}
