/* =============================================================================
 * AI Assistant Widget — Visa Advisor
 * Floating chat consultant with navy + gold theme matching site identity.
 * ========================================================================== */

#va-ai-widget {
	--va-ai-navy: #0a1628;
	--va-ai-navy-mid: #0f2040;
	--va-ai-navy-light: #162d52;
	--va-ai-blue: #1a4a8a;
	--va-ai-blue-bright: #2563c4;
	--va-ai-gold: #c9a84c;
	--va-ai-gold-light: #e4c06e;
	--va-ai-gold-pale: #f5e6c0;
	--va-ai-white: #fff;
	--va-ai-off-white: #f7f8fc;
	--va-ai-text: #1a2540;
	--va-ai-muted: #6b7a99;
	--va-ai-border: #e2e7f1;
	--va-ai-bubble-user: linear-gradient(135deg, #1a4a8a, #2563c4);
	--va-ai-bubble-bot: #f4f6fb;
	--va-ai-shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.25);
	--va-ai-shadow-md: 0 8px 24px rgba(10, 22, 40, 0.15);

	position: fixed;
	z-index: 9998;
	font-family: 'Cairo', system-ui, -apple-system, sans-serif;
	direction: ltr; /* container LTR; inner content sets RTL where needed */

	/* WhatsApp FAB is on the LEFT (left: 1.5rem) — we go RIGHT */
	bottom: 24px;
	right: 24px;
	left: auto;
}

/* =============================================================================
 * LAUNCHER BUTTON
 * ========================================================================== */

.va-ai-launcher {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, var(--va-ai-navy) 0%, var(--va-ai-navy-light) 100%);
	color: var(--va-ai-white);
	border: 1.5px solid rgba(201, 168, 76, 0.3);
	border-radius: 999px;
	padding: 8px 18px 8px 8px;
	cursor: pointer;
	box-shadow: var(--va-ai-shadow-md);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	font-family: inherit;
	direction: rtl;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.va-ai-launcher:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(10, 22, 40, 0.3), 0 0 0 4px rgba(201, 168, 76, 0.15);
	border-color: rgba(201, 168, 76, 0.55);
}

.va-ai-launcher:active {
	transform: translateY(0);
}

.va-ai-launcher-bubble {
	position: relative;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--va-ai-gold) 0%, var(--va-ai-gold-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--va-ai-navy);
	flex-shrink: 0;
}

.va-ai-launcher-bubble svg {
	transform: scaleX(-1); /* mirror chat icon for RTL feel */
}

.va-ai-launcher-pulse {
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.4);
	animation: vaAiPulse 2.4s ease-out infinite;
	z-index: -1;
}

@keyframes vaAiPulse {
	0%   { transform: scale(1);   opacity: 0.5; }
	100% { transform: scale(1.6); opacity: 0; }
}

.va-ai-launcher-dot {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #22c55e;
	border: 2px solid var(--va-ai-navy);
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
	animation: vaAiBlink 2.5s ease-in-out infinite;
}

@keyframes vaAiBlink {
	0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
	50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.va-ai-launcher-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--va-ai-white);
	letter-spacing: 0.01em;
	white-space: nowrap;
}

/* When chat is open, hide launcher */
#va-ai-widget.va-ai-open .va-ai-launcher {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px) scale(0.9);
}

/* =============================================================================
 * CHAT PANEL
 * ========================================================================== */

.va-ai-panel {
	position: absolute;
	bottom: 0;
	right: 0;
	left: auto;
	width: 380px;
	max-width: calc(100vw - 32px);
	height: 580px;
	max-height: calc(100vh - 100px);
	background: var(--va-ai-white);
	border-radius: 20px;
	box-shadow: var(--va-ai-shadow-lg);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: translateY(20px) scale(0.96);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
	border: 1px solid var(--va-ai-border);
	direction: rtl;
}

#va-ai-widget.va-ai-open .va-ai-panel {
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

/* =============================================================================
 * HEADER
 * ========================================================================== */

.va-ai-header {
	background: linear-gradient(135deg, var(--va-ai-navy) 0%, var(--va-ai-navy-mid) 60%, var(--va-ai-navy-light) 100%);
	color: var(--va-ai-white);
	padding: 18px 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.va-ai-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 0%, rgba(201, 168, 76, 0.18), transparent 50%),
		radial-gradient(circle at 10% 100%, rgba(37, 99, 196, 0.25), transparent 60%);
	pointer-events: none;
}

.va-ai-header-info {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.va-ai-avatar {
	position: relative;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--va-ai-gold) 0%, var(--va-ai-gold-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

.va-ai-avatar-letter {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--va-ai-navy);
}

.va-ai-avatar-status {
	position: absolute;
	bottom: 1px;
	right: 1px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #22c55e;
	border: 2px solid var(--va-ai-navy);
}

.va-ai-header-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.va-ai-header-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--va-ai-white);
}

