

._8mqQwQ { display: none; } ._1TWLMK.icF5zO { opacity: 0.01; }


.contact-btn {
  display:block;
  padding:11px 16px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition:all 0.25s ease;
  animation:fadeInUp 0.6s ease;
}

/* Colors (badam friendly) */
.call-btn {
  background:#6B4F3A;
}

.email-btn {
  background:#8B6F47;
}

.whatsapp-btn {
  background:#25D366;
  animation:pulse 2s infinite;
}

/* Hover Effects */
.contact-btn:hover {
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 6px 16px rgba(0,0,0,0.3);
}

/* Entry Animation */
@keyframes fadeInUp {
  from {
    opacity:0;
    transform:translateY(20px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

/* WhatsApp Pulse (subtle attention) */
@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow:0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow:0 0 0 0 rgba(37, 211, 102, 0); }
}
