.fixed-consultation-btn {
position: fixed !important;
bottom: 30px;
right: 30px;
z-index: 2147483647 !important;
background-color: #2E4057;
color: #ffffff;
padding: 14px 24px;
border-radius: 4px;
text-decoration: none;
font-family: Arial, sans-serif;
font-size: 16px;
font-weight: bold;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
animation: sonick-pulse 2.5s ease-in-out 3;
}
.fixed-consultation-btn:hover {
background-color: #1a2d3f;
color: #ffffff;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
transform: translateY(-2px);
}
@keyframes sonick-pulse {
0% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); }
50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); }
100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); }
}
@media (max-width: 767px) {
.fixed-consultation-btn {
bottom: 15px;
right: 15px;
font-size: 14px;
padding: 10px 16px;
}
}