/* PREMIUM COURSE CARDS
 * Ultra-premium feminine luxury UI
 */

.academy-card-ultra-premium {
  background: rgba(255, 255, 255, 0.03); /* Slightly more solid background */
  backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  height: 100%;
}

.academy-card-ultra-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

/* Internal Border Glow */
.academy-card-ultra-premium::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, transparent 50%, rgba(255, 46, 147, 0.1) 100%);
  border-radius: 40px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.academy-card-ultra-premium:hover::after {
  opacity: 1;
}

.academy-card-img-wrap {
  height: 450px;
  position: relative;
  overflow: hidden;
}

.academy-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s var(--cinematic-easing);
  filter: saturate(1.1) brightness(0.9);
}

.academy-card-ultra-premium:hover .academy-card-img-wrap img {
  transform: scale(1.1);
  filter: saturate(1.2) brightness(1);
}

.academy-card-body {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 10;
}

.academy-card-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--hot-pink);
  margin-bottom: 2rem;
  display: inline-block;
  background: rgba(255, 46, 147, 0.08);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 46, 147, 0.2);
}

.academy-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.academy-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  max-width: 90%;
}

.academy-card-footer {
  margin-top: auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.academy-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
}

/* Floating Animation on Hover */
.academy-card-ultra-premium:hover {
  transform: translateY(-20px);
  box-shadow: 0 50px 100px rgba(255, 46, 147, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
  .academy-card-img-wrap {
    height: 300px;
  }
  .academy-card-body {
    padding: 2.5rem;
  }
  .academy-card-title {
    font-size: 2.5rem;
  }
  .academy-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .academy-card-footer .btn-feminine-luxury {
    width: 100%;
    text-align: center;
  }
}

