/**
 * Royal-X Advanced Chat System Styles
 * Red, White, Black Theme - Professional & Modern
 */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* CSS Variables - Red, White, Black Theme */
:root {
    --mathmentor-red: #0274BE;
    --mathmentor-red-dark: #015A9E;
    --mathmentor-red-light: #FF1F1F;
    --mathmentor-black: #000000;
    --mathmentor-dark-gray: #1A1A1A;
    --mathmentor-medium-gray: #666666;
    --mathmentor-light-gray: #CCCCCC;
    --mathmentor-white: #FFFFFF;
    --mathmentor-off-white: #F8F8F8;
    --mathmentor-whatsapp: #25D366;
    --mathmentor-border: #E0E0E0;
    --mathmentor-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --mathmentor-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --mathmentor-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --mathmentor-shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --mathmentor-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
#mathmentor-chat-widget * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Widget Container */
#mathmentor-chat-widget {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
}

/* Main Floating Button */
.mathmentor-main-button {
    position: relative;
    width: 72px;
    height: 72px;
    background: var(--mathmentor-red);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--mathmentor-shadow-lg);
    transition: var(--mathmentor-transition);
    overflow: visible;
    z-index: 10;
}

.mathmentor-main-button:hover {
    transform: scale(1.08);
    background: var(--mathmentor-red-dark);
    box-shadow: var(--mathmentor-shadow-xl);
}

.mathmentor-main-button.active {
    transform: rotate(90deg);
    background: var(--mathmentor-black);
}

.mathmentor-btn-icon {
    position: relative;
    width: 36px;
    height: 36px;
}

.mathmentor-btn-icon svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--mathmentor-white);
    transition: var(--mathmentor-transition);
}

.mathmentor-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.mathmentor-main-button.active .mathmentor-icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.mathmentor-main-button.active .mathmentor-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Pulse Ring Animation */
.mathmentor-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--mathmentor-red);
    border-radius: 50%;
    animation: mathmentor-pulse 2s infinite;
    pointer-events: none;
}

@keyframes mathmentor-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.mathmentor-main-button.active .mathmentor-pulse-ring {
    animation: none;
}

/* Action Buttons Container - Flower Bloom Layout */
#mathmentor-chat-widget .mathmentor-action-buttons {
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    pointer-events: none !important;
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

#mathmentor-chat-widget .mathmentor-action-buttons.active {
    pointer-events: all !important;
    opacity: 1 !important;
}

/* Action Buttons - Individual Styling */
#mathmentor-chat-widget .mathmentor-action-btn {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 24px 36px !important;
    background: white !important;
    border: 3px solid #0274BE !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    white-space: nowrap !important;
    min-height: 68px !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    opacity: 0 !important;
    transform: translate(0, 0) scale(0) !important;
    transform-origin: bottom right !important;
    z-index: 5 !important;
}

/* Phone Button - Blooms UPWARD (Far Away) */
#mathmentor-chat-widget .mathmentor-phone-btn {
    background: white !important;
    color: #000000 !important;
    border-color: #0274BE !important;
}

#mathmentor-chat-widget .mathmentor-action-buttons.active .mathmentor-phone-btn {
    transform: translate(0, -225px) scale(1) !important;
    opacity: 1 !important;
    transition-delay: 0.1s !important;
}

/* WhatsApp Button - Blooms TOP-LEFT (Diagonal, Far Away) */
#mathmentor-chat-widget .mathmentor-whatsapp-btn {
    background: white !important;
    color: #000000 !important;
    border-color: #0274BE !important;
}

#mathmentor-chat-widget .mathmentor-action-buttons.active .mathmentor-whatsapp-btn {
    transform: translate(-110px, -125px) scale(1) !important;
    opacity: 1 !important;
    transition-delay: 0.15s !important;
}

/* Email Button - Blooms LEFT (Far Away) */
#mathmentor-chat-widget .mathmentor-email-btn {
    background: white !important;
    color: #000000 !important;
    border-color: #0274BE !important;
}