.va-ai-header-role {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.75);
	display: flex;
	align-items: center;
	gap: 6px;
}

.va-ai-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
}

.va-ai-close {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: var(--va-ai-white);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	position: relative;
}

.va-ai-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* =============================================================================
 * MESSAGES
 * ========================================================================== */

.va-ai-messages {
	flex: 1;
	overflow-y: auto;
	padding: 18px 16px 12px;
	background: var(--va-ai-off-white);
	display: flex;
	flex-direction: column;
	gap: 10px;
	scroll-behavior: smooth;
}

.va-ai-messages::-webkit-scrollbar { width: 6px; }
.va-ai-messages::-webkit-scrollbar-track { background: transparent; }
.va-ai-messages::-webkit-scrollbar-thumb {
	background: rgba(10, 22, 40, 0.2);
	border-radius: 3px;
}

.va-ai-msg {
	max-width: 85%;
	display: flex;
	flex-direction: column;
	gap: 4px;
	animation: vaAiMsgIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.va-ai-msg-bot { align-self: flex-start; }
.va-ai-msg-user { align-self: flex-end; }

.va-ai-msg-bubble {
	padding: 10px 14px;
	border-radius: 16px;
	font-size: 0.92rem;
	line-height: 1.65;
	word-wrap: break-word;
}

.va-ai-msg-bot .va-ai-msg-bubble {
	background: var(--va-ai-bubble-bot);
	color: var(--va-ai-text);
	border-bottom-right-radius: 4px;
	border: 1px solid var(--va-ai-border);
}

.va-ai-msg-user .va-ai-msg-bubble {
	background: var(--va-ai-bubble-user);
	color: var(--va-ai-white);
	border-bottom-left-radius: 4px;
}

.va-ai-msg-bubble a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(201, 168, 76, 0.5);
	text-underline-offset: 3px;
	font-weight: 600;
}

.va-ai-msg-user .va-ai-msg-bubble a {
	color: var(--va-ai-gold-pale);
	text-decoration-color: var(--va-ai-gold-light);
}

.va-ai-msg-time {
	font-size: 0.68rem;
	color: var(--va-ai-muted);
	padding: 0 6px;
}

.va-ai-msg-user .va-ai-msg-time { text-align: left; }

/* Source links inside bot message */
.va-ai-sources {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
}

.va-ai-source-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	background: var(--va-ai-white);
	border: 1px solid var(--va-ai-border);
	border-radius: 999px;
	font-size: 0.72rem;
	color: var(--va-ai-blue);
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 600;
}

.va-ai-source-chip:hover {
	background: var(--va-ai-blue);
	color: var(--va-ai-white);
	border-color: var(--va-ai-blue);
}

/* Typing indicator */
.va-ai-typing {
	align-self: flex-start;
	background: var(--va-ai-bubble-bot);
	border: 1px solid var(--va-ai-border);
	border-radius: 16px;
	border-bottom-right-radius: 4px;
	padding: 14px 16px;
	display: flex;
	gap: 4px;
	animation: vaAiMsgIn 0.3s ease;
}

.va-ai-typing span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--va-ai-muted);
	animation: vaAiTyping 1.2s ease-in-out infinite;
}

.va-ai-typing span:nth-child(2) { animation-delay: 0.15s; }
.va-ai-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes vaAiTyping {
	0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
	30%           { transform: translateY(-5px); opacity: 1; }
}

/* =============================================================================
 * QUICK REPLIES
 * ========================================================================== */

.va-ai-quick-replies {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 16px 8px;
	background: var(--va-ai-off-white);
}

.va-ai-quick-replies:empty {
	display: none;
}

.va-ai-quick-reply {
	background: var(--va-ai-white);
	border: 1px solid var(--va-ai-border);
	color: var(--va-ai-blue);
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}

.va-ai-quick-reply:hover {
	background: var(--va-ai-blue);
	color: var(--va-ai-white);
	border-color: var(--va-ai-blue);
	transform: translateY(-1px);
}

/* =============================================================================
 * INPUT FORM
 * ========================================================================== */

.va-ai-form {
	display: flex;
	gap: 8px;
	padding: 12px 14px;
	background: var(--va-ai-white);
	border-top: 1px solid var(--va-ai-border);
	align-items: flex-end;
	flex-shrink: 0;
}

