/* Floating Phone Button (Mobile Only) */
.floating-phone-btn {
  position: fixed;
  right: 18px;
  bottom: 25px;
  z-index: 9999;
  background: #28a745;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(40,167,69,0.18);
  transition: box-shadow 0.2s;
  opacity: 0.9
}
.floating-phone-btn:hover {
  box-shadow: 0 6px 24px rgba(40,167,69,0.28);
  background: #218838;
}
.floating-phone-icon {
    display: grid;
    place-items: center;
}
.floating-phone-icon img{
    margin-top: 10px ;
max-width: 50px;
filter: invert(1);}

@media (min-width: 768px) {
  .floating-phone-btn { display: none !important; }
}
