/* Help Button Container */
.help-button-container {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem 0;
}

.btn-help {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-help:active {
    transform: translateY(0);
}

/* Compact Contact CTA Card */
.contact-cta-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.contact-cta-header {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-cta-header h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: white;
    font-weight: 700;
}

.contact-cta-header p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

.contact-cta-options {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-option h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: white;
    font-weight: 600;
}

.cta-option .btn-primary {
    background: white;
    color: #2563eb;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 0.5rem;
}

.cta-option .btn-primary:hover {
    background: #f8fafc;
    transform: scale(1.02);
}

.cta-phone-big {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.cta-phone-big:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.03);
}

.cta-subtext {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.cta-divider {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.7;
}

/* Compact Contact Form Card */
.contact-form-card {
    background: white;
    padding: 1.5rem;
    border-radius: 14px;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #2563eb;
}

.form-step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h4 {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 700;
}

.form-step-content {
    max-width: 480px;
    margin: 0 auto;
}

.form-step-content .form-group {
    margin-bottom: 1rem;
}

.form-step-content label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-step-content input,
.form-step-content select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-step-content input:focus,
.form-step-content select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-step-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.form-step-actions button {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.form-step-content .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.form-step-content .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-step-actions .btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-step-actions .btn-secondary:hover {
    background: #e2e8f0;
}

.form-step-actions .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-step-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-success {
    text-align: center;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #10b981;
    color: white;
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.form-success h3 {
    font-size: 1.75rem;
    color: #10b981;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.form-success p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0.4rem;
}

.results-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Compact result cards */
.result-card {
    padding: 0.85rem !important;
    margin-bottom: 0.65rem !important;
}

.result-card.primary {
    padding: 1rem 0.85rem !important;
}

.result-value {
    font-size: 1.85rem !important;
    margin: 0.25rem 0 0.4rem !important;
}

.result-label {
    font-size: 0.75rem !important;
    margin-bottom: 0.25rem !important;
}

.result-details {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

.result-detail-row {
    padding: 0.4rem 0 !important;
    font-size: 0.9rem !important;
}

.result-detail-label {
    font-size: 0.85rem !important;
}

.result-detail-value {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.result-disclaimer {
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
}

.result-disclaimer p {
    margin: 0 !important;
}

.result-disclaimer small {
    font-size: 0.8rem !important;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .contact-cta-card {
        padding: 1.25rem;
    }
    
    .contact-cta-header h3 {
        font-size: 1.25rem;
    }
    
    .contact-cta-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .cta-divider {
        display: none;
    }
    
    .cta-phone-big {
        font-size: 1.35rem;
    }
    
    .contact-form-card {
        padding: 1.25rem;
    }
    
    .form-step h4 {
        font-size: 1.15rem;
    }
}
