/* Contact page */

.hero-section-wrapper {
  min-height: 48vh;
}

.hero-section-wrapper .hero-content .h1,
.hero-section-wrapper .h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
}

.hero-sub {
  color: rgba(250, 250, 249, 0.82);
  font-size: 1.1rem;
  margin-top: 14px;
  font-weight: 400;
}

.contact-layout {
  display: flex;
  flex-flow: row;
  gap: clamp(40px, 7vw, 80px);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.contact-left {
  max-width: 480px;
  display: flex;
  flex-flow: column;
  gap: 24px;
}

.contact-card-group {
  display: flex;
  flex-flow: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255, 237, 0, 0.35);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bright-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon img {
  width: 22px;
  height: 22px;
}

.contact-card-text {
  display: flex;
  flex-flow: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.contact-card-value {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--black);
}

.contact-card-value a {
  color: inherit;
  transition: color 0.2s var(--ease-out);
}

.contact-card-value a:hover {
  color: var(--dark-grey);
}

.contact-card-value .sep {
  color: var(--ash);
  margin: 0 8px;
  font-weight: 400;
}

.cta-form-card {
  width: 100%;
  max-width: 520px;
}

.cta-form-card .h2.contact-form {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.text-block-2 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--body-text);
}

@media screen and (max-width: 991px) {
  .contact-layout {
    flex-flow: column;
    align-items: stretch;
  }

  .contact-left {
    max-width: 100%;
  }

  .cta-form-card {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .hero-section-wrapper {
    min-height: 40vh;
  }
}

@media screen and (max-width: 479px) {
  .cta-form-card {
    padding: 24px;
  }

  .contact-card {
    padding: 16px 18px;
  }
}
