

.contact-wrapper {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.contact-left {
  background: #007bff;
  color: white;
  flex: 1 1 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-left i {
  font-size: 4rem;
  margin-bottom: 20px;
}

.contact-left h2 {
  font-size: 2rem;
  font-weight: 600;
}


.contact-right {
  flex: 1 1 500px;
  padding: 40px;
}

.form-group label {
  font-weight: 500;
}

.form-control {
  border-radius: 12px;
  padding-left: 40px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #888;
}

.btn-primary {
  border-radius: 10px;
  padding: 12px 30px;
  font-size: 1.1rem;
  width: 100%;
  background: #007bff;
  border: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
}

.alert {
  max-width: 700px;
  margin: 20px auto;
  border-radius: 8px;
}

@media(max-width: 768px) {
  .contact-left, .contact-right {
    flex: 100%;
  }
}