/* Floating Contact Widget - Language, WhatsApp, Email */
.contact-widget {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: flex-end !important;
}

.contact-widget-button {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: white !important;
    font-size: 28px !important;
    position: relative !important;
    border: none !important;
    outline: none !important;
}

.contact-widget-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25) !important;
}

/* Language Toggle Button - Simple Flag Design */
.contact-widget-button.lang-toggle {
    background: white !important;
    color: #333 !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Flag emoji - simple and clean */
.contact-widget-button.lang-toggle #langFlag {
    font-size: 32px !important;
    line-height: 1 !important;
    display: block !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif !important;
}

/* Simple hover effect */
.contact-widget-button.lang-toggle:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25) !important;
}

/* WhatsApp Button */
.contact-widget-button.whatsapp {
    background: #25D366 !important;
}

.contact-widget-button.whatsapp:hover {
    background: #1DAA54 !important;
}

/* Email Button */
.contact-widget-button.email {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%) !important;
}

.contact-widget-button.email:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
}

/* Tooltip */
.contact-widget-tooltip {
    position: absolute !important;
    right: 75px !important;
    background: rgba(0, 0, 0, 0.85) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
    font-family: 'Comfortaa', sans-serif !important;
    font-weight: 500 !important;
}

.contact-widget-button:hover .contact-widget-tooltip {
    opacity: 1 !important;
    right: 70px !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-widget {
        bottom: 20px !important;
        right: 20px !important;
        gap: 12px !important;
    }

    .contact-widget-button {
        width: 55px !important;
        height: 55px !important;
        font-size: 24px !important;
    }

    .contact-widget-button.lang-toggle {
        font-size: 28px !important;
    }

    .contact-widget-button.lang-toggle #langFlag {
        font-size: 28px !important;
    }

    .contact-widget-tooltip {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .contact-widget {
        bottom: 15px !important;
        right: 15px !important;
    }

    .contact-widget-button {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
    }

    .contact-widget-button.lang-toggle {
        font-size: 26px !important;
    }

    .contact-widget-button.lang-toggle #langFlag {
        font-size: 26px !important;
    }
}
