/* ==========================================================================
   Footer Banner (Bottom CTA) CSS - Custom Agency
   ========================================================================== */

.footer-banner-section {
  width: 100%;
  min-height: 60vh;
  padding: 0.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer-banner-section {
    height: 100vh;
    padding: 1rem;
  }
}

.footer-banner-card {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-banner-card {
    border-radius: 2rem;
  }
}

@media (min-width: 768px) {
  .footer-banner-card {
    min-height: 90vh;
    border-radius: 2.5rem;
  }
}

.footer-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.footer-banner-title {
  position: relative;
  z-index: 10;
  font-size: 8vw;
  font-weight: 700;
  color: var(--base-300);
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) {
  .footer-banner-title {
    font-size: 9vw;
  }
}

.footer-banner-title sub {
  font-size: 4vw;
}

.footer-banner-bottom-bar {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  z-index: 10;
}

@media (min-width: 640px) {
  .footer-banner-bottom-bar {
    bottom: 2rem;
    padding: 0 2rem;
  }
}

.footer-banner-text-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-banner-text-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }
}

.footer-banner-heading {
  color: var(--base-300);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}

.footer-banner-desc {
  width: 100%;
  color: var(--base-300);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 500;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  text-align: left;
}

@media (min-width: 640px) {
  .footer-banner-desc {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .footer-banner-desc {
    width: 30%;
    text-align: right;
  }
}

/* Custom Interactive Cursor Badge */
.click-indicator {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  display: none;
}

.click-indicator.visible {
  display: block;
}

.click-indicator-box {
  background-color: var(--base-300);
  color: var(--base-100);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.click-indicator-icon {
  background-color: var(--base-200);
  color: var(--base-400);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
