.floating-icons {
    position: fixed;
    bottom: 50px;
    left: 20px;
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    z-index: 1000;
}

.floating-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--whatsappColor);
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    overflow: hidden;
    /* border: 3px solid var(--white); */

}

.floating-icons .fa-whatsapp {
    font-size: 35px;
    color: var(--white-hover);

}

.floating-icons .phone-icon {
    font-size: 25px;
    background-color: var(--whatsappColor);
    color: var(--white-hover);
}



.floating-icons a:hover {
    transform: scale(1.1);
}

.phone-wrapper {
    position: relative;
  }
  
  .qr-popup {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 180px;
    padding: 12px;
    background: var(--white-hover);
    border-radius: 12px;
    box-shadow: 0 10px 25px var(--transparent-dark-bg);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .qr-popup.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  
  .qr-popup p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--bg-2);
  }

  #phoneQr {
    display: flex;
    justify-content: center;
  }
    

@media (max-width:1024px) {
    .floating-icons {
        position: static;
        bottom: 0px;
        right: 0px;
    }

    .floating-icons a {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .floating-icons .fa-whatsapp {
        font-size: 25px;
    }
    
    .floating-icons .phone-icon {
        font-size: 20px;
    }
}