
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem;
  gap: 2rem;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  background: #f39c12;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e67e22;
}

.contact-info {
  flex: 1 1 300px;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.social-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Individual button styles */
.social-btn.tiktok { background: #000; }
.social-btn.instagram { background: linear-gradient(45deg, #feda75, #d62976, #962fbf); }
.social-btn.facebook { background: #3b5998; }
.social-btn.youtube { background: #ff0000; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.telegram { background: #0088cc; }
.social-btn.pinterest { background: #bd081c; }
.social-btn.twitter { background: #1da1f2; }

/* Optional animated icon for contact section */
.contact-link {
  color: #e67e22;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.contact-link:hover {
  color: #e67e22;
  transform: scale(1.05);
}

.animated-icon {
  color: #555;
  margin-right: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-link:hover + .animated-icon,
.animated-icon:hover {
  transform: rotate(10deg) scale(1.2);
  color: #e67e22;
}

