/* ═══════════════════════════════════════════════
   sections.css — Services, Packages, Why Us, CTA
   ═══════════════════════════════════════════════ */

/* ── SERVICES ── */
.pv-services-section {
  background: #19191a;
}

/* ── PACKAGES ── */
.pv-packages-section {
  background: #19191a;
  position: relative;
}
/* .pv-packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 40% at 50% 0%,
    rgba(74, 124, 246, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
} */

/* Package Cards */
.pv-package-card {
  background: #232324;
  border: 1px solid var(--pv-card-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pv-package-card:hover {
  transform: translateY(-6px);
  box-shadow:
    rgb(84 26 26 / 40%) 0px 16px 48px,
    rgb(64 0 0 / 40%) 0px 0px 30px;
}

.pv-package-card--featured {
  border-color: var(--pv-blue);
  background: linear-gradient(160deg, #282626 0%, #000000 100%);
  box-shadow: 0 8px 40px rgb(255 255 255 / 20%);
}
.pv-package-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b31718, #5a3169);
}
.pv-package-card--featured:hover {
  box-shadow: 0 20px 60px rgb(131 93 93 / 30%);
}

.pv-package-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pv-text-muted);
  margin-bottom: 16px;
}
.pv-package-badge--featured {
  background: var(--pv-blue);
  color: var(--pv-white);
}
.pv-package-badge--ultimate {
  background: linear-gradient(90deg, #e4814e, #b31718);
  color: var(--pv-white);
}

.pv-package-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pv-white);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.pv-package-price {
  font-size: 1.2rem;
  color: var(--pv-text-muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pv-package-price strong {
  color: var(--pv-white);
  font-size: 1rem;
}

.pv-package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-package-features li {
  color: var(--pure-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pv-package-features li i {
  font-size: 1.2rem;
  color: var(--pv-blue);
  width: 15px;
  flex-shrink: 0;
}
.pv-package-features li.disabled {
  opacity: 0.35;
  text-decoration: line-through;
}
.pv-package-features li.disabled i {
  color: var(--pv-text-dim);
}

/* ── WHY US ── */
.pv-why-section {
  background: #19191a;
}

.pv-why-item {
  text-align: center;
  padding: 36px 20px;
  background: #232324;
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}
.pv-why-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 30px rgb(246 74 74 / 38%);
}

.pv-why-icon {
  width: 80px;
  height: 80px;
  background: rgb(42 0 0 / 28%);
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.6rem;
  color: var(--pure-white);
  transition: var(--transition);
}
.pv-why-item:hover .pv-why-icon {
  background: var(--pv-blue);
  color: var(--pv-white);
}

.pv-why-item h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pv-white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.pv-why-item p {
  color: var(--pure-white);
  margin: 0;
  line-height: 1.3;
}

/* ── CTA BANNER ── */
.pv-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #19191a;
}

.pv-cta-bg {
  position: absolute;
  inset: 0;
}
.pv-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 124, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 124, 246, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.pv-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--pv-white);
  letter-spacing: 0.02em;
}

.pv-cta-sub {
  color: var(--pv-text-muted);
  margin-bottom: 0;
}
.pv-testimonials-section {
  background: #19191a;
}
