.contact-section {
  position: relative;
  min-height: 620px;
  padding: 55px 0 80px;
  overflow: hidden;
  background: #000;
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 5;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #f6b300 20%,
    #ff7b00 50%,
    #f6b300 80%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.9);
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/contact-us/bg.png") center top / cover
    no-repeat;
  z-index: 1;
}

/* .contact-section .contact-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
    180deg,
    rgba(212, 0, 0, 0.22) 12%,
    rgba(141, 0, 0, 0.18) -11%,
    rgba(141, 0, 0, 0.10) -2%,
    rgba(0, 0, 0, 0.25) -14%,
    rgba(0, 0, 0, 0.70) 28%,
    rgba(0, 0, 0, 0.92) 40%,
    #000000 100%
  );
} */
.contact-section .contact-wrapper {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-section .contact-wrapper .contact-title {
  text-align: center;
  color: #dcdcdc;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.contact-section .contact-wrapper .contact-left .contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-section .contact-wrapper .contact-left .bold-text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  /* line-height: 1.5; */
  margin-bottom: 0px;
  font-family:
    Exo,
    Demi Bold;
}

.contact-section .contact-wrapper .contact-left .text {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-family: "Exo";
}

.contact-section .contact-wrapper .contact-left .contact-info .info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-section
  .contact-wrapper
  .contact-left
  .contact-info
  .info-box
  .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent
    linear-gradient(90deg, #d40000 0%, #ab0000 36%, #120000 71%, #0000008c 100%)
    0% 0% no-repeat padding-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.contact-section
  .contact-wrapper
  .contact-left
  .contact-info
  .info-box
  .call-text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Exo";
}

.contact-section .contact-wrapper .contact-left .contact-info .info-box span {
  display: block;
  color: #d7d7d7;
  font-size: 16px;
  /* line-height: 1.9; */
  font-family: "Roboto";
}

.contact-section .contact-form {
  width: 100%;
  margin-left: auto;
  padding: 40px 20px;
  border-radius: 8px;
  background: transparent
    linear-gradient(180deg, #000000 0%, #0a0a0a 36%, #1d1d1d 100%) 0% 0%
    no-repeat padding-box;
}

.contact-section .contact-form .submit-wrap {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.contact-section .contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;
  background: #3e3e3e 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  border-radius: 4px;
  font-size: 16px;
  color: #dcdcdc;
  font-family: "Roboto", "Regular";
}

.contact-section .contact-form textarea {
  height: 65px;
}

.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  color: #a0a0a0 !important;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
  font-family: "Roboto", "Regular";
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  background: #3e3e3e;
  border: 1px solid #707070;
}

.contact-form input::placeholder {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}

@media (min-width: 767.98px) and (max-width: 991px) {
  .contact-section {
    min-height: auto;
    padding: 60px 0;
  }

  .contact-section .contact-wrapper {
    padding: 0 20px;
  }

  .contact-section .contact-wrapper .contact-left {
    max-width: 100%;
  }

  .contact-section .contact-wrapper .contact-form {
    width: 100%;
  }

  .contact-section .contact-wrapper .contact-title {
    font-size: 42px;
  }

  .contact-section .contact-wrapper .contact-left .bold-text {
    font-size: 20px;
  }

  .contact-section .contact-wrapper .contact-left .text {
    font-size: 16px;
  }

  .contact-section
    .contact-wrapper
    .contact-left
    .contact-info
    .info-box
    .call-text {
    font-size: 17px;
    margin-bottom: 0px;
  }

  .contact-section .contact-wrapper .contact-left .contact-info .info-box span {
    font-size: 15px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .contact-section .contact-wrapper {
    padding: 0;
  }

  .contact-section
    .contact-wrapper
    .contact-left
    .contact-info
    .info-box
    .call-text {
    font-size: 16px;
    margin-bottom: 0;
  }

  .contact-section .contact-wrapper .contact-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .contact-section .contact-wrapper .contact-left .bold-text {
    font-size: 18px;
  }

  .contact-section .contact-wrapper .contact-left .text {
    font-size: 15px;
  }

  .contact-section .contact-wrapper .contact-form {
    padding: 15px;
    margin-top: 30px;
  }

  .contact-section .contact-form input {
    height: 35px;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  .contact-section .contact-wrapper .contact-left .bold-text {
    font-size: 22px;
  }

  .contact-section .contact-wrapper .contact-left .text {
    font-size: 18px;
  }

  .contact-section
    .contact-wrapper
    .contact-left
    .contact-info
    .info-box
    .call-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }
}
