.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;   /* THIS FIXES HEIGHT MATCH */
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}
.contact-form {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.contact-info {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 350px;
   max-height: 250px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.info-item i {
  color: #00bcd4;
  font-size: 18px;
  margin-top: 5px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #00bcd4;
}

@media (max-width: 900px) {

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 500px;
  }

}