.contact-section {
  padding: 100px 0;
  background: #f8f7f3;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: auto auto 70px;
}

.section-heading span {
  color: #c29a5c;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 52px;
  color: #1d3928;
  margin: 15px 0;
}

.section-heading p {
  color: #666;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-card i {
  font-size: 28px;
  color: #1d3928;
  margin-bottom: 15px;
}

.info-card h4 {
  margin-bottom: 10px;
}

.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1d3928;
}

.contact-form button {
  background: #1d3928;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
}

.trust-section {
  padding: 80px 0;
}

.trust-box {
  background: #1d3928;
  color: white;
  border-radius: 30px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.trust-stats {
  display: flex;
  gap: 50px;
}

.trust-stats h4 {
  font-size: 42px;
  margin-bottom: 5px;
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-box {
    flex-direction: column;
  }

  .trust-stats {
    justify-content: space-between;
  }

  .section-heading h2 {
    font-size: 36px;
  }
}
