/* Support Widget CSS */
.support-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.support-button-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-size: 24px;
    border: none;
    outline: none;
    position: relative;
    z-index: 2;
}

.support-button-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.support-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.support-widget-container.active .support-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none !important;
}

.support-option:hover {
    transform: scale(1.1);
}

.option-whatsapp {
    background-color: #25D366;
}

.option-help {
    background-color: #3498db;
}

.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-popup.active {
    display: flex;
    animation: slideIn 0.3s ease;
}

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

.whatsapp-header {
    background-color: #128C7E;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.whatsapp-header .info {
    display: flex;
    flex-direction: column;
}

.whatsapp-header .name {
    font-weight: bold;
    font-size: 16px;
}

.whatsapp-header .status {
    font-size: 12px;
    opacity: 0.8;
}

.whatsapp-body {
    padding: 20px;
    background-color: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.whatsapp-msg {
    background: white;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    max-width: 80%;
    font-size: 14px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.whatsapp-footer {
    padding: 10px;
    background: #f0f2f5;
    display: flex;
    gap: 10px;
}

.whatsapp-input {
    flex: 1;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
    font-size: 14px;
}

.whatsapp-send {
    background-color: #128C7E;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.whatsapp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-size: 18px;
}
