/* Remove body margin for full-width map */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
}

/* Contact Section */
.contact-section {
  background: #fff;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
/*  background: #f8f9fa;*/
background: linear-gradient(to right, #E0569F, #6A329F);
    color: aliceblue;
  color: #e53935;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
.icon-circle.bg-lightred {
  background: #f8d7da;
}
.icon-circle i {
  color: #fff;
}
.icon-circle.bg-lightred i {
  color: #fff;
}
.icon-circle:hover {
  background: #e53935;
}
.icon-circle:hover i {
  color: #fff;
}

/* Form */
.form-control:focus {
  border-color: #e53935;
  box-shadow: 0 0 0 0.2rem rgba(229,57,53,.1);
}

/* Button */
.btn-danger {
 background: linear-gradient(to right, #E0569F, #6A329F);  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.btn-danger:hover {
  background: #b71c1c;
}

/* Map */
.map-container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-section .row {
    flex-direction: column;
  }
}
