/* ============================================ On Point Chatbot — Editorial Newspaper ============================================ */.chat-widget { position: fixed; bottom: 2rem; right: 1.5rem; z-index: 10002; font-family: var(--font-body, system-ui, sans-serif);}/* Toggle Button — floating bubble, bottom-right */.chat-toggle { position: relative; width: 60px; height: 60px; background: #3D90E9; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; font-size: 1.3rem; line-height: 1; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.18);}.chat-toggle svg { stroke: #fff !important;}.chat-toggle:hover { background: #2d7ad4; color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.25);}.chat-toggle:hover svg { stroke: #fff !important;}.chat-toggle__close { display: none; font-size: 1.1rem; color: #F6F5ED; font-weight: 600;}.chat-toggle__pulse { position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(197, 226, 227, 0.5); animation: chatPulse 2.5s ease-in-out infinite;}.chat-widget--open .chat-toggle__icon { display: none; }.chat-widget--open .chat-toggle__close { display: block; }.chat-widget--open .chat-toggle__pulse { display: none; }.chat-widget--open .chat-toggle { background: #172A35; box-shadow: 0 4px 16px rgba(0,0,0,0.18);}.chat-widget--open .chat-toggle__close { color: #C5E2E3;}@keyframes chatPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.15); opacity: 0; }}/* Chat Window */.chat-window { position: absolute; bottom: 72px; right: 0; width: 420px; max-height: 600px; background: #F6F5ED; border: 2px solid #172A35; border-radius: 0; box-shadow: 4px 4px 0 #172A35; display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.95); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);}.chat-widget--open .chat-window { opacity: 1; visibility: visible; transform: translateY(0) scale(1);}/* Header — dark navy bar like the footer */.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: #172A35; color: #F6F5ED; border-bottom: none;}.chat-header__info { display: flex; align-items: center; gap: 0.75rem;}.chat-header__avatar { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: none; border: none; outline: none; box-shadow: none; padding: 0;}.chat-header__name { font-family: var(--font-headline, 'National 2 Compressed', sans-serif); font-size: 1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #F6F5ED;}.chat-header__status { font-family: var(--font-body, system-ui, sans-serif); font-size: 0.65rem; letter-spacing: 0.05em; color: #C5E2E3; opacity: 0.7;}.chat-header__close { background: none; border: none; color: #F6F5ED; font-size: 1.1rem; cursor: pointer; opacity: 0.4; transition: opacity 0.2s; padding: 0.25rem;}.chat-header__close:hover { opacity: 1; }/* Messages — cream background like the page */.chat-messages { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; min-height: 320px; max-height: 420px; background: #F6F5ED;}.chat-message { display: flex; max-width: 85%;}.chat-message--bot { align-self: flex-start;}.chat-message--user { align-self: flex-end;}.chat-message__bubble { padding: 10px 14px; font-family: var(--font-body, system-ui, sans-serif); font-size: 0.9rem; line-height: 1.6; word-wrap: break-word;}.chat-message--bot .chat-message__bubble { background: transparent; border: 2px solid #172A35; border-radius: 0; color: #172A35; box-shadow: 3px 3px 0 rgba(23, 42, 53, 0.08);}.chat-message--user .chat-message__bubble { background: #172A35; color: #F6F5ED; border: 2px solid #172A35; border-radius: 0; box-shadow: 3px 3px 0 rgba(23, 42, 53, 0.15);}/* Typing indicator */.typing-dots { display: inline-flex; gap: 3px;}.typing-dots span { font-size: 1.25rem; font-weight: 700; animation: typingBounce 1.2s ease-in-out infinite; color: #3D90E9;}.typing-dots span:nth-child(2) { animation-delay: 0.15s; }.typing-dots span:nth-child(3) { animation-delay: 0.3s; }@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4px); }}/* Input — matches contact form style */.chat-input { display: flex; align-items: center; gap: 10px; padding: 12px 20px 16px; border-top: 2px solid #172A35; background: #F6F5ED;}.chat-input input { flex: 1; padding: 10px 0; border: none; border-bottom: 1px solid #172A35; border-radius: 0; font-family: var(--font-body, system-ui, sans-serif); font-size: 0.9rem; outline: none; transition: border-color 0.2s; background: transparent; color: #172A35; -webkit-appearance: none;}.chat-input input::placeholder { color: rgba(23, 42, 53, 0.3);}.chat-input input:focus { border-bottom-color: #3D90E9;}/* Send button — wave-fill hover like other site buttons */.chat-input button { position: relative; overflow: hidden; z-index: 1; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: transparent; border: 2px solid #172A35; border-radius: 0; color: #172A35; cursor: pointer; transition: color 0.2s, box-shadow 0.2s;}.chat-input button::before { content: ''; position: absolute; left: -5%; bottom: 0; width: 110%; height: 0%; background: #172A35; z-index: -1; transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 50% 50% 0 0 / 8px 8px 0 0;}.chat-input button:hover { color: #F6F5ED; box-shadow: 2px 2px 0 #172A35;}.chat-input button:hover::before { height: 110%; border-radius: 0;}/* Scrollbar */.chat-messages::-webkit-scrollbar { width: 3px;}.chat-messages::-webkit-scrollbar-track { background: transparent;}.chat-messages::-webkit-scrollbar-thumb { background: rgba(23, 42, 53, 0.15); border-radius: 0;}/* Lead Capture Form */.chat-lead-form { margin: 4px 0; padding: 16px; border: 2px solid #172A35; background: #fff; display: flex; flex-direction: column; gap: 10px;}.chat-lead-form__title { font-family: var(--font-headline, 'National 2 Compressed', sans-serif); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #172A35;}.chat-lead-form__input { width: 100%; padding: 8px 0; border: none; border-bottom: 1px solid rgba(23, 42, 53, 0.25); border-radius: 0; font-family: var(--font-body, system-ui, sans-serif); font-size: 0.85rem; outline: none; background: transparent; color: #172A35; transition: border-color 0.2s; -webkit-appearance: none; box-sizing: border-box;}.chat-lead-form__input:focus { border-bottom-color: #3D90E9;}.chat-lead-form__input::placeholder { color: rgba(23, 42, 53, 0.35);}select.chat-lead-form__input { cursor: pointer; color: rgba(23, 42, 53, 0.35);}select.chat-lead-form__input:valid:not([value=""]) { color: #172A35;}.chat-lead-form__btn { position: relative; overflow: hidden; z-index: 1; margin-top: 4px; padding: 10px 20px; background: transparent; border: 2px solid #172A35; border-radius: 0; font-family: var(--font-headline, 'National 2 Compressed', sans-serif); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #172A35; cursor: pointer; transition: color 0.2s;}.chat-lead-form__btn::before { content: ''; position: absolute; left: -5%; bottom: 0; width: 110%; height: 0%; background: #172A35; z-index: -1; transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 50% 50% 0 0 / 8px 8px 0 0;}.chat-lead-form__btn:hover { color: #F6F5ED;}.chat-lead-form__btn:hover::before { height: 110%; border-radius: 0;}.chat-lead-form__btn:disabled { opacity: 0.5; cursor: not-allowed;}.chat-lead-form__btn:disabled:hover { color: #172A35;}.chat-lead-form__btn:disabled:hover::before { height: 0%;}.chat-lead-form__error { font-family: var(--font-body, system-ui, sans-serif); font-size: 0.78rem; color: #ff4e42; min-height: 0;}.chat-lead-form__success { font-family: var(--font-body, system-ui, sans-serif); font-size: 0.88rem; color: #172A35; padding: 12px 0; font-weight: 600;}/* Mobile */@media (max-width: 480px) { .chat-widget { bottom: 1rem; right: 1rem; } .chat-window { width: calc(100vw - 2rem); right: 0; max-height: 75vh; }}