.contact-us {}

.bg-color-gray {
  background-color: #F5F4F2;
}

/* LEFT CARD */
.contact-card {
  background: #00060B;
  color: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  border-bottom: 1px dashed #FFFFFF;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #0479c9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.contact-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #d3d9e3;
}

.quote-btn {
  background: #0479c9;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 15px;
  color: #fff;
  border: 1px solid transparent;
}

.quote-btn:hover {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 6px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #0479c9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

/* RIGHT FORM */
.contact-form h6 {
  font-weight: 600;
  color: #000;
  font-size: 18px;
}

.contact-form h3 {
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.contact-form h3::after {
  content: "";
  width: 30%;
  /* height: 2px; */
  border-bottom: 1px dashed #000;
  display: block;
  margin-top: 8px;
}

.form-control {
  border-radius: 0;
  padding: 12px;
  font-size: 14px;
}

textarea.form-control {
  height: 180px;
  resize: none;
}

.send-btn {
  background: #0479c9;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 5px;
}

.send-btn:hover {
  background: transparent;
  border: 1px solid #0479c9;
  color: #0479c9 !important;
  border-radius: 5px;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none !important;
    padding-right: .75rem !important; /* reset padding */
}

@media (max-width: 991px) {
  .contact-card {
    margin-bottom: 30px;
  }
}