/* ===== Contact Page ===== */

.contact-container {
  padding: 100px 20px 60px;
  background: #f9fafc;
  color: #0D4A7A;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0D4A7A;
  margin-bottom: 10px;
  position: relative;
}

/* Small intro text */
.section-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #333;
}

/* Shared section layout */
.fade-section {
  margin-bottom: 60px;
  padding-left: 15px;
  border-left: 4px solid #0D4A7A;
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Contact info */
.contact-info h3,
.contact-form h3,
.map-section h3 {
  color: #0D4A7A;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.info-block p {
  margin: 10px 0;
  font-size: 1rem;
  color: #222;
}

.info-block a {
  color: #0D4A7A;
  text-decoration: underline;
}

/* Placeholder for Salesforce form */
.form-placeholder {
  background: #e3f2fd;
  border: 2px dashed #0D4A7A;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
  font-style: italic;
  color: #0D4A7A;
}

/* Map placeholder */
.map-placeholder {
  background: #e0f7fa;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: #0D4A7A;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    padding: 80px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .fade-section {
    margin-bottom: 40px;
  }
}
