.contact-section {
  padding: 60px 0;
}

.contact-box {
  padding: 30px 50px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.iconcontactbox {
  width: 40px;
  height: 40px;
}

.contact-box .contact-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-box .contact-desc {
  font-size: 14px;
  color: #666;
}

.contact-blue {
  background: linear-gradient(
    135deg,
    rgba(var(--third-color), 1),
    rgba(var(--second-color), 1)
  );
}

.contact-lightblue {
  background: linear-gradient(
    135deg,
    rgba(var(--second-color), 1),
    rgba(var(--third-color), 1)
  );
}

.contact-white {
  background: linear-gradient(
    135deg,
    rgba(var(--third-color), 1),
    rgba(var(--second-color), 1)
  );
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Contact form */
.custom-contact-form .custom-input {
  background: rgba(var(--second-color), 0.3);
  border: 1px solid rgba(var(--white-color), 1);
  border-radius: 30px;
  padding: 14px 20px;
  color: rgba(var(--black-color), 1);
}

.custom-contact-form .custom-textarea {
  height: 140px;
  resize: none;
}

/* Newsletter box */
.custom-newsletter-box {
  /* background: #6a8a8b url("../images/contact/contact.jpg") center/cover */
    /* no-repeat; */
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.custom-newsletter-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  z-index: 0;
}

.custom-news-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.custom-news-desc {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.custom-news-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.custom-contact-form .custom-input:hover,
.custom-contact-form .custom-input:focus {
  box-shadow: none;
  outline: none;
}

@media (min-width: 576px) {
  .custom-news-form {
    flex-direction: column;
    align-items: center;
  }
}

.custom-news-input {
  background: rgba(var(--white-color), 1);
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  flex: 1;
}

.custom-news-btn {
  background: rgba(var(--main-color), 1);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  transition: background 0.3s ease;
  width: 100%;
}

.custom-news-btn:hover {
  background: rgba(var(--main-color), 0.8);
}

.custom-contact-form .common-bgBtn {
  border-radius: 40px;
}
@media (max-width: 1199px) {
  .iconcontactbox {
    width: 30px;
    height: 30px;
  }
  .contact-box {
    padding: 20px;
  }
  .contact-box .contact-title {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .contact-section,
  .common-section {
    padding: 30px 0;
  }
}
