.contact-section {
  background: #00723F;
  color: white;
  padding: 80px 20px;
}

.contact-header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-header p {
  color: #e6fff2;
  font-size: 18px;
  line-height: 1.6;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----- FORM CARD ----- */
.contact-card {
  background: white;
  color: #222;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Make message span full width */
.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Submit button */
.contact-btn {
  margin-top: 16px;
  background: #D62828;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.contact-btn:hover {
  background: #005f32;
}

/* ----- MAP BOX ----- */
.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}
