.elementor-6981 .elementor-element.elementor-element-e52f01f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-da14ab7 *//* ===============================
   YUMSOCIAL COURSE BUDGET AI
   (scoped to #budget-calculator)
   =============================== */

/* Optional theme vars (safe to duplicate) */
:root {
  --ys-bg: #050509;
  --ys-card-dark: #101018;
  --ys-card-border: #272738;
  --ys-pink: #ff2f92;
  --ys-mint: #cafff7;
  --ys-text-main: #f9fafb;
  --ys-text-soft: #cbd5f5;
  --ys-text-muted: #9ca3af;
}

/* OUTER AI SHELL */
#budget-calculator.ys-ai-calculator {
  position: relative;
  padding: 3rem 1.5rem 3.2rem;
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #1f2937 0, #050816 40%, #020617 100%);
  color: var(--ys-text-main);
  isolation: isolate;
  max-width: 980px;
  margin-inline: auto;
}

/* Soft gradient glow background */
#budget-calculator.ys-ai-calculator::before,
#budget-calculator.ys-ai-calculator::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(110, 231, 183, 0.25), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(244, 114, 182, 0.30), transparent 55%);
  opacity: 0.9;
  z-index: -2;
}

#budget-calculator.ys-ai-calculator::after {
  filter: blur(32px);
  opacity: 0.7;
}

/* Heading + intro */
#budget-calculator.ys-ai-calculator h2 {
  font-size: 1.7rem;
  margin: 0 0 0.3rem;
  color: #ffffff;
}

#budget-calculator.ys-ai-calculator > p {
  max-width: 780px;
  margin: 0 auto 0.7rem;
  color: var(--ys-text-soft);
  font-size: 0.95rem;
}

/* "AI-powered estimate" pill tag */
#budget-calculator.ys-ai-calculator h2::after {
  content: "AI-powered estimate";
  display: inline-flex;
  align-items: center;
  margin-left: 0.6rem;
  padding: 0.12rem 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 253, 0.7);
  background: radial-gradient(circle at 0 0, rgba(196, 181, 253, 0.25), transparent 70%);
  color: #e5e7eb;
}

/* MAIN FORM CARD */
#budget-calculator .ys-card.ys-calculator-form {
  max-width: 780px;
  margin: 1.6rem auto 0;
  padding: 1.8rem 1.6rem 2rem;
  border-radius: 22px;
  background: rgba(10, 16, 30, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
}

/* FORM GROUPS */
#budget-calculator .ys-calculator-group {
  margin-bottom: 1rem;
}

#budget-calculator .ys-calculator-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ys-text-main);
  letter-spacing: 0.02em;
}

#budget-calculator .ys-calculator-group label strong {
  color: var(--ys-mint);
  font-weight: 600;
}

/* SELECTS (AI-ish pills) */
#budget-calculator .ys-calculator-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  font-size: 0.9rem;
  outline: none;
  appearance: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    transform 0.08s ease;
}

#budget-calculator .ys-calculator-group select:focus {
  border-color: var(--ys-pink);
  box-shadow:
    0 0 0 1px rgba(255, 47, 146, 0.7),
    0 0 0 10px rgba(255, 47, 146, 0.12);
  background: rgba(15, 23, 42, 1);
  transform: translateY(-1px);
}

/* SUBMIT BUTTON */
#budget-calculator .ys-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.96rem;
  background: linear-gradient(135deg, var(--ys-pink), var(--ys-mint));
  color: #050509;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
}

#budget-calculator .ys-button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
  filter: brightness(1.04);
}

#budget-calculator .ys-button-primary:active {
  transform: translateY(0);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.55);
}

/* RESULT CARD */
#budget-calculator .ys-calculator-result {
  max-width: 780px;
  margin: 1.8rem auto 0;
  padding: 1.7rem 1.7rem 2rem;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(16, 16, 24, 0.96),
    rgba(12, 22, 60, 0.98)
  );
  border: 1px solid rgba(202, 255, 247, 0.22);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.78),
    0 0 40px rgba(255, 47, 146, 0.09);
  color: #e5e7eb;
}

/* Result headline */
#budget-calculator .ys-calculator-result h3 {
  color: #ffffff;
  font-weight: 650;
  margin-bottom: 0.6rem;
}

/* Dollar range */
#budget-calculator .ys-calculator-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ys-mint);
  margin-bottom: 0.55rem;
}

/* Tier explanation */
#budget-calculator #ys-course-budget-tier-text {
  color: #f1f5f9;
  line-height: 1.6;
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
}

/* Small note / disclaimer */
#budget-calculator .ys-small-note {
  color: var(--ys-text-soft);
  font-size: 0.82rem;
  opacity: 0.9;
}

/* MOBILE TWEAKS */
@media (max-width: 640px) {
  #budget-calculator.ys-ai-calculator {
    padding: 2.3rem 1.1rem 2.5rem;
    border-radius: 24px;
  }

  #budget-calculator .ys-card.ys-calculator-form,
  #budget-calculator .ys-calculator-result {
    padding: 1.35rem 1.1rem 1.7rem;
  }

  #budget-calculator.ys-ai-calculator h2 {
    font-size: 1.35rem;
  }

  #budget-calculator.ys-ai-calculator h2::after {
    display: block;
    margin: 0.32rem 0 0;
  }
}/* End custom CSS */