/* Smart Chat CTA Button - Minimal Design with Subtle Accent */
.smart-chat-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 2rem auto;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fc 100%);
    border: 1px solid #d4e5f7;
    border-right: 3px solid #4a90d9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    max-width: 480px;
    font-family: inherit;
    position: relative;
    box-shadow: 0 2px 8px rgba(74, 144, 217, 0.08);
}

.smart-chat-cta:hover {
    background: linear-gradient(135deg, #eef5fc 0%, #e3eef9 100%);
    border-color: #b8d4f0;
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.15);
    transform: translateY(-2px);
}

.smart-chat-cta:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 2px 6px rgba(74, 144, 217, 0.1);
}

.smart-chat-cta-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4a90d9 0%, #3a7bc8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(74, 144, 217, 0.3);
}

.smart-chat-cta-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}

.smart-chat-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.smart-chat-cta-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a3a5c;
    margin: 0;
    line-height: 1.4;
}

.smart-chat-cta-subtitle {
    font-size: 12px;
    color: #5a7a9a;
    margin: 0;
    line-height: 1.3;
}

.smart-chat-cta-badge {
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 11px;
    color: #28a745;
    background: rgba(40, 167, 69, 0.95);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
    z-index: 1;
}

.smart-chat-cta-button {
    background: linear-gradient(135deg, #4a90d9 0%, #3a7bc8 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(74, 144, 217, 0.3);
    white-space: nowrap;
    margin-right: auto;
}

.smart-chat-cta-button:hover {
    background: linear-gradient(135deg, #3a7bc8 0%, #2a6bb8 100%);
    box-shadow: 0 4px 12px rgba(74, 144, 217, 0.4);
    transform: translateY(-1px);
}

.smart-chat-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(74, 144, 217, 0.3);
}

/* Dark mode support */
[data-bs-theme="dark"] .smart-chat-cta {
    background: linear-gradient(135deg, #2a3441 0%, #232b36 100%);
    border-color: #3d4a5c;
    border-right-color: #5a9ae0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .smart-chat-cta:hover {
    background: linear-gradient(135deg, #323d4d 0%, #2a3441 100%);
    border-color: #4d5d72;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .smart-chat-cta-icon {
    background: linear-gradient(135deg, #5a9ae0 0%, #4a8ad0 100%);
}

[data-bs-theme="dark"] .smart-chat-cta-icon svg {
    fill: #ffffff;
}

[data-bs-theme="dark"] .smart-chat-cta-title {
    color: #e8f0f8;
}

[data-bs-theme="dark"] .smart-chat-cta-subtitle {
    color: #9ab0c8;
}

[data-bs-theme="dark"] .smart-chat-cta-badge {
    background: rgba(40, 167, 69, 0.95);
    color: #ffffff;
}

[data-bs-theme="dark"] .smart-chat-cta-button {
    background: linear-gradient(135deg, #5a9ae0 0%, #4a8ad0 100%);
}

[data-bs-theme="dark"] .smart-chat-cta-button:hover {
    background: linear-gradient(135deg, #4a8ad0 0%, #3a7ac0 100%);
}

/* Responsive */
@media (max-width: 576px) {
    .smart-chat-cta {
        padding: 14px 16px;
        gap: 10px;
        margin: 1.5rem 10px;
        max-width: calc(100% - 20px);
    }

    .smart-chat-cta-icon {
        width: 28px;
        height: 28px;
        padding: 5px;
    }

    .smart-chat-cta-title {
        font-size: 13px;
    }

    .smart-chat-cta-subtitle {
        font-size: 11px;
    }

    .smart-chat-cta-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: -12px;
        left: 12px;
    }
    
    .smart-chat-cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}
