/* ================= GLOBAL LINK RESET ================= */
a {
    text-decoration: none !important;
}

/* ================= HOME BASE START ================= */
body {
    .bitter-<uniquifier> {
  font-family: "Bitter", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
    background-color: #ecf1dc;
    color: #333;
    line-height: 1.75;
    padding-top: 60px;
}




/* ================= FLOATING CONTACT BUTTONS ================= */

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common button style */
.floating-contact a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Call */
.call-btn {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
}

/* WhatsApp */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Hover effect */
.floating-contact a:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Mobile size adjust */
@media (max-width: 768px) {
  .floating-contact a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}