
.contact-wrapper {
  padding: 20px 40px;
}

/* TOP SECTION */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.tag {
  color: #a9cd37;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: -10px;
}

.top-header h2 {
  font-size: 40px;
  margin: 8px 0;
}

.desc {
  max-width: 400px;
  border-left: 3px solid #a9cd37;
  padding-left: 15px;
  color: #666;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
}

.card p {
    font-size: 14px;
    line-height: 15px;
  }
.card {
  background: #fff;
  padding: 30px;
  flex: 1;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  width: 60px;
  height: 60px;
  background: #eef6d7;
  color: #a9cd37;
  border-radius: 50%;
  line-height: 60px;
  font-size: 24px;
  margin: auto;
  margin-bottom: 15px;
}

/* BOTTOM SECTION */
.bottom-section {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.left{
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  flex: 1;
}
.right {
    margin: 30px 10px;
    padding: 50px 20px;
    border: 1px solid rgba(0, 0, 0, .125);
    flex: 1;
}
.left img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.help {
  margin-top: 15px;
  font-weight: bold;
}

.options {
  margin: 10px 0 20px;
}

.options label {
  margin-right: 15px;
  color: #555;
}

button {
  width: 100%;
  padding: 14px;
  background: #a9cd37;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #8fb82c;
  
}


/* RIGHT MAP */
.solution-right {
  
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.solution-right iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}



/* RESPONSIVE */
@media(max-width: 992px) {
  

  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
/* RESPONSIVE */
@media(max-width: 992px) {
  .top-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    flex-direction: column;
  }

  .bottom-section {
    flex-direction: column;
  }

  .row {
    flex-direction: column;
  }
}
@media screen and (min-width:320px) and (max-width:480px) {
  .contact-wrapper {
    padding: 20px 15px;
}
.right {
    margin: 0;
    padding: 0;
}
    .sky-form.cont-back fieldset {
        padding: 0 !important;
    }
    .top-header h2 {
    font-size: 22px;
}
.card {
    background: #fff;
    padding: 5px;
          margin-bottom: 0px;

  }
  .bottom-section {
    gap: 10px;
    margin-top: 0px;
}
}