/* Floating Social Icons */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social__item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-social__item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

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

.floating-social__item--phone {
    background-color: #0078D7;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .floating-social {
        right: 15px;
        gap: 10px;
    }
    
    .floating-social__item {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .floating-social {
        right: 10px;
        bottom: 80px;
        top: auto;
        transform: none;
    }
    
    .floating-social__item {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
