/* Enhanced Chat Intelligence Styles */

.clarification-response,
.trust-building-response,
.guided-collection-response,
.confirmation-response,
.general-assistance {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.clarification-response h4,
.trust-building-response h4,
.guided-collection-response h4,
.confirmation-response h4,
.general-assistance h4 {
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 1.1em;
    font-weight: 600;
}

.example-box,
.examples-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin: 12px 0;
}

.example-box ul,
.examples-box ul {
    margin: 8px 0 0 20px;
    color: #475569;
}

.info-checklist {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin: 12px 0;
}

.info-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.info-item:last-child {
    border-bottom: none;
}

.trust-indicators {
    margin: 15px 0;
}

.trust-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px;
    margin: 8px 0;
    color: #475569;
}

.trust-item strong {
    color: #1e293b;
}

.progress-bar {
    background: #f1f5f9;
    border-radius: 20px;
    height: 8px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    height: 100%;
    border-radius: 20px;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.8em;
    color: #64748b;
    font-weight: 500;
}

.platform-options {
    margin: 12px 0;
}

.platform {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px;
    margin: 6px 0;
    color: #475569;
}

.business-summary {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.summary-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #1e293b;
}

.next-steps {
    margin-top: 20px;
}

.next-steps h5 {
    color: #1e293b;
    margin-bottom: 10px;
}

.action-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.help-options {
    margin: 15px 0;
}

.help-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.help-item h5 {
    color: #1e293b;
    margin-bottom: 5px;
    font-size: 1em;
}

.help-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9em;
}

.encouragement {
    color: #059669;
    font-weight: 500;
    margin-top: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clarification-response,
.trust-building-response,
.guided-collection-response,
.confirmation-response,
.general-assistance {
    animation: fadeInUp 0.3s ease-out;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .clarification-response,
    .trust-building-response,
    .guided-collection-response,
    .confirmation-response,
    .general-assistance {
        padding: 15px;
        margin: 10px 0;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin: 5px 0;
    }
}