/* Contact Hero Section */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/assets/img/hero-img.jpg");
  filter: brightness(0.6);
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 10rem 2rem 6rem 2rem;
  max-width: 900px;
  width: 100%;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

/* Form Validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border: 2px solid #dc2626;
}

.form-group.error label {
  color: #dc2626;
}

.contact-section-alt {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg) 100%);
}

.map-container {
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Cards */
.contact-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(80, 156, 53, 0.1);
  transform: translateY(-4px);
}

@media (max-width: 640px) {
  .contact-section {
    padding: 4rem 0;
  }

  .map-container {
    height: 300px;
  }
}
