.contact {
  padding-top: 7rem !important;
  padding: 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid #8b5cf6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-links a:hover {
  background: #8b5cf6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.social-links img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
  transition: filter 0.3s ease;
}

.social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

.contact p {
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: left;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #333;
  background: #292929;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ccc;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #454545;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  resize: vertical;
  background-color: #303030;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  max-width: 100%;
}

.submit-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #8b5cf6;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #7b4ce6;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(168, 143, 185, 0.2);
}

.submit-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 800px) {
  .contact-links {
    flex-direction: column;
  }

  .social-links {
    gap: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .social-links {
    gap: 0.8rem;
  }
}
