/* WhatsApp  */
.whatsapp-strip {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #25D366;
  border-radius: 50px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  max-width: 350px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-strip.hide {
  opacity: 0;
  transform: translateY(100px);
}

.whatsapp-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: center;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.whatsapp-text {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.2s ease;
}

/* Hover Effects */
.whatsapp-strip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-link:hover .whatsapp-icon {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-strip {
      bottom: 10px;
      right: 10px;
      left: 10px;
      padding: 10px 20px;
      max-width: 500px;
  }
  
  .whatsapp-text {
      font-size: 1rem;
  }
  
  .whatsapp-icon {
      width: 25px;
      height: 25px;
  }
}

@media (max-width: 480px) {
  .whatsapp-strip {
      max-width: 300px;
  }
  
  .whatsapp-text {
      font-size: 0.9rem;
  }
  
  .whatsapp-link {
      gap: 10px;
  }
}