.contact-hero {
  background-image: url('image/contact-us-image-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.contact-hero h1 {
  font-size: 65px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 19px;
  font-weight: 500;
  color: #ffffff;
}

.contact-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}
.form-loading {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}
.form-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e0d5d5;
  border-top-color: #8B1A1A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.footer-logo img {
  height: 62px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .contact-hero h1 { font-size: 38px; }
  .contact-hero p { font-size: 16px; }
  .contact-form-wrapper { padding: 48px 20px; }
}
