/** WhatsApp Button Styles **/

/* Floating WhatsApp Button */
.whatsapp-icon {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.5s ease;
}

.whatsapp-icon .whatsapp-label {
  background: #f5f5f5;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
  font-family: var(--text-font);
}

.whatsapp-icon .whatsapp-button {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 300ms ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.whatsapp-icon .whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: #20BA5A;
}

.whatsapp-icon .whatsapp-button:active {
  transform: scale(1.05);
}

.whatsapp-icon .whatsapp-button i {
  font-size: 32px;
  color: #ffffff;
}

/* Navigation WhatsApp Link */
.main-header .navigation li .whatsapp-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  transition: all 300ms ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.main-header .navigation li .whatsapp-nav-link:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.main-header .navigation li .whatsapp-nav-link i {
  font-size: 18px;
  color: #25D366;
}

/* Footer WhatsApp Link */
.main-footer .whatsapp-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25D366;
  color: #ffffff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 300ms ease;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.main-footer .whatsapp-footer-link:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.main-footer .whatsapp-footer-link i {
  font-size: 20px;
}

/* Responsive Styles */
/* Laptop (992px - 1199px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .whatsapp-icon {
    bottom: 100px;
    right: 30px;
  }
}

/* Tablet (768px - 991px) */
@media only screen and (max-width: 991px) {
  .whatsapp-icon {
    bottom: 100px;
    right: 20px;
  }
  
  .whatsapp-icon .whatsapp-label {
    display: none;
  }
  
  .whatsapp-icon .whatsapp-button {
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-icon .whatsapp-button i {
    font-size: 28px;
  }
}

/* Mobile (max-width: 767px) */
@media only screen and (max-width: 767px) {
  .whatsapp-icon {
    bottom: 95px;
    right: 15px;
  }
  
  .whatsapp-icon .whatsapp-button {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-icon .whatsapp-button i {
    font-size: 26px;
  }
}

/* Small Mobile (max-width: 499px) */
@media only screen and (max-width: 499px) {
  .whatsapp-icon {
    bottom: 90px;
    right: 15px;
  }
  
  .whatsapp-icon .whatsapp-button {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon .whatsapp-button i {
    font-size: 24px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

