.contact-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-info {
  background: linear-gradient(135deg, #0062cc, #0096ff);
  padding: 40px;
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.social-links {
  margin-top: 30px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  color: #0062cc;
  transform: translateY(-3px);
}

/*.contact-form {
  padding: 40px;
}*/

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 2px solid #eee;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #0062cc;
  box-shadow: none;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.btn-submit {
  background: linear-gradient(135deg, #0062cc, #0096ff);
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,98,204,0.3);
}

/*.map-container {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}*/