/* ============================================================
   SERVICES PAGE — Editorial Cards
   ============================================================ */

/* --- Services Hero (Dark) --- */
.services-hero {
  padding: 160px 0 80px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(141, 98, 169, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(184, 150, 28, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.services-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--purple) 50%, transparent 90%);
}

.services-hero h1 {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 400;
}

.services-hero p {
  font-size: 18px;
  color: rgba(207, 195, 228, 0.65);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}


/* --- Cards Section --- */
.svc-cards {
  background: var(--bg-lavender);
  padding: 80px 0 100px;
}

.svc-cards .container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}


/* --- Individual Card --- */
.svc-card {
  background: var(--bg-white);
  border: 1px solid rgba(207, 195, 228, 0.2);
  border-radius: 0;
  padding: 48px 52px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--purple);
  transition: height 0.4s ease;
}

.svc-card.is-visible:hover::before {
  height: 100%;
}

.svc-card.is-visible:hover {
  box-shadow: 0 20px 60px rgba(64, 62, 66, 0.08);
  border-color: rgba(141, 98, 169, 0.2);
}


/* --- Card Icon --- */
.svc-card-icon {
  min-width: 72px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  border: 1px solid rgba(141, 98, 169, 0.25);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.svc-card-icon svg {
  width: 40px;
  height: 40px;
}

.svc-card:hover .svc-card-icon {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(141, 98, 169, 0.1);
}


/* --- Card Content --- */
.svc-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-card-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-card-link {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.svc-card-link:hover {
  color: var(--mauve);
}

.svc-card-link span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.svc-card-link:hover span {
  transform: translateX(5px);
}


/* --- Bottom CTA --- */
.services-cta-section {
  background: var(--purple);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(184, 150, 28, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.services-cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.services-cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* --- Responsive --- */
@media (max-width: 768px) {
  .services-hero {
    padding: 120px 0 60px;
  }

  .services-hero h1 {
    font-size: 34px;
  }

  .services-hero p {
    font-size: 16px;
  }

  .svc-card {
    flex-direction: column;
    padding: 32px 28px;
    gap: 20px;
  }

  .svc-card-icon {
    min-width: 56px;
    width: 56px;
    height: 56px;
  }

  .svc-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .svc-card-body h3 {
    font-size: 22px;
  }
}


/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .svc-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
