/* ===========================
   CELEBRATO EVENTS — services.css
   =========================== */

/* SERVICES GRID */
.services-main {
  padding: var(--space-xl) 0;
}
.services-main .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: var(--space-md);
}
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
  transition: height 0.5s ease;
}
.service-detail-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}
.service-detail-card:hover::before { height: 100%; }
.service-detail-icon { font-size: 4rem; line-height: 1; }
.service-detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
}
.service-detail-card > p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}
.service-inclusions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-inclusions li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.service-inclusions li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: auto;
  transition: gap 0.3s;
}
.service-detail-link:hover { gap: 0.75rem; }

/* PROCESS SECTION */
.process-section {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}
.process-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--space-md);
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: 30px;
  right: 30px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #080808;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.12);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* PRICING */
.pricing-section {
  padding: var(--space-xl) 0;
}
.pricing-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-md);
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.4s;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, var(--bg-card) 100%);
}
.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 16px; right: -28px;
  background: var(--gold);
  color: #080808;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-primary);
  font-weight: 700;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pricing-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.pricing-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .services-detail-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .process-timeline::before {
    top: 30px; left: 29px;
    right: auto; bottom: 30px;
    width: 1px; height: auto;
    background: repeating-linear-gradient(
      180deg,
      var(--gold) 0,
      var(--gold) 6px,
      transparent 6px,
      transparent 14px
    );
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    padding: 0;
  }
  .step-num { margin-bottom: 0; flex-shrink: 0; }
  .process-step-text { flex: 1; }
}
@media (max-width: 480px) {
  .pricing-grid { max-width: 100%; }
}
