
/* contact.css */
.contact-hero {
  background: linear-gradient(to right, #a8edea, #fed6e3);
  text-align: center;
  padding: 4rem 2rem;
  color: #014d34;
  margin-top: 80px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background-color: #f0fdf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Info Card */
.contact-info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  color: #014d34;
}

.contact-info-card h2,
.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #014d34;
}

.certifications h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.certifications ul {
  padding-left: 1rem;
  list-style-type: disc;
}

.social-icons {
  margin-top: 2rem;
}




/* Form Card */
.contact-form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f9f9f9;
}

.contact-form-card textarea {
  resize: vertical;
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.privacy-note a {
  color: orange;
  text-decoration: underline;
}

/* Primary Button */
.btn-primary {
  background-color: #009b63;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #007a50;
}

.btn-primary:focus {
  outline: 3px dashed #007a50;
  outline-offset: 4px;
}

/* Map Section */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  margin-top: -1rem;
}

