.esteem-contact-card-link { color: inherit; text-decoration: none; }
.esteem-contact-card-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.esteem-contact-card-details { display: grid; justify-items: center; gap: 4px; }
.esteem-contact-card-details a { color: inherit; text-decoration: none; }
.esteem-contact-card-details a:hover { text-decoration: underline; text-underline-offset: 3px; }



/* ============================================================
   HOMEPAGE FOOTER CTA SECTION STYLES
   ============================================================ */

.esteem-footer-cta-section {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto 40px;
  padding: 0 30px;
  box-sizing: border-box;
}

.esteem-footer-cta-card {
  position: relative;
  background-color: var(--esteem-color-paper, #ffffff);
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.esteem-footer-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.esteem-footer-cta-title {
  margin: 0;
  font-family: var(--esteem-font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--esteem-weight-medium, 500);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--esteem-color-ink, #111);
}

.esteem-footer-cta-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--esteem-color-muted, rgba(17, 17, 17, 0.7));
}

.esteem-footer-cta-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.esteem-footer-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%);
}

@media (max-width: 768px) {
  .esteem-footer-cta-section {
    padding: 0 16px;
  }
  .esteem-footer-cta-card {
    padding: 40px 20px;
  }
  .esteem-footer-cta-title {
    font-size: 24px;
  }
  .esteem-footer-cta-desc {
    font-size: 14px;
  }
}