.va-ai-input {
	flex: 1;
	border: 1.5px solid var(--va-ai-border);
	border-radius: 14px;
	padding: 10px 14px;
	font-size: 0.92rem;
	font-family: inherit;
	resize: none;
	max-height: 100px;
	min-height: 42px;
	color: var(--va-ai-text);
	background: var(--va-ai-off-white);
	transition: border-color 0.2s, background 0.2s;
	line-height: 1.5;
}

.va-ai-input:focus {
	outline: none;
	border-color: var(--va-ai-gold);
	background: var(--va-ai-white);
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.va-ai-input::placeholder {
	color: var(--va-ai-muted);
}

.va-ai-send {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(135deg, var(--va-ai-gold) 0%, var(--va-ai-gold-light) 100%);
	color: var(--va-ai-navy);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}

.va-ai-send:hover:not(:disabled) {
	transform: scale(1.08);
	box-shadow: 0 6px 16px rgba(201, 168, 76, 0.5);
}

.va-ai-send:active {
	transform: scale(0.95);
}

.va-ai-send:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.va-ai-send svg {
	transform: scaleX(-1); /* mirror for RTL */
}

/* =============================================================================
 * FOOTER
 * ========================================================================== */

.va-ai-footer {
	padding: 6px 14px 10px;
	background: var(--va-ai-white);
	border-top: 1px solid var(--va-ai-border);
	text-align: center;
	font-size: 0.68rem;
	color: var(--va-ai-muted);
}

/* =============================================================================
 * MOBILE
 * ========================================================================== */

@media (max-width: 480px) {
	#va-ai-widget {
		bottom: 16px;
		right: 16px;
		left: auto;
	}

	.va-ai-launcher-label {
		display: none;
	}

	.va-ai-launcher {
		padding: 6px;
	}

	/* When closed: launcher is bottom-right (small button) */
	/* When open: panel takes full width above */
	#va-ai-widget.va-ai-open {
		left: 16px;
		right: 16px;
	}

	.va-ai-panel {
		position: fixed;
		bottom: 16px;
		left: 16px;
		right: 16px;
		width: auto;
		max-width: none;
		height: calc(100vh - 100px);
		max-height: calc(100vh - 100px);
	}
}

/* Avoid conflict with WhatsApp FAB which sits bottom-right */
.wa-fab {
	z-index: 9997 !important;
}

/* =============================================================================
 * ACTION BUTTONS (Contact form trigger, etc)
 * ========================================================================== */

.va-ai-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.va-ai-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border: none;
	border-radius: 12px;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	flex: 1;
	min-width: 130px;
}

.va-ai-action-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.va-ai-action-btn:active {
	transform: translateY(0);
}

.va-ai-action-primary {
	background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
	color: #fff;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.va-ai-action-secondary {
	background: var(--va-ai-white);
	color: var(--va-ai-blue);
	border: 1.5px solid var(--va-ai-border);
}

/* =============================================================================
 * SOFT FORM (inline mid-chat lead capture)
 * Lighter than the modal — shows up directly inside the bot message bubble
 * after the user clicks "Yes, contact me" on a nudge.
 * ========================================================================== */

.va-ai-soft-form {
	margin-top: 10px;
	padding: 12px;
	background: rgba(37, 211, 102, 0.06);
	border: 1px dashed rgba(37, 211, 102, 0.4);
	border-radius: 12px;
	animation: vaSoftFormIn 0.3s ease;
}

