.contact-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
  }
}
.contact-section .section-title {
  color: #333333;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .contact-section .section-title {
    font-size: 1.875rem;
  }
}
.contact-section .section-subtitle {
  color: #707070;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .contact-section .section-subtitle {
    font-size: 1rem;
  }
}
.contact-section .contact-info {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 4px solid #ff5000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333333;
  position: relative;
  padding-bottom: 1rem;
}
.contact-section .contact-info-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ff5000;
}
.contact-section .contact-address p {
  margin-bottom: 1.5rem;
}
.contact-section .contact-address p:last-child {
  margin-bottom: 0;
}
.contact-section .contact-address p strong {
  color: #333333;
}
.contact-section .contact-address a {
  color: #ff5000;
  text-decoration: none;
  position: relative;
}
.contact-section .contact-address a:hover {
  text-decoration: underline;
}
.contact-section .contact-form-wrapper {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 4px solid #00a6ff;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form label {
  width: 100%;
  margin-bottom: 0.5rem;
  color: #333333;
  font-weight: 600;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form input[type=text],
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form input[type=email],
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form input[type=tel],
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form input[type=text]:focus,
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form input[type=email]:focus,
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form input[type=tel]:focus,
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form textarea:focus {
  border-color: #00a6ff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 166, 255, 0.25);
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form textarea {
  min-height: 150px;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form .form-check {
  padding-left: 0.5rem;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit {
  background-color: #00a6ff;
  border: 2px solid #00a6ff;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit:hover {
  background-color: #0085cc;
  border-color: #0085cc;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem;
  border-radius: 0.25rem;
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #dc3545;
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
}
.contact-section .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #28a745;
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
}
.contact-section .contact-form-wrapper .default-form-info p {
  margin-bottom: 1rem;
}
.contact-section .contact-form-wrapper .default-form-info p:last-child {
  margin-bottom: 0;
}
.contact-section .map-wrapper {
  margin-top: 2rem;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}