/* ============================================
   POTOLO CHATBOT WIDGET - MODERN DESIGN
   ============================================ */

/* Chatbot Widget Container */
.potolo-chatbot-widget,
#potolo-chatbot-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    isolation: isolate; /* Create new stacking context */
}

/* Ensure all icons maintain proper colors - override any page-specific styles */
.potolo-chatbot-widget i,
#potolo-chatbot-widget i,
.potolo-chatbot-widget .fas,
#potolo-chatbot-widget .fas,
.potolo-chatbot-widget .fab,
#potolo-chatbot-widget .fab,
.potolo-chatbot-widget .fa,
#potolo-chatbot-widget .fa {
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important; /* Solid icons need 900 weight */
}

/* Specific icon fixes - ensure they display */
.potolo-chatbot-widget .fa-robot::before,
#potolo-chatbot-widget .fa-robot::before {
    content: "\f544" !important; /* Robot icon unicode */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.potolo-chatbot-widget .fa-xmark::before,
#potolo-chatbot-widget .fa-xmark::before,
.potolo-chatbot-widget .fa-times::before,
#potolo-chatbot-widget .fa-times::before {
    content: "\f00d" !important; /* X mark icon unicode */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.potolo-chatbot-widget .fa-robot,
#potolo-chatbot-widget .fa-robot,
.potolo-chatbot-widget .fa-xmark,
#potolo-chatbot-widget .fa-xmark,
.potolo-chatbot-widget .fa-times,
#potolo-chatbot-widget .fa-times {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    speak: none !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
}

/* Toggle Button */
.potolo-chatbot-widget .chatbot-toggle-btn,
#potolo-chatbot-widget .chatbot-toggle-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00ADD4 0%, #008fa9 100%) !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 173, 212, 0.4) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 24px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    z-index: 10000 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.potolo-chatbot-widget .chatbot-toggle-btn i,
#potolo-chatbot-widget .chatbot-toggle-btn i,
.potolo-chatbot-widget .chatbot-toggle-btn .fa-comments,
#potolo-chatbot-widget .chatbot-toggle-btn .fa-comments,
.potolo-chatbot-widget .chatbot-toggle-btn .fas,
#potolo-chatbot-widget .chatbot-toggle-btn .fas {
    color: #ffffff !important;
    font-size: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    float: none !important;
    transform: none !important;
    text-indent: 0 !important;
}

.potolo-chatbot-widget .chatbot-toggle-btn:hover,
#potolo-chatbot-widget .chatbot-toggle-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(0, 173, 212, 0.6) !important;
    background: linear-gradient(135deg, #008fa9 0%, #007a94 100%) !important;
}

.potolo-chatbot-widget .chatbot-toggle-btn:hover i,
#potolo-chatbot-widget .chatbot-toggle-btn:hover i {
    color: #ffffff !important;
}

.chatbot-toggle-btn:active {
    transform: scale(0.95);
}

/* Notification Badge */
.chatbot-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #ffffff;
    animation: pulse 2s infinite;
}

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

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, #00ADD4 0%, #008fa9 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    border-radius: 20px 20px 0 0;
}

.chatbot-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chatbot-avatar {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    backdrop-filter: blur(10px) !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    position: relative !important;
}

.chatbot-avatar i,
.chatbot-avatar .fa-robot,
.chatbot-avatar .fas {
    color: #ffffff !important;
    font-size: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    float: none !important;
    transform: none !important;
    text-indent: 0 !important;
}

.chatbot-header-info {
    flex: 1;
}

.chatbot-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.chatbot-subtitle {
    font-size: 12px;
    margin: 4px 0 0 0;
    color: #ffffff;
    opacity: 1;
    font-weight: 400;
}

.chatbot-close-btn,
.chatbot-clear-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    font-size: 14px !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    position: relative !important;
}

.chatbot-close-btn i,
.chatbot-clear-btn i,
.chatbot-close-btn .fa-xmark,
.chatbot-clear-btn .fa-xmark,
.chatbot-close-btn .fa-trash-alt,
.chatbot-clear-btn .fa-trash-alt,
.chatbot-close-btn .fas,
.chatbot-clear-btn .fas {
    color: #ffffff !important;
    font-size: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    float: none !important;
    transform: none !important;
    text-indent: 0 !important;
}