#mathmentor-chat-widget .mathmentor-action-buttons.active .mathmentor-email-btn {
    transform: translate(-145px, 0) scale(1) !important;
    opacity: 1 !important;
    transition-delay: 0.2s !important;
}

#mathmentor-chat-widget .mathmentor-action-btn svg {
    width: 26px !important;
    height: 26px !important;
    flex-shrink: 0 !important;
    color: #0274BE !important;
}

#mathmentor-chat-widget .mathmentor-action-btn:hover {
    transform: translate(var(--hover-x, 0), var(--hover-y, 0)) scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(2, 116, 190, 0.25) !important;
    border-color: #0274BE !important;
    background: linear-gradient(135deg, #0274BE 0%, #015A9E 100%) !important;
    color: white !important;
}

#mathmentor-chat-widget .mathmentor-phone-btn:hover {
    --hover-x: 0;
    --hover-y: -225px;
}

#mathmentor-chat-widget .mathmentor-whatsapp-btn:hover {
    --hover-x: -110px;
    --hover-y: -125px;
}

#mathmentor-chat-widget .mathmentor-email-btn:hover {
    --hover-x: -145px;
    --hover-y: 0;
}

#mathmentor-chat-widget .mathmentor-action-btn:hover svg {
    color: white !important;
}

#mathmentor-chat-widget .mathmentor-btn-label {
    font-weight: 700 !important;
}

/* Chat Box */
.mathmentor-chat-box {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 420px;
    max-width: calc(100vw - 60px);
    height: 620px;
    max-height: calc(100vh - 180px);
    background: var(--mathmentor-white);
    border-radius: 24px;
    box-shadow: var(--mathmentor-shadow-xl);
    border: 1px solid var(--mathmentor-border);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: var(--mathmentor-transition);
    overflow: hidden;
}

.mathmentor-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
#mathmentor-chat-widget .mathmentor-chat-header {
    background: linear-gradient(135deg, #0274BE 0%, #015A9E 100%) !important;
    padding: 32px 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    min-height: 110px !important;
}

#mathmentor-chat-widget .mathmentor-whatsapp-header {
    background: linear-gradient(135deg, #0274BE 0%, #015A9E 100%) !important;
}

#mathmentor-chat-widget .mathmentor-email-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
}

#mathmentor-chat-widget .mathmentor-header-content {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

#mathmentor-chat-widget .mathmentor-header-logo {
    width: 62px !important;
    height: 62px !important;
    border-radius: 14px !important;
    background: white !important;
    padding: 12px !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

#mathmentor-chat-widget .mathmentor-header-text {
    flex: 1 !important;
    min-width: 0 !important;
}

#mathmentor-chat-widget .mathmentor-company-name {
    color: white !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

#mathmentor-chat-widget .mathmentor-header-status {
    display: block !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

#mathmentor-chat-widget .mathmentor-close-chat {
    background: rgba(255, 255, 255, 0.25) !important;
    border: none !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
}

.mathmentor-close-chat:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg) scale(1.05);
}

.mathmentor-close-chat svg {
    width: 22px;
    height: 22px;
    color: var(--mathmentor-white);
}

/* Chat Body */
#mathmentor-chat-widget .mathmentor-chat-body {
    flex: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #FAFAFA !important;
}

#mathmentor-chat-widget .mathmentor-chat-content {
    padding: 36px 32px !important;
}

/* Custom Scrollbar */
#mathmentor-chat-widget .mathmentor-chat-body::-webkit-scrollbar {
    width: 8px !important;
}

#mathmentor-chat-widget .mathmentor-chat-body::-webkit-scrollbar-track {
    background: transparent !important;
}

#mathmentor-chat-widget .mathmentor-chat-body::-webkit-scrollbar-thumb {
    background: rgba(2, 116, 190, 0.2) !important;
    border-radius: 10px !important;
}

#mathmentor-chat-widget .mathmentor-chat-body::-webkit-scrollbar-thumb:hover {
    background: rgba(2, 116, 190, 0.3) !important;
}

