 /* Live Chat Widget Container */
 
 .live-chat-widget {
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 9999;
     font-family: 'Lato', sans-serif;
 }
 /* Chat Button */
 
 .chat-button {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
     border: none;
     color: white;
     font-size: 24px;
 }
 
 .chat-button:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
 }
 
 .chat-button i {
     transition: transform 0.3s ease;
 }
 
 .chat-button.active i {
     transform: rotate(45deg);
 }
 /* Chat Window */
 
 .chat-window {
     position: absolute;
     bottom: 80px;
     right: 0;
     width: 350px;
     height: 500px;
     background: white;
     border-radius: 15px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
     display: none;
     flex-direction: column;
     overflow: hidden;
     border: 1px solid #e1e5e9;
 }
 
 .chat-window.active {
     display: flex;
 }
 /* Chat Header */
 
 .chat-header {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 15px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }
 
 .chat-header h4 {
     margin: 0;
     font-size: 16px;
     font-weight: 600;
 }
 
 .chat-status {
     display: flex;
     align-items: center;
     font-size: 12px;
     opacity: 0.9;
 }
 
 .status-dot {
     width: 8px;
     height: 8px;
     background: #4ade80;
     border-radius: 50%;
     margin-right: 6px;
     animation: pulse 2s infinite;
 }
 
 @keyframes pulse {
     0% {
         opacity: 1;
     }
     50% {
         opacity: 0.5;
     }
     100% {
         opacity: 1;
     }
 }
 
 .close-chat {
     background: none;
     border: none;
     color: white;
     font-size: 18px;
     cursor: pointer;
     padding: 0;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 /* Chat Messages Area */
 
 .chat-messages {
     flex: 1;
     padding: 20px;
     overflow-y: auto;
     background: #f8f9fa;
 }
 
 .message {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
 }
 
 .message.user {
     justify-content: flex-end;
 }
 
 .message-content {
     max-width: 80%;
     padding: 12px 16px;
     border-radius: 18px;
     font-size: 14px;
     line-height: 1.4;
 }
 
 .message.bot .message-content {
     background: white;
     color: #333;
     border: 1px solid #e1e5e9;
 }
 
 .message.user .message-content {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
 }
 
 .message-time {
     font-size: 11px;
     color: #999;
     margin-top: 4px;
     text-align: center;
 }
 /* Chat Input Area */
 
 .chat-input-area {
     padding: 15px 20px;
     background: white;
     border-top: 1px solid #e1e5e9;
 }
 
 .chat-input-container {
     display: flex;
     align-items: center;
     gap: 10px;
 }
 
 .chat-input {
     flex: 1;
     border: 1px solid #e1e5e9;
     border-radius: 25px;
     padding: 12px 16px;
     font-size: 14px;
     outline: none;
     transition: border-color 0.3s ease;
 }
 
 .chat-input:focus {
     border-color: #667eea;
 }
 
 .send-button {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border: none;
     border-radius: 50%;
     color: white;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }
 
 .send-button:hover {
     transform: scale(1.1);
 }
 
 .send-button:disabled {
     opacity: 0.5;
     cursor: not-allowed;
     transform: none;
 }
 /* Welcome Message */
 
 .welcome-message {
     text-align: center;
     padding: 20px;
     color: #666;
 }
 
 .welcome-message h5 {
     margin: 0 0 10px 0;
     color: #333;
 }
 
 .welcome-message p {
     margin: 0;
     font-size: 13px;
     line-height: 1.4;
 }
 /* Responsive Design */
 
 @media (max-width: 480px) {
     .chat-window {
         width: 300px;
         height: 450px;
         right: -10px;
     }
     .live-chat-widget {
         bottom: 15px;
         right: 15px;
     }
 }
 /* Loading Animation */
 
 .typing-indicator {
     display: flex;
     align-items: center;
     gap: 4px;
     padding: 12px 16px;
     background: white;
     border-radius: 18px;
     border: 1px solid #e1e5e9;
     max-width: 80%;
 }
 
 .typing-dot {
     width: 6px;
     height: 6px;
     background: #999;
     border-radius: 50%;
     animation: typing 1.4s infinite ease-in-out;
 }
 
 .typing-dot:nth-child(1) {
     animation-delay: -0.32s;
 }
 
 .typing-dot:nth-child(2) {
     animation-delay: -0.16s;
 }
 
 @keyframes typing {
     0%,
     80%,
     100% {
         transform: scale(0.8);
         opacity: 0.5;
     }
     40% {
         transform: scale(1);
         opacity: 1;
     }
 }