/* ============================================
   GÉNÉRATION & CUTZ — Services Page Styles
   ============================================ */

/* --- Page Header --- */
.services-page-header {
  padding: 160px 0 100px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-page-header .page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1920&q=80');
  background-size: cover;
  background-position: center top;
  opacity: 0.25;
}

.services-page-header .page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
}

.services-page-header .page-header-content {
  position: relative;
  z-index: 1;
}

/* --- Intro Section --- */
.services-intro {
  background: var(--black);
  padding: 100px 0;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-intro-img {
  position: relative;
}

.services-intro-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.services-intro-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--dark-green);
  padding: 28px 32px;
  text-align: center;
  min-width: 120px;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--light-green);
  line-height: 1;
  display: block;
}

.badge-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}

.services-intro-text {
  color: var(--white);
}

/* --- Services List --- */
.services-list {
  background: #080d0a;
  padding: 100px 0;
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Full-width Service Card */
.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.service-full-card.reverse {
  direction: rtl;
}

.service-full-card.reverse > * {
  direction: ltr;
}

.sfc-image {
  overflow: hidden;
  position: relative;
}

.sfc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.service-full-card:hover .sfc-image img {
  transform: scale(1.04);
}

.sfc-content {
  background: var(--dark-green);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-full-card:nth-child(even) .sfc-content {
  background: #1a2e26;
}

.sfc-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(211, 219, 203, 0.12);
  line-height: 1;
  position: absolute;
  top: 32px;
  right: 40px;
  letter-spacing: -0.02em;
}

.sfc-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.05;
}

.sfc-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  max-width: 420px;
}

.sfc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sfc-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}

.sfc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 1px;
  background: var(--light-green);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-intro-img {
    max-width: 560px;
    margin: 0 auto;
  }

  .service-full-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-full-card.reverse {
    direction: ltr;
  }

  .sfc-image {
    height: 340px;
  }

  .sfc-content {
    padding: 48px 40px;
  }
}

@media (max-width: 768px) {
  .services-intro-badge {
    bottom: -16px;
    right: -8px;
    padding: 20px 24px;
  }

  .sfc-image {
    height: 260px;
  }

  .sfc-content {
    padding: 40px 28px;
  }

  .sfc-number {
    font-size: 3.5rem;
    top: 20px;
    right: 24px;
  }
}
