/* ============================================================
   LUMIÈRE SALON — SERVICES PAGE STYLES
   services.css
   ============================================================ */

/* ─── Services Page Hero ─────────────────────────────────────── */
.services-hero {
  padding: 180px 0 100px;
  background-color: #0D0C0B;
  background-image: url('../images/lumiere-salon-luxury-hair-model.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.65);
  z-index: 0;
}

.services-hero > * { position: relative; z-index: 1; }
.services-hero .container { position: relative; z-index: 1; }

.services-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(199, 167, 108, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.services-hero .section-label {
  color: var(--gold);
  opacity: 0.8;
}

.services-hero .section-heading {
  font-size: 56px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.services-hero .section-heading::after {
  margin: 20px auto 0;
  background: var(--gold);
}

.services-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 18px auto 0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ─── Services Categories Section ───────────────────────────── */
.services-section {
  padding: 120px 0;
  background: var(--bg);
}

.services-category {
  margin-bottom: 100px;
}

.services-category:last-child {
  margin-bottom: 0;
}

/* ─── Category Header (editorial numbered style) ─────────────── */
.category-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dark);
}

.category-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-top: 10px;
  flex-shrink: 0;
  opacity: 0.85;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.category-subtitle {
  font-size: 15px;
  color: var(--cream-dim);
  margin-top: 6px;
  letter-spacing: 0.2px;
}

/* ─── Cards Grid ─────────────────────────────────────────────── */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── Service Card ────────────────────────────────────────────── */
.svc-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border-dark);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.svc-card:hover {
  transform: translateY(-10px);
  border-color: rgba(199,167,108,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

/* ─── Image with gradient overlay ────────────────────────────── */
.svc-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.svc-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(30, 30, 30, 0.18) 100%
  );
  pointer-events: none;
}

.svc-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.svc-card:hover .svc-card-image-wrap img {
  transform: scale(1.07);
}

/* ─── Card Body ──────────────────────────────────────────────── */
.svc-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
}

.svc-card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.svc-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 24px;
  flex: 1;
}

/* ─── Card Footer ────────────────────────────────────────────── */
.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.svc-price-badge {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.svc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.svc-book-btn:hover {
  color: var(--gold);
  gap: 10px;
}

/* ─── Services CTA Strip ─────────────────────────────────────── */
.services-cta {
  padding: 110px 0;
  background: #080807;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(199,167,108,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.services-cta .section-label {
  color: rgba(199, 167, 108, 0.7);
}

.services-cta .section-heading {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
}

.services-cta .section-heading::after {
  margin: 18px auto 0;
  background: var(--gold);
}

.services-cta-sub {
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.services-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .services-hero {
    padding: 140px 0 80px;
  }

  .services-hero .section-heading {
    font-size: 40px;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-title {
    font-size: 30px;
  }

  .svc-card-image-wrap {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .services-hero .section-heading {
    font-size: 34px;
  }

  .svc-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .services-cta .section-heading {
    font-size: 34px;
  }

  .services-cta-btns {
    flex-direction: column;
  }
}