/* Message Bubbles */
#mathmentor-chat-widget .mathmentor-message-bubble {
    background: white !important;
    padding: 28px 32px !important;
    border-radius: 18px !important;
    margin: 0 0 24px 0 !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06) !important;
    border: 2px solid #E5E5E5 !important;
    border-left: 4px solid #0274BE !important;
    animation: mathmentor-slide-up 0.4s ease-out !important;
}

@keyframes mathmentor-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mathmentor-chat-widget .mathmentor-message-bubble p {
    margin: 0 !important;
    padding: 0 !important;
    color: #000000 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    font-weight: 500 !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Phone Options */
#mathmentor-chat-widget .mathmentor-phone-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

#mathmentor-chat-widget .mathmentor-phone-option {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 28px !important;
    background: white !important;
    border-radius: 18px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06) !important;
    border: 2px solid #E5E5E5 !important;
}

#mathmentor-chat-widget .mathmentor-phone-option:hover {
    transform: translateX(10px) !important;
    box-shadow: 0 6px 20px rgba(2, 116, 190, 0.15) !important;
    border-color: #0274BE !important;
}

#mathmentor-chat-widget .mathmentor-phone-icon {
    width: 58px !important;
    height: 58px !important;
    background: linear-gradient(135deg, #0274BE 0%, #015A9E 100%) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

#mathmentor-chat-widget .mathmentor-phone-icon svg {
    width: 30px !important;
    height: 30px !important;
    color: white !important;
}

#mathmentor-chat-widget .mathmentor-phone-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    flex: 1 !important;
}

#mathmentor-chat-widget .mathmentor-phone-label {
    font-size: 14px !important;
    color: #666666 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

#mathmentor-chat-widget .mathmentor-phone-number {
    font-size: 19px !important;
    color: #000000 !important;
    font-weight: 700 !important;
    font-family: 'Space Mono', monospace !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Forms */
#mathmentor-chat-widget .mathmentor-whatsapp-form,
#mathmentor-chat-widget .mathmentor-email-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
}

#mathmentor-chat-widget .mathmentor-form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#mathmentor-chat-widget .mathmentor-form-group label {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

#mathmentor-chat-widget .mathmentor-form-group input,
#mathmentor-chat-widget .mathmentor-form-group textarea {
    padding: 20px 24px !important;
    border: 2px solid #E5E5E5 !important;
    border-radius: 14px !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px !important;
    color: #000000 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: white !important;
    font-weight: 500 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

#mathmentor-chat-widget .mathmentor-form-group input:focus,
#mathmentor-chat-widget .mathmentor-form-group textarea:focus {
    outline: none !important;
    border-color: #0274BE !important;
    box-shadow: 0 0 0 4px rgba(2, 116, 190, 0.1) !important;
}

#mathmentor-chat-widget .mathmentor-form-group textarea {
    resize: vertical !important;
    min-height: 130px !important;
    line-height: 1.7 !important;
}

/* Submit Buttons */
#mathmentor-chat-widget .mathmentor-whatsapp-submit,
#mathmentor-chat-widget .mathmentor-email-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    padding: 22px 36px !important;
    border: none !important;
    border-radius: 14px !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 14px 0 0 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: linear-gradient(135deg, #0274BE 0%, #015A9E 100%) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#mathmentor-chat-widget .mathmentor-whatsapp-submit:hover,
#mathmentor-chat-widget .mathmentor-email-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(2, 116, 190, 0.3) !important;
}

#mathmentor-chat-widget .mathmentor-whatsapp-submit:active,
#mathmentor-chat-widget .mathmentor-email-submit:active {
    transform: translateY(-1px) !important;
}

#mathmentor-chat-widget .mathmentor-whatsapp-submit svg,
#mathmentor-chat-widget .mathmentor-email-submit svg {
    width: 24px !important;
    height: 24px !important;
}

/* Chat Footer */
#mathmentor-chat-widget .mathmentor-chat-footer {
    background: white !important;
    border-top: 2px solid #E5E5E5 !important;
    padding: 28px 32px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

#mathmentor-chat-widget .mathmentor-footer-logo {
    flex-shrink: 0 !important;
}

#mathmentor-chat-widget .mathmentor-footer-logo img {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    object-fit: contain !important;
    padding: 8px !important;
    background: #FAFAFA !important;
    border: 1px solid #E5E5E5 !important;
    display: block !important;
}

