.contact-section {
  padding: 100px 0;
  background: #f8faf8;
}

.contact-section .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

.contact-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-content .section-tag {
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  color: #18a558;
  font-weight: 600;
  font-size: 15px;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-content .section-tag::before {
  width: 40px;
  height: 3px;
  content: "";
  background: #d64b4b;
}

.contact-content h2 {
  margin-bottom: 20px;
  color: #071c2c;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.2;
}

.contact-content p {
  margin-bottom: 35px;
  color: #333;
  font-size: 18px;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  height: 110px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  gap: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.info-box:hover {
  border-color: #18a558;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.info-box .icon {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  background: rgba(34, 170, 85, 0.1);
}

.info-box .icon i {
  color: #18a558;
  font-size: 22px;
}

.info-box .content {
  flex: 1;
}

.info-box .content h4 {
  margin: 0 0 6px;
  color: #071c2c;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
}

.info-box .content p, .info-box .content a {
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.5;
  text-decoration: none;
}

.info-box .content a:hover {
  color: #18a558;
}

.contact-form {
  border-radius: 20px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1/-1;
}

.contact-form input, .contact-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  width: 100%;
  padding: 16px 18px;
  color: #071c2c;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: 0.35s ease;
  resize: none;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #18a558;
}

.contact-form textarea {
  min-height: 170px;
}

.contact-form .theme-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  grid-column: 1/-1;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }
  .contact-section .container {
    padding: 0 15px;
  }
  .contact-content h2 {
    font-size: 32px;
  }
  .contact-form {
    padding: 30px;
  }
  .contact-form form {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: auto;
  }
  .contact-form .theme-btn {
    grid-column: auto;
  }
}
@media (max-width: 575px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-content h2 {
    font-size: 28px;
  }
  .contact-content p {
    font-weight: 500;
    font-size: 17px;
  }
  .info-box {
    padding: 18px;
  }
  .info-box .icon {
    width: 50px;
    height: 50px;
  }
  .info-box .icon i {
    font-size: 18px;
  }
  .info-box .content h4 {
    font-size: 18px;
  }
  .info-box .content p, .info-box .content a {
    font-size: 17px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form input, .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
}
.theme-btn {
  margin-top: 15px;
  border: 2px solid #18a558;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 38px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  background: #18a558;
  transition: 0.35s ease;
}

/*# sourceMappingURL=contact.css.map */