@keyframes vaSoftFormIn {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.va-ai-soft-form-inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.va-ai-soft-form-inner input {
	padding: 10px 12px;
	border: 1.5px solid var(--va-ai-border);
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.9rem;
	background: #fff;
	color: var(--va-ai-text);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.va-ai-soft-form-inner input:focus {
	border-color: #25d366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.va-ai-soft-form-inner input[type="tel"] {
	direction: ltr;
	text-align: left;
}

.va-ai-soft-form-inner button[type="submit"] {
	margin-top: 4px;
	width: 100%;
}

/* =============================================================================
 * CONTACT FORM MODAL
 * ========================================================================== */

.va-ai-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 22, 40, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	animation: vaAiOverlayIn 0.25s ease;
	font-family: 'Cairo', system-ui, -apple-system, sans-serif;
	direction: rtl;
}

@keyframes vaAiOverlayIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.va-ai-modal {
	background: #fff;
	border-radius: 20px;
	max-width: 440px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 80px rgba(10, 22, 40, 0.4);
	animation: vaAiModalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes vaAiModalIn {
	from { opacity: 0; transform: translateY(30px) scale(0.95); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.va-ai-modal-header {
	background: linear-gradient(135deg, #0a1628 0%, #162d52 100%);
	color: #fff;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-radius: 20px 20px 0 0;
}

.va-ai-modal-header h3 {
	margin: 0;
	font-size: 1.15rem;
	color: #c9a84c;
	font-weight: 700;
}

.va-ai-modal-close {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.4rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	font-family: inherit;
}

.va-ai-modal-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

.va-ai-modal-body {
	padding: 22px;
}

.va-ai-modal-subtitle {
	color: #6b7a99;
	font-size: 0.92rem;
	margin: 0 0 18px;
	line-height: 1.6;
}

.va-ai-field {
	display: block;
	margin-bottom: 14px;
}

.va-ai-field span {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #1a2540;
	margin-bottom: 6px;
}

.va-ai-field input,
.va-ai-field textarea {
	width: 100%;
	border: 1.5px solid #e2e7f1;
	border-radius: 12px;
	padding: 11px 14px;
	font-size: 0.95rem;
	font-family: inherit;
	background: #f7f8fc;
	color: #1a2540;
	transition: border-color 0.2s, background 0.2s;
	box-sizing: border-box;
}

.va-ai-field input:focus,
.va-ai-field textarea:focus {
	outline: none;
	border-color: #c9a84c;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.va-ai-field textarea {
	resize: vertical;
	min-height: 70px;
}

.va-ai-modal-actions {
	margin-top: 18px;
}

.va-ai-modal-actions .va-ai-action-btn {
	width: 100%;
	padding: 13px 20px;
	font-size: 0.95rem;
}

.va-ai-modal-privacy {
	margin: 14px 0 0;
	font-size: 0.78rem;
	color: #6b7a99;
	text-align: center;
	line-height: 1.5;
}

/* Mobile modal */
@media (max-width: 480px) {
	.va-ai-modal {
		max-width: 100%;
		max-height: 95vh;
		border-radius: 16px;
	}

	.va-ai-modal-header {
		padding: 16px 18px;
		border-radius: 16px 16px 0 0;
	}

	.va-ai-modal-body {
		padding: 18px;
	}
}

/* =============================================================================
 * PROACTIVE ENGAGEMENT BUBBLE
 * ========================================================================== */

.va-ai-proactive-bubble {
	position: absolute;
	bottom: 75px;
	right: 0;
	width: 320px;
	max-width: calc(100vw - 32px);
	animation: vaAiProactiveIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 9999;
}

@keyframes vaAiProactiveIn {
	0%   { opacity: 0; transform: translateY(20px) scale(0.85); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}

.va-ai-proactive-bubble.va-ai-proactive-dismissing {
	animation: vaAiProactiveOut 0.4s ease forwards;
}

@keyframes vaAiProactiveOut {
	to { opacity: 0; transform: translateY(10px) scale(0.92); }
}

.va-ai-proactive-content {
	background: var(--va-ai-white);
	border-radius: 18px;
	padding: 18px 18px 14px;
	box-shadow: 0 12px 40px rgba(10, 22, 40, 0.18);
	border: 1px solid var(--va-ai-border);
	position: relative;
	direction: rtl;
}

.va-ai-proactive-content::after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: 30px;
	width: 16px;
	height: 16px;
	background: var(--va-ai-white);
	border-right: 1px solid var(--va-ai-border);
	border-bottom: 1px solid var(--va-ai-border);
	transform: rotate(45deg);
}

.va-ai-proactive-close {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(10, 22, 40, 0.06);
	border: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	color: var(--va-ai-muted);
	transition: background 0.2s, color 0.2s;
	font-family: inherit;
}

.va-ai-proactive-close:hover {
	background: rgba(10, 22, 40, 0.12);
	color: var(--va-ai-text);
}

.va-ai-proactive-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--va-ai-gold) 0%, var(--va-ai-gold-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--va-ai-navy);
	font-weight: 800;
	font-size: 1.25rem;
	margin-bottom: 10px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
	animation: vaAiAvatarPulse 2s ease-in-out infinite;
}

@keyframes vaAiAvatarPulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.05); }
}

.va-ai-proactive-text {
	font-size: 0.92rem;
	color: var(--va-ai-text);
	line-height: 1.65;
	margin-bottom: 12px;
}

.va-ai-proactive-text strong {
	color: var(--va-ai-blue);
}

.va-ai-proactive-cta {
	width: 100%;
	background: linear-gradient(135deg, var(--va-ai-navy) 0%, var(--va-ai-navy-light) 100%);
	color: var(--va-ai-white);
	border: 1.5px solid rgba(201, 168, 76, 0.3);
	border-radius: 12px;
	padding: 10px 16px;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	font-family: inherit;
}

.va-ai-proactive-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(10, 22, 40, 0.25);
}

@media (max-width: 480px) {
	.va-ai-proactive-bubble {
		width: calc(100vw - 32px);
		bottom: 70px;
		right: 0;
	}
}
