/*************************************************
  Astrology Landing Page Overrides
*************************************************/

/*************************************************
  Hero Section
*************************************************/

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;

  border-radius: 9999px;

  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(196, 181, 253, 0.25);

  color: #ddd6fe;

  backdrop-filter: blur(12px);
}

.hero-title {
  line-height: 1.1;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;

  color: rgb(209 213 219);
  line-height: 1.8;
}

/*************************************************
  Cosmic Background Glow
*************************************************/

.cosmic-glow-purple,
.cosmic-glow-pink {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;

  pointer-events: none;
}

.cosmic-glow-purple {
  top: 0;
  left: 0;

  background: rgba(147, 51, 234, 0.2);
  filter: blur(140px);
}

.cosmic-glow-pink {
  right: 0;
  bottom: 0;

  background: rgba(236, 72, 153, 0.2);
  filter: blur(140px);
}

/*************************************************
  Glass Cards
*************************************************/

.glass-card {
  padding: 2rem;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);

  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);

  border-color: rgba(255, 255, 255, 0.15);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/*************************************************
  Service Cards
*************************************************/

.service-card-modern {
  position: relative;

  padding: 2rem;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card-modern:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card-modern.purple:hover {
  border-color: rgba(192, 132, 252, 0.5);
}

.service-card-modern.pink:hover {
  border-color: rgba(244, 114, 182, 0.5);
}

.service-card-modern.blue:hover {
  border-color: rgba(96, 165, 250, 0.5);
}

.service-card-modern.orange:hover {
  border-color: rgba(251, 146, 60, 0.5);
}

/*************************************************
  Service Icons
*************************************************/

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-icon.purple {
  color: #d8b4fe;
}

.service-icon.pink {
  color: #f9a8d4;
}

.service-icon.blue {
  color: #93c5fd;
}

.service-icon.orange {
  color: #fdba74;
}

/*************************************************
  Benefits Section
*************************************************/

.benefit-card {
  padding: 1.5rem;

  text-align: center;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.06);
}

.benefit-card .emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/*************************************************
  CTA SECTION
*************************************************/

.cta-section {
  padding: 4rem;

  border-radius: 32px;

  background: linear-gradient(
    135deg,
    rgba(88, 28, 135, 0.45),
    rgba(49, 46, 129, 0.55)
  );

  border: 1px solid rgba(192, 132, 252, 0.18);

  backdrop-filter: blur(12px);
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto;
}

/*************************************************
  CTA BUTTON
*************************************************/

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 1rem 2rem;

  border-radius: 9999px;

  background: white;
  color: #312e81;

  font-weight: 700;
  text-decoration: none;

  transition: all 0.25s ease;
}

.cta-button:hover {
  transform: scale(1.05);

  box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/*************************************************
  Navigation Cards
*************************************************/

.navigation-card {
  display: block;

  padding: 1.5rem;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;

  transition: all 0.25s ease;
}

.navigation-card:hover {
  transform: translateY(-4px);

  border-color: rgba(196, 181, 253, 0.4);

  text-decoration: none;
}

.navigation-card h3 {
  color: white;
}

.navigation-card .arrow {
  font-size: 1.25rem;
  color: #c4b5fd;
  margin-bottom: 0.75rem;
}

/*************************************************
  Responsive
*************************************************/

@media (max-width: 768px) {
  .glass-card,
  .service-card-modern,
  .cta-section {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem;
  }

  .hero-title {
    font-size: 3rem !important;
  }
}
