/* ===== HERO ===== */
.contact-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,114,63,0.8);
}

.contact-hero-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, white, transparent);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background: #F5F5F5;
  padding: 80px 0;
}

.info-grid {
  max-width: 1325px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0 20px;
}

.info-card {
  background: white;
  padding: 15px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.info-card i {
  font-size: 32px;
  margin-bottom: 10px;
}

.info-card h3 {
  color: #00723F;
  margin-bottom: 8px;
}

.green { color: #00723F; }
.red { color: #D62828; }

/* ===== MAP + FORM ===== */
.map-form-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* MAP */
.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

/* FORM */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.contact-form h3 {
  text-align: center;
  color: #00723F;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: "Geist", sans-serif;
}

.full-input {
  margin-bottom: 15px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #D62828;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #00723F;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .map-form-section {
    grid-template-columns: 1fr;
  }
}
