/* ══════════════════════════════════════════════
   SERVICES & PACKAGES — PAGE-SPECIFIC STYLES
   ══════════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgb(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgb(201, 168, 76, 0.05) 0%, transparent 50%), var(--black);
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--grey-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    0 0 12px 4px rgb(201, 168, 76, 0.6),
    0 0 30px 8px rgb(201, 168, 76, 0.25);
  animation: floatUp ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 5%;
  width: 8px;
  height: 8px;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 15%;
  width: 10px;
  height: 10px;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle:nth-child(3) {
  left: 25%;
  width: 7px;
  height: 7px;
  animation-delay: 4s;
  animation-duration: 11s;
}

.particle:nth-child(4) {
  left: 35%;
  width: 12px;
  height: 12px;
  animation-delay: 1s;
  animation-duration: 15s;
}

.particle:nth-child(5) {
  left: 45%;
  width: 9px;
  height: 9px;
  animation-delay: 3s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  left: 55%;
  width: 7px;
  height: 7px;
  animation-delay: 5.5s;
  animation-duration: 14.5s;
}

.particle:nth-child(7) {
  left: 65%;
  width: 9px;
  height: 9px;
  animation-delay: 0.5s;
  animation-duration: 11.5s;
}

.particle:nth-child(8) {
  left: 75%;
  width: 13px;
  height: 13px;
  animation-delay: 2.5s;
  animation-duration: 16s;
}

.particle:nth-child(9) {
  left: 85%;
  width: 8px;
  height: 8px;
  animation-delay: 4.5s;
  animation-duration: 12s;
}

.particle:nth-child(10) {
  left: 92%;
  width: 10px;
  height: 10px;
  animation-delay: 1.5s;
  animation-duration: 14s;
}

.particle:nth-child(11) {
  left: 10%;
  width: 9px;
  height: 9px;
  animation-delay: 6s;
  animation-duration: 11s;
}

.particle:nth-child(12) {
  left: 50%;
  width: 11px;
  height: 11px;
  animation-delay: 3.5s;
  animation-duration: 13s;
}

@keyframes floatUp {
  0% {
    bottom: -5%;
    opacity: 0;
    transform: translateX(0) scale(0.3);
  }

  8% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 1;
    transform: translateX(12px);
  }

  50% {
    opacity: 0.9;
    transform: translateX(-8px);
  }

  75% {
    opacity: 0.7;
    transform: translateX(15px);
  }

  92% {
    opacity: 0.3;
  }

  100% {
    bottom: 105%;
    opacity: 0;
    transform: translateX(-5px) scale(0.5);
  }
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

/* ══════════════════════════════════════
   PACKAGES — THE JOURNEY LAYOUT
   ══════════════════════════════════════ */

.packages-section {
  padding: 100px 24px;
  background: var(--black);
  position: relative;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
}

.packages-intro {
  text-align: center;
  margin-bottom: 80px;
}

.packages-intro .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.packages-intro p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--grey-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ── The Three Tiers ── */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 80px;
}

.tiers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.3;
  z-index: 0;
}

.tier-card {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.tier-inner {
  background: var(--black-soft);
  border: 1px solid var(--charcoal);
  border-radius: 16px;
  padding: 48px 32px 44px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.tier-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tier-inner:hover::before {
  opacity: 1;
}

.tier-inner:hover {
  border-color: rgb(201, 168, 76, 0.3);
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgb(0, 0, 0, 0.5),
    0 0 40px var(--gold-glow);
}

.tier-card.featured .tier-inner {
  border-color: rgb(201, 168, 76, 0.25);
  background: radial-gradient(ellipse at 50% 0%, rgb(201, 168, 76, 0.04) 0%, transparent 60%), var(--black-soft);
}

.tier-card.featured .tier-inner::before {
  opacity: 1;
}

.featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
}

.tier-step {
  width: 40px;
  height: 40px;
  margin: 0 auto 28px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: all 0.4s ease;
}

.tier-inner:hover .tier-step {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.tier-card.featured .tier-step {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.tier-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.5;
}

.tier-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--charcoal);
}

.tier-price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.tier-price .amount .dollar {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 2px;
}

.tier-price .starting {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

.tier-features {
  list-style: none;
  text-align: left;
  flex: 1;
  margin-bottom: 32px;
}

.tier-features li {
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey-light);
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgb(42, 42, 42, 0.5);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.tier-cta {
  margin-top: auto;
}

.tier-cta .btn {
  width: 100%;
  text-align: center;
}

/* Extracted from inline style on featured tier CTA */
.tier-cta .btn-primary {
  width: 100%;
  text-align: center;
}

.btn-tier-outline {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid rgb(201, 168, 76, 0.4);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  text-align: center;
}

.btn-tier-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* ══════════════════════════════════════
   HOURLY CONSULTATION — OFFSET CARD
   ══════════════════════════════════════ */

.consult-section {
  padding: 0 24px 100px;
  background: var(--black);
}

.consult-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black-soft);
  border: 1px solid var(--charcoal);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.consult-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.consult-left {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--charcoal);
}

.consult-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.consult-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.consult-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}

.consult-price span {
  font-size: 1rem;
  color: var(--grey);
}

.consult-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
  font-weight: 300;
}

.consult-right {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse at 80% 50%, rgb(201, 168, 76, 0.04) 0%, transparent 70%), var(--black-rich);
}

.consult-right p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════
   ADD-ON SERVICES — ELEGANT RIBBON
   ══════════════════════════════════════ */

.addons-section {
  padding: 100px 24px;
  background: var(--black-rich);
  position: relative;
}

.addons-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.addons-container {
  max-width: 900px;
  margin: 0 auto;
}

.addons-header {
  text-align: center;
  margin-bottom: 50px;
}

.addons-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.addons-header p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 300;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.addon-item {
  background: var(--black-soft);
  border: 1px solid var(--charcoal);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.addon-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.5s ease;
}

.addon-item:hover::before {
  width: 100%;
}

.addon-item:hover {
  border-color: rgb(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgb(0, 0, 0, 0.4),
    0 0 20px var(--gold-glow);
}

.addon-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.addon-item:hover .addon-icon {
  border-color: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.addon-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.addon-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.addon-item:hover .addon-name {
  color: var(--gold-light);
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Extracted from inline style on addon price note */
.addon-price-note {
  font-size: 0.85rem;
  color: var(--grey);
}

.addon-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.5;
  font-weight: 300;
}

/* ══════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════ */

.cta-banner {
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse at 50% 0%, rgb(201, 168, 76, 0.08) 0%, transparent 60%), var(--black);
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner p {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (width <= 992px) {
  .tiers {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .tiers::before {
    display: none;
  }

  .tier-card {
    padding: 0;
  }

  .consult-card {
    grid-template-columns: 1fr;
  }

  .consult-left {
    border-right: none;
    border-bottom: 1px solid var(--charcoal);
  }

  .addons-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (width <= 768px) {
  .page-hero {
    min-height: 38vh;
    padding: 140px 20px 60px;
  }

  .tier-inner {
    padding: 40px 24px 36px;
  }

  .consult-left,
  .consult-right {
    padding: 36px 24px;
  }

  .addon-item {
    padding: 28px 20px;
  }
}
