/*--------------------------------------------------------------
# WhatsApp Popup
--------------------------------------------------------------*/
.whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-popup:hover {
    transform: translateY(-5px);
}

.whatsapp-content {
    background: #2e7d32;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    min-width: 200px;
    transition: all 0.3s ease;
}

.whatsapp-content:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.whatsapp-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.whatsapp-icon i {
    font-size: 1.5rem;
    color: white;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.whatsapp-title {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.whatsapp-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Mobile responsiveness for WhatsApp popup */
@media (max-width: 768px) {
    .whatsapp-popup {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-content {
        padding: 10px 16px;
        min-width: 180px;
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .whatsapp-icon i {
        font-size: 1.3rem;
    }

    .whatsapp-title {
        font-size: 0.85rem;
    }

    .whatsapp-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-popup {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-content {
        padding: 8px 12px;
        min-width: 160px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .whatsapp-icon i {
        font-size: 1.1rem;
    }

    .whatsapp-title {
        font-size: 0.8rem;
    }

    .whatsapp-subtitle {
        font-size: 0.65rem;
    }
}
