/* Base ---------------------------------------------------------------- */

:root {
  --ur-primary: #7b5cff;
  --ur-primary-soft: rgba(123, 92, 255, 0.12);
  --ur-secondary: #ffce54;
  --ur-bg-deep: #050716;
  --ur-text-muted: #a6b0cf;
  --ur-border-soft: rgba(255, 255, 255, 0.08);
}

html,
body {
  height: 100%;
}

body {
  background: radial-gradient(circle at top, #131537 0, #050716 55%, #000 100%);
  color: #f8f9fa;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Helpers -------------------------------------------------------------- */

.text-gradient {
  background: linear-gradient(120deg, #ffce54, #ff8a8a, #7b5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-gradient {
  background: radial-gradient(circle at top, rgba(123, 92, 255, 0.15), rgba(0, 0, 0, 0.9));
}

.section-soft {
  background: radial-gradient(circle at left top, rgba(255, 255, 255, 0.04), transparent);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--ur-border-soft);
  color: var(--ur-text-muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Navbar --------------------------------------------------------------- */

.neo-navbar {
  background: rgba(5, 7, 22, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffce54, #7b5cff);
  color: #050716;
  font-size: 1.25rem;
}

/* Hero ---------------------------------------------------------------- */

.hero-section {
  min-height: 100vh;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
}

.hero-section::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 92, 255, 0.9), transparent 70%);
  top: -120px;
  right: -80px;
}

.hero-section::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 206, 84, 0.9), transparent 70%);
  bottom: -120px;
  left: -80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.12) 0, transparent 40%),
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, 0.18) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.13) 0, transparent 40%);
  mix-blend-mode: screen;
  opacity: 0.25;
  pointer-events: none;
}

.hero-text {
  max-width: 40rem;
}

.hero-meta > div {
  opacity: 0.82;
}

/* Hero card ----------------------------------------------------------- */

.hero-card {
  position: relative;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(5, 7, 22, 0.98));
  border: 1px solid var(--ur-border-soft);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 0, rgba(123, 92, 255, 0.32), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-card-header,
.hero-card-body {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  padding: 1.25rem 1.5rem 0.25rem;
}

.hero-card-body {
  padding: 0.75rem 1.5rem 1.5rem;
}

/* Buttons ------------------------------------------------------------- */

.btn-gradient {
  background-image: linear-gradient(120deg, #ff8a8a, #ffce54, #7b5cff);
  border: none;
  color: #050716;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-gradient:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: #050716;
}

.btn-gradient:active {
  transform: translateY(0);
}

/* Step cards ---------------------------------------------------------- */

.step-card {
  border-radius: 1.25rem;
  border: 1px solid var(--ur-border-soft);
  background: rgba(5, 7, 22, 0.9);
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(123, 92, 255, 0.2), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.step-number {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ur-primary-soft);
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Packages ------------------------------------------------------------ */

.package-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--ur-border-soft);
  background: rgba(5, 7, 22, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.9);
}

.package-card-highlight {
  background: radial-gradient(circle at top left, rgba(255, 206, 84, 0.25), rgba(5, 7, 22, 0.95));
}

.package-label {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--ur-border-soft);
  color: var(--ur-secondary);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

/* Occasions ----------------------------------------------------------- */

.occasion-card {
  border-radius: 1.25rem;
  border: 1px solid var(--ur-border-soft);
  background: rgba(5, 7, 22, 0.95);
  padding: 1.4rem 1.3rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.occasion-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(11, 16, 42, 0.98);
}

.icon-circle {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ur-primary-soft);
  color: #fff;
  font-size: 1.35rem;
}

/* Why URStar ---------------------------------------------------------- */

.feature-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--ur-border-soft);
  background: rgba(5, 7, 22, 0.9);
  font-size: 0.85rem;
  color: var(--ur-text-muted);
}

.mini-testimonial-card {
  border-radius: 1.5rem;
  border: 1px solid var(--ur-border-soft);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(5, 7, 22, 0.96));
  padding: 1.7rem 1.6rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.8);
}

.avatar-circle {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--ur-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 22, 0.9);
  color: var(--ur-text-muted);
}

/* Contact ------------------------------------------------------------- */

.contact-card {
  border-radius: 1.5rem;
  border: 1px solid var(--ur-border-soft);
  background: rgba(5, 7, 22, 0.9);
  padding: 1.75rem 1.6rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

/* Forms dark mode tweak ----------------------------------------------- */

.form-control,
.form-select,
textarea.form-control {
  background-color: rgba(5, 7, 22, 0.95);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f8f9fa;
}

.form-control::placeholder,
textarea.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(5, 7, 22, 0.96);
  border-color: var(--ur-primary);
  box-shadow: 0 0 0 0.15rem rgba(123, 92, 255, 0.4);
}

/* Footer -------------------------------------------------------------- */

footer {
  background: rgba(5, 7, 22, 0.98);
}

/* Spacing ------------------------------------------------------------- */

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Responsive tweaks --------------------------------------------------- */

@media (max-width: 991.98px) {
  .hero-section {
    text-align: left;
  }

  .hero-card {
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 5.8rem;
  }

  .hero-card {
    border-radius: 1.25rem;
  }

  .package-card {
    padding: 1.4rem 1.25rem;
  }
}
