/* Contact buttons styling */

/* Contact Container Positioning */
#contactContainer {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: inherit;
}

/* Social Media Buttons */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

#contactContainer:hover .social-buttons {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp-btn {
  background-color: #25D366;
}

#contactToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #cea55b 0%, #b8944f 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(206, 165, 91, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 20px;
  font-size: 14px;
}

#contactToggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 165, 91, 0.6);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  font-size: 15px;
}

/* Responsive Design for Contact Button */
@media (max-width: 768px) {
  #contactContainer {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .contact-text {
    display: none;
  }
  
  #contactToggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cea55b 0%, #b8944f 100%);
  }
  
  #contactToggle .contact-icon {
    margin: 0;
  }
  
  .social-buttons {
    position: absolute;
    bottom: 70px;
    right: 5px;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
  }
  
  .social-btn svg {
    width: 20px;
    height: 20px;
  }
}