#mathmentor-chat-widget .mathmentor-footer-info {
    flex: 1 !important;
    min-width: 0 !important;
}

#mathmentor-chat-widget .mathmentor-footer-company {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

#mathmentor-chat-widget .mathmentor-footer-address {
    font-size: 13px !important;
    color: #666666 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.mathmentor-footer-info {
    flex: 1;
    min-width: 0;
}

.mathmentor-footer-company {
    font-size: 14px;
    font-weight: 700;
    color: var(--mathmentor-black);
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mathmentor-footer-address {
    font-size: 12px;
    color: var(--mathmentor-medium-gray);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #mathmentor-chat-widget {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-main-button {
        width: 64px !important;
        height: 64px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-btn-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    /* Mobile flower bloom - SAME as desktop */
    #mathmentor-chat-widget .mathmentor-action-buttons.active .mathmentor-phone-btn {
        transform: translate(0, -225px) scale(1) !important;
    }
    
    #mathmentor-chat-widget .mathmentor-action-buttons.active .mathmentor-whatsapp-btn {
        transform: translate(-110px, -125px) scale(1) !important;
    }
    
    #mathmentor-chat-widget .mathmentor-action-buttons.active .mathmentor-email-btn {
        transform: translate(-145px, 0) scale(1) !important;
    }
    
    #mathmentor-chat-widget .mathmentor-phone-btn:hover {
        --hover-x: 0;
        --hover-y: -225px;
    }

    #mathmentor-chat-widget .mathmentor-whatsapp-btn:hover {
        --hover-x: -110px;
        --hover-y: -125px;
    }

    #mathmentor-chat-widget .mathmentor-email-btn:hover {
        --hover-x: -145px;
        --hover-y: 0;
    }
    
    #mathmentor-chat-widget .mathmentor-chat-box {
        bottom: 100px !important;
        right: 20px !important;
        width: calc(100vw - 40px) !important;
        height: calc(100vh - 140px) !important;
        border-radius: 20px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-action-btn {
        padding: 20px 28px !important;
        font-size: 15px !important;
        gap: 16px !important;
        min-height: 60px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-action-btn svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-chat-header {
        padding: 26px 24px !important;
        min-height: 100px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-header-logo {
        width: 54px !important;
        height: 54px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-company-name {
        font-size: 18px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-header-status {
        font-size: 14px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-chat-content {
        padding: 28px 24px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-message-bubble {
        padding: 24px 26px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-phone-option {
        padding: 24px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-phone-icon {
        width: 54px !important;
        height: 54px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-phone-number {
        font-size: 17px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-form-group input,
    #mathmentor-chat-widget .mathmentor-form-group textarea {
        padding: 18px 22px !important;
    }
    
    #mathmentor-chat-widget .mathmentor-chat-footer {
        padding: 24px 26px !important;
    }
}
        font-size: 16px;
    }
    
    .mathmentor-chat-footer {
        padding: 20px;
    }
    
    .mathmentor-footer-logo img {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .mathmentor-action-btn {
        padding: 14px 20px;
        font-size: 14px;
        gap: 12px;
        min-height: 52px;
    }
    
    .mathmentor-company-name {
        font-size: 16px;
    }
    
    .mathmentor-phone-option {
        padding: 18px;
        gap: 16px;
    }
}

/* Accessibility */
.mathmentor-action-btn:focus,
.mathmentor-close-chat:focus,
.mathmentor-phone-option:focus,
.mathmentor-whatsapp-submit:focus,
.mathmentor-email-submit:focus {
    outline: 3px solid var(--mathmentor-red);
    outline-offset: 3px;
}

/* Print */
@media print {
    #mathmentor-chat-widget {
        display: none !important;
    }
}

/* Success Message */
.mathmentor-success-message {
    background: var(--mathmentor-whatsapp) !important;
    border-color: var(--mathmentor-whatsapp) !important;
}

.mathmentor-success-message p {
    color: var(--mathmentor-white) !important;
    font-weight: 700 !important;
}
