.zz_contactWrap {
  padding: 5rem 8%;

}

.zz_contactHeader {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 3rem;
}

.zz_contactGrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.zz_contactInfo {
  animation: fadeIn 1s ease forwards;
}

.zz_infoTitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.zz_infoItem {
  margin-bottom: 0.8rem;
  color: #444;
  font-size: 0.95rem;
}

.zz_infoItem a {
  color: #d62b70;
  text-decoration: none;
}

.zz_socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.zz_socialIcon {
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.zz_socialIcon:hover {
  transform: scale(1.2);
  color: #d62b70;
}

.zz_contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: fadeIn 1s ease forwards;
}

.zz_formGroup input,
.zz_formGroup textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s ease;
}

.zz_formGroup input:focus,
.zz_formGroup textarea:focus {
  border-color: #d62b70;
}

.zz_btnSend {
  background: #d62b70;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.zz_btnSend:hover {
  background: #b21e58;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 768px) {
  .zz_contactGrid {
    grid-template-columns: 1fr;
  }
}