.chatbot-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-clear-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chatbot-clear-btn:active {
    transform: scale(0.95);
}

/* Messages Container */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

/* Hide scrollbar for all browsers */
.chatbot-messages::-webkit-scrollbar {
    display: none;
    width: 0;
}

.chatbot-messages {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Message */
.chatbot-message {
    display: flex;
    gap: 10px;
    animation: messageSlideIn 0.3s ease-out;
}

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

.chatbot-message-user {
    flex-direction: row-reverse;
}

.chatbot-message-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00ADD4 0%, #008fa9 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    position: relative !important;
}

.chatbot-message-avatar i,
.chatbot-message-avatar .fa-robot,
.chatbot-message-avatar .fa-user,
.chatbot-message-avatar .fas {
    color: #ffffff !important;
    font-size: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    float: none !important;
    transform: none !important;
    text-indent: 0 !important;
}

.chatbot-message-user .chatbot-message-avatar {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%) !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    position: relative !important;
}

.chatbot-message-user .chatbot-message-avatar i,
.chatbot-message-user .chatbot-message-avatar .fa-user,
.chatbot-message-user .chatbot-message-avatar .fa-robot,
.chatbot-message-user .chatbot-message-avatar .fas {
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    float: none !important;
    transform: none !important;
    text-indent: 0 !important;
}

.chatbot-message-content {
    max-width: 75%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chatbot-message-user .chatbot-message-content {
    align-items: flex-end;
}

.chatbot-message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    line-height: 1.5;
}

.chatbot-message-user .chatbot-message-bubble {
    background: linear-gradient(135deg, #00ADD4 0%, #008fa9 100%);
    color: #ffffff;
}

.chatbot-message-bubble p {
    margin: 0;
    font-size: 14px;
    color: #333333;
}

.chatbot-message-user .chatbot-message-bubble p {
    color: #ffffff;
}

/* Links in bot messages - visible teal color (but not WhatsApp button) */
.chatbot-message-bot .chatbot-message-bubble a:not(.chatbot-whatsapp-btn):not(.chatbot-app-store-btn) {
    color: #00ADD4 !important;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.chatbot-message-bot .chatbot-message-bubble a:not(.chatbot-whatsapp-btn):not(.chatbot-app-store-btn):hover {
    color: #008fa9 !important;
}

/* Links in user messages - visible white/yellow (but not WhatsApp button) */
.chatbot-message-user .chatbot-message-bubble a:not(.chatbot-whatsapp-btn):not(.chatbot-app-store-btn) {
    color: #ffffff !important;
    text-decoration: underline;
    font-weight: 500;
    opacity: 0.95;
}

.chatbot-message-user .chatbot-message-bubble a:not(.chatbot-whatsapp-btn):not(.chatbot-app-store-btn):hover {
    color: #ffffcc !important;
}

.chatbot-message-time {
    font-size: 11px;
    color: #6c757d;
    padding: 0 4px;
}

.chatbot-message-user .chatbot-message-time {
    color: #6c757d;
}

/* Typing Indicator */
.chatbot-typing {
    padding: 0 20px 10px;
    background: #f8f9fa;
}

.chatbot-typing-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 18px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chatbot-typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ADD4;
    animation: typingDot 1.4s infinite ease-in-out;
}

.chatbot-typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.chatbot-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Input Container */
.chatbot-input-container {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.chatbot-form {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.chatbot-input:focus {
    border-color: #00ADD4;
    box-shadow: 0 0 0 3px rgba(0, 173, 212, 0.1);
}

.chatbot-input::placeholder {
    color: #adb5bd;
}

.chatbot-send-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00ADD4 0%, #008fa9 100%) !important;
    border: none !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    position: relative !important;
}

.chatbot-send-btn i,
.chatbot-send-btn .fa-paper-plane,
.chatbot-send-btn .fas {
    color: #ffffff !important;
    font-size: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    float: none !important;
    transform: none !important;
    text-indent: 0 !important;
}

.chatbot-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 173, 212, 0.4);
}

.chatbot-send-btn:active {
    transform: scale(0.95);
}

