/* ==========================================
   FLOATING BUTTONS
========================================== */

.floating-buttons{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:15px;

z-index:9999;

}

.floating-btn{

width:58px;

height:58px;

border:none;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

cursor:pointer;

text-decoration:none;

color:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.18);

transition:.35s;

}

.floating-btn:hover{

transform:translateY(-5px) scale(1.05);

}

.whatsapp-btn{

background:#25D366;

}

.call-btn{

background:#2563eb;

}

.top-btn{

background:#0f172a;

opacity:0;

visibility:hidden;

}

.top-btn.show{

opacity:1;

visibility:visible;

}

@media(max-width:768px){

.floating-buttons{

right:18px;

bottom:18px;

}

.floating-btn{

width:52px;

height:52px;

font-size:22px;

}

}