/* Unique Floating WhatsApp Button */
#sdsdaspo-btn.float-btn-sdsdaspo {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366; /* Official WhatsApp Green */
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1100;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInUp-sdsdaspo 0.5s ease-out;
}

/* Hover Effect */
#sdsdaspo-btn.float-btn-sdsdaspo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: #20ba59;
    color: white;
}

/* Unique SVG & Text Classes */
.svg-icon-sdsdaspo {
    display: block;
}

.btn-text-sdsdaspo {
    font-family: sans-serif; /* Ensures consistent look */
}

/* Unique Entrance Animation */
@keyframes slideInUp-sdsdaspo {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsive Adjustment */
@media(max-width: 900px) {
    #sdsdaspo-btn.float-btn-sdsdaspo {
        bottom: 4rem;
        right: 2rem;
    }
}