.chatbot-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .potolo-chatbot-widget {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-toggle-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .chatbot-window {
        width: calc(100vw - 30px);
        max-width: 380px;
        height: calc(100vh - 100px);
        max-height: 85vh;
        bottom: 75px;
        right: 0;
        border-radius: 20px 20px 0 0;
    }

    .chatbot-messages {
        padding: 15px;
    }

    .chatbot-message-content {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .potolo-chatbot-widget {
        bottom: 10px;
        right: 10px;
    }

    .chatbot-toggle-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .chatbot-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 80px);
        bottom: 70px;
    }

    .chatbot-header {
        padding: 15px;
    }

    .chatbot-title {
        font-size: 16px;
    }

    .chatbot-subtitle {
        font-size: 11px;
        color: #ffffff;
        opacity: 1;
    }

    .chatbot-message-bubble {
        padding: 10px 14px;
        font-size: 13px;
    }

    .chatbot-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .chatbot-send-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Accessibility */
.chatbot-toggle-btn:focus,
.chatbot-close-btn:focus,
.chatbot-send-btn:focus,
.chatbot-input:focus {
    outline: 2px solid #00ADD4;
    outline-offset: 2px;
}

/* Loading State */
.chatbot-message-bubble.loading {
    background: #f0f0f0;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* App Store Buttons */
.chatbot-app-store-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    max-width: 180px;
}

.chatbot-app-store-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.chatbot-app-store-btn img {
    display: block;
    height: 40px;
    width: auto;
    border-radius: 8px;
    max-width: 100%;
}

.chatbot-app-store-btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

/* WhatsApp Button - Always white text, green background */
.chatbot-whatsapp-btn,
.chatbot-message-bot .chatbot-message-bubble .chatbot-whatsapp-btn,
.chatbot-message-user .chatbot-message-bubble .chatbot-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 20px;
    background: #25D366 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.chatbot-whatsapp-btn:hover,
.chatbot-message-bot .chatbot-message-bubble .chatbot-whatsapp-btn:hover,
.chatbot-message-user .chatbot-message-bubble .chatbot-whatsapp-btn:hover {
    background: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff !important;
}

.chatbot-whatsapp-btn:active,
.chatbot-message-bot .chatbot-message-bubble .chatbot-whatsapp-btn:active,
.chatbot-message-user .chatbot-message-bubble .chatbot-whatsapp-btn:active {
    transform: translateY(0);
}

.chatbot-whatsapp-btn i,
.chatbot-message-bot .chatbot-message-bubble .chatbot-whatsapp-btn i,
.chatbot-message-user .chatbot-message-bubble .chatbot-whatsapp-btn i {
    font-size: 18px;
    color: #ffffff !important;
}

/* Contact Form Styles */
.chatbot-contact-form {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 100;
    display: flex;
    flex-direction: column;
    border-radius: 20px 20px 0 0;
}

.chatbot-contact-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #00ADD4 0%, #008fa9 100%);
    border-radius: 20px 20px 0 0;
}

.chatbot-contact-form-header h4 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.chatbot-close-form-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.chatbot-close-form-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-contact-form-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chatbot-contact-form-content::-webkit-scrollbar {
    display: none;
}

.chatbot-form-group {
    margin-bottom: 20px;
}

.chatbot-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #252b42;
    font-weight: 600;
    font-size: 14px;
}

.chatbot-form-input,
.chatbot-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #ffffff;
    color: #252b42;
}

.chatbot-form-input:focus,
.chatbot-form-textarea:focus {
    outline: none;
    border-color: #00ADD4;
    box-shadow: 0 0 0 3px rgba(0, 173, 212, 0.1);
}

.chatbot-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.chatbot-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.chatbot-form-cancel-btn,
.chatbot-form-submit-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chatbot-form-cancel-btn {
    background: #f0f0f0;
    color: #666;
}

.chatbot-form-cancel-btn:hover {
    background: #e0e0e0;
}

.chatbot-form-submit-btn {
    background: linear-gradient(135deg, #00ADD4 0%, #008fa9 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 173, 212, 0.3);
}

.chatbot-form-submit-btn:hover {
    background: linear-gradient(135deg, #008fa9 0%, #007a94 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 173, 212, 0.4);
}

.chatbot-form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 480px) {
    .chatbot-contact-form-header {
        padding: 15px;
    }

    .chatbot-contact-form-header h4 {
        font-size: 16px;
    }

    .chatbot-contact-form-content {
        padding: 15px;
    }

    .chatbot-form-input,
    .chatbot-form-textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
}

