body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f6fbf9;
}

.contact-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f5faf8 0%, #e4f3ec 100%);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-header h2 {
  font-size: 44px;
  margin: 14px 0 12px;
  color: #173f38;
}

.section-header p {
  color: #4e6f67;
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 26px;
  margin-bottom: 30px;
}

.contact-info {
  background: linear-gradient(160deg, #0d6b5c, #1ea37f);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(13, 107, 92, 0.24);
}

.info-box {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.info-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff6a2a;
  color: #fff;
  font-size: 17px;
}

.info-text h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
}

.info-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.social-icons {
  margin-top: 22px;
}

.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.social-icons a:hover {
  background: #ff6a2a;
  transform: translateY(-2px);
}

.contact-form {
  background: #fff;
  border: 1px solid #d8ebe4;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 36px rgba(15, 77, 65, 0.13);
}

.contact-form h3 {
  font-size: 32px;
  margin-bottom: 6px;
  color: #173f38;
}

.contact-form > p {
  color: #55776f;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #2f564f;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #c8ded5;
  border-radius: 12px;
  background: #f8fcfa;
  padding: 12px 13px;
  font-size: 15px;
  color: #1b312c;
  transition: 0.25s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d6b5c;
  box-shadow: 0 0 0 4px rgba(13, 107, 92, 0.14);
}

input.submit_btn {
    border: none;
    border-radius: 30px;
    padding: 13px 28px;
    background: linear-gradient(90deg, #ff6a2a, #ff824f);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 106, 42, 0.32);
}

.map-wrap {
  background: #fff;
  border: 1px solid #d8ebe4;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(15, 77, 65, 0.12);
}

.map-head h3 {
  margin: 0 0 6px;
  font-size: 28px;
  color: #173f38;
}

.map-head p {
  margin: 0 0 14px;
  color: #55776f;
}

.map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 14px;
}

@media (max-width: 992px) {
  .section-header h2 {
    font-size: 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 54px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
  }

  .contact-form,
  .contact-info,
  .map-wrap {
    border-radius: 16px;
    padding: 18px;
  }

  .contact-form h3 {
    font-size: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-head h3 {
    font-size: 22px;
  }

  .map iframe {
    height: 280px;
  }
}
