   .floating-buttons {
       position: fixed;
       right: 25px;
       bottom: 25px;
       display: flex;
       flex-direction: column;
       gap: 15px;
       z-index: 999;
   }
   
   .floating-btn {
       width: 58px;
       height: 58px;
       border-radius: 50%;
       display: flex;
       justify-content: center;
       align-items: center;
       text-decoration: none;
       color: #fff;
       font-size: 24px;
       box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
       transition: .3s ease;
   }
   
   .whatsapp {
       background: #25D366;
   }
   
   .phone {
       background: #d67b3d;
   }
   
   .floating-btn:hover {
       transform: translateY(-5px) scale(1.08);
   }
   
   @media(max-width:768px) {
       .floating-buttons {
           right: 18px;
           bottom: 18px;
       }
       .floating-btn {
           width: 52px;
           height: 52px;
           font-size: 22px;
       }
   }