.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.property-card {
  transition: all 0.3s ease;
}
.bg-primary-light {
  background-color: #f2ebf4;
}
.bg-primary {
  background-color: #783293;
}
.text-primary {
  color: #783293;
}
.text-off {
  color: #c4a2cf;
}
.hero-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}
.gold-gradient {
  background: linear-gradient(135deg, #783293 0%, #783293 50%, #783293 100%);
}
.section-fade {
  background: linear-gradient(180deg, #f2ebf4 0%, #f2ebf4 100%);
}
.card-hover-lift {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}
input::placeholder {
  color: #9ca3af;
  /*font-style: italic;*/
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #783293;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.button {
  background-color: #783293;
  width: 100%;
  padding: 8px 0;
  color: white;
  font-weight: 500;
  border-radius: 6px;
}

.button:hover {
  background-color: #912eb8;
}

/*---- Partnairs ------------*/
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 25s linear infinite;
}

.animate-scroll:hover {
  animation-play-state: paused;
}
