.contact-buttons-wrapper {
    position: fixed;
    bottom: 120px; /* Tal3a bach t-fout l-bouton l-ke7el dialk */
    right: 30px;
    display: flex;
    flex-direction: column; /* Wahed foq wahed */
    gap: 15px; /* L-msafa binat-hom */
    z-index: 1000;
    
    /* Hidden Initially */
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Bach tji dayra */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, filter 0.3s;
}

/* Alwan l-boutonat */
.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.whatsapp { background-color: #25d366; }
.phone { background-color: #34b7f1; }

.circle-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Show class for JS */
.show-contact-btns {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}