.contact-social-box {
  padding: 30px 10px;
  background: #fff;
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  height: 100%;
  border-radius: 10px;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
  text-align: center;
  border: 1px solid #d5d5d5;
}
.contact-social-box::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgb(13 92 99 / 0.05);
  border-radius: 50%;
  left: auto;
  right: -80px;
  top: -80px;
}
.contact-social-box h3 {
  font-size: 32px;
  text-transform: capitalize;
}
.contact-social-box a {
  color: var(--black-color);
  margin-top: 10px;
}

.contact-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #ccc;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.contact-form-row {
  display: grid;
  gap: 25px;
  margin-bottom: 20px;
}

.contact-form-row.three {
  grid-template-columns: repeat(3, 1fr);
}

.contact-form-row.two {
  grid-template-columns: repeat(2, 1fr);
}

.contact-form-row input,
.contact-form-row textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f4f4f4;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 18px;
  color: #5a6d82;
  font-size: 16px;
}

.contact-form-row input::placeholder,
.contact-form-row textarea::placeholder {
  color: #5a6d82;
  font-size: 16px;
}

.contact-form-row textarea {
  resize: vertical;
  min-height: 160px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.captcha-code {
  background: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 6px;
}

.refresh-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.captcha-row .contact-form-row input {
  max-width: 650px;
}

.submit-btn {
  text-align: center;
}

.captcha-row input {
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
}
.map_wrapper,
.contact-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.map_wrapper iframe {
  width: 100%;
  border-radius: 10px;
  height: 100%;
}
@media (max-width: 992px) {
  .contact-wrapper {
    padding: 35px;
  }

  .contact-form-row.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-row.three,
  .contact-form-row.two {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .contact-form-row {
    margin-bottom: 6px;
  }
  .contact-social-box {
    margin-bottom: 20px;
    height: auto;
    padding: 1rem;
  }
  .contact-social-box h3 {
    font-size: 22px;
    color: var(--main-color);
  }

  .contact-form-row input,
  .contact-form-row textarea {
    font-size: 18px;
    padding: 18px;
    margin-bottom: 10px;
  }

  .captcha-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .captcha-row .contact-form-row input {
    max-width: 100%;
  }

  .submit-btn button {
    width: 100%;
    font-size: 20px;
  }

  .contact-wrapper {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .captcha-box {
    flex-wrap: wrap;
  }

  .captcha-code {
    font-size: 20px;
    letter-spacing: 4px;
  }
}
