.contact-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 220px;
  background: var(--brand-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.9) 0%,
    rgba(64, 145, 108, 0.5) 100%
  );
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  padding: 0 1.5rem;
}

.contact-hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.5rem;
}

.contact-hero-sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.contact-body {
  width: 100%;
  padding: 4rem 1.5rem;
  background: var(--brand-bg);
}

.contact-container {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-green-deep);
  margin: 0 0 0.75rem;
}

.contact-section-title:not(:first-child) {
  margin-top: 2rem;
}

.contact-section-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--brand-text-muted);
  margin: 0 0 1.25rem;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.12);
  color: var(--brand-green);
  transition: background 0.2s, color 0.2s;
}

.contact-social-link:hover {
  background: var(--brand-green);
  color: #fff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--brand-text);
}

.contact-detail-item a {
  color: var(--brand-text);
  text-decoration: none;
}

.contact-detail-item a:hover {
  color: var(--brand-green);
}

.contact-map {
  width: 100%;
  height: 320px;
  border-radius: var(--brand-radius);
  overflow: hidden;
}

.contact-form-col .wpforms-container {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  padding: 1.75rem;
}

.contact-form-col .wpforms-field-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--brand-text) !important;
}

.contact-form-col .wpforms-field input,
.contact-form-col .wpforms-field textarea,
.contact-form-col .wpforms-field select {
  border: 1px solid var(--brand-border) !important;
  border-radius: 6px !important;
  padding: 0.6rem 0.75rem !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 0.9rem !important;
}

.contact-form-col .wpforms-field input:focus,
.contact-form-col .wpforms-field textarea:focus {
  border-color: var(--brand-green) !important;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1) !important;
  outline: none !important;
}

.contact-form-col .wpforms-submit {
  background: var(--brand-green-deep) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.7rem 2rem !important;
  border-radius: 8px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.contact-form-col .wpforms-submit:hover {
  background: var(--brand-green) !important;
}

@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-hero {
    min-height: 220px;
  }
  .contact-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 200px;
  }
  .contact-hero-title {
    font-size: 1.5rem;
  }
  .contact-hero-sub {
    font-size: 0.9rem;
  }
  .contact-body {
    padding: 2.5rem 0.75rem;
  }
  .contact-map {
    height: 240px;
  }
}
