/* ============================================================
    CONTACT CARDS - for index.html and enterprise.html
============================================================ */

.contact-section {
  min-height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get-started {
  background: var(--color-bg);
  padding: clamp(40px, 8vw, 120px) clamp(24px, 8vw, 130px);
}

.get-started__label {
  font-size: var(--fluid-label);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.get-started__title {
  font-size: var(--fs-section-title);
  font-weight: 500;
  line-height: 1;
  letter-spacing: clamp(-3px, -0.2vw, -1px);
}

.contact-cards {
  background: var(--color-bg);
  padding: clamp(16px, 4vw, 50px) clamp(20px, 5vw, 54px);
  flex: 1;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 36px);
  max-width: 95%;
  margin: 0 auto;
}

.contact-card {
  position: relative;
  overflow: hidden;
  height: var(--card-height-fluid);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-card:hover {
  transform: scale(1.01);
}

.contact-card img.contact-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.contact-card__title {
  position: relative;
  display: block;
  margin: var(--card-margin-fluid);
  font-size: var(--fs-card-title);
  font-weight: 500;
  line-height: 1.2;
  max-width: clamp(220px, 80%, 350px);
  z-index: 2;
}


@media (max-width: 1024px) {
  .contact-cards__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-card__title {
    max-width: 50%;
  }

  .contact-card img.contact-card__bg {
    object-position: center 65%;
  }

  .contact-card:last-child img.contact-card__bg {
    object-position: center 70%;
  }
}