.contact-section-info {
  height: 600px;
  position: relative;
  background-image: url("../images/image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.contact-section-info .content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
}

.contact-section-info h2 {
  font-size: 45px;
  padding-bottom: 54px;
  color: rgba(255, 94, 0, 1);
}

.contact-section-info .phone,
.contact-section-info .email,
.contact-section-info .gps,
.contact-section-info .address {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.contact-section-info .phone:hover,
.contact-section-info .email:hover,
.contact-section-info .gps:hover,
.contact-section-info .address:hover {
  color: rgba(255, 94, 0, 1);
}

.contact-form-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-form-section h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-section .form-input {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 16px;
  width: 100%;
  background-color: #fff;
  margin-top: 5px;
}

.contact-form-section textarea.form-input {
  resize: vertical;
}

.form-label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.btn-submit {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 3px;
  background-color: rgba(255, 94, 0, 1);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
}

.btn-submit:hover {
  background-color: rgba(255, 94, 0, 0.85);
}

.container form {
  max-width: 900px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-12 {
  flex: 0 0 100%;
}
.col-md-6 {
  flex: 0 0 48%;
}
