/* contact.css — styles for the Contact Us page */

/* ===== Hero Banner ===== */
.contact-hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
}

.contact-banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0 0 16px 16px;
}

/* ===== Contact Form Section ===== */
.contact-section {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
}

.contact-section h2 {
  font-size: 2.2rem;
  color: #2e7d32;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
  text-align: center;
}

/* ===== Form Styling ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #444;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2e7d32;
}

/* ===== Button ===== */
.submit-btn {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #256328;
}

/* ===== Map Section ===== */
.map-section iframe {
  border: none;
  display: block;
  width: 100%;
  height: 500px;
  margin-bottom: 4rem;
}

/* ===== Responsive Styling ===== */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}
