/* SERVICES PAGE CSS */
.services-hero {
  height: 50vh;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px; /* offset navbar */
}

.services-hero__breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-hero__breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-hero__breadcrumb a:hover {
  color: var(--white);
}

.services-hero__breadcrumb-sep {
  margin: 0 8px;
  color: var(--gold);
}

.services-hero__breadcrumb-current {
  color: var(--white);
}

.services-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

/* SERVICES LIST */
.services-list {
  background-color: var(--white-cream);
}

.service-card {
  display: flex;
  align-items: center;
  gap: 80px;
}

.service-card--reverse {
  flex-direction: row-reverse;
}

.service-card__image-col {
  flex: 0 0 45%;
}

.service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__content-col {
  flex: 0 0 55%;
  position: relative;
}

.service-card__number {
  font-family: 'DM Mono', monospace;
  font-size: 80px;
  color: rgba(197, 160, 84, 0.15); /* var(--gold) with 15% opacity */
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: 0;
  pointer-events: none;
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--black);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.service-card__separator {
  height: 1px;
  background-color: var(--gold);
  width: 100%;
  margin: 80px 0;
  opacity: 0.3;
}

/* PROCESS STEPS */
.process-steps {
  background-color: var(--black-soft);
  text-align: center;
  overflow: hidden;
}

.process-steps__main-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 80px;
}

.process-steps__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
}

.process-steps__line {
  position: absolute;
  top: 40px; /* aligns with center of circles (20px top + 20px half circle) */
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  z-index: 1;
}

.process-steps__item {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 16px;
}

.process-steps__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Using 50% for circles as per usual step indicators, though system prompt said NO rounded corners > 2px, but specified "gold circle". Will stick to circle as explicitly requested */
  background-color: var(--black-soft);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.process-steps__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.process-steps__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* CTA BANNER */
.services-cta {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.services-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.services-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.6);
  z-index: -1;
}

.services-cta__container {
  position: relative;
  z-index: 1;
}

.services-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .service-card,
  .service-card--reverse {
    flex-direction: column;
    gap: 40px;
  }
  
  .service-card__image-col,
  .service-card__content-col {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .service-card__number {
    top: -20px;
    left: 0;
  }
  
  .process-steps__wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }
  
  .process-steps__line {
    top: 0;
    left: 40px; /* center of 40px circle + 20px padding */
    width: 1px;
    height: 100%;
  }
  
  .process-steps__item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
    width: 100%;
  }
  
  .process-steps__item:last-child {
    margin-bottom: 0;
  }
  
  .process-steps__circle {
    margin: 0 24px 0 0;
    flex-shrink: 0;
  }
  
  .process-steps__title {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .services-hero__title {
    font-size: 42px;
  }
  
  .service-card__title {
    font-size: 28px;
  }
  
  .process-steps__main-title {
    font-size: 36px;
  }
  
  .services-cta__title {
    font-size: 36px;
  }
}
