/* ==========================================================================
   VORA — Service section (black background)
   ========================================================================== */

.services {
  background-color: var(--bg-black);
  color: var(--text-on-dark);
}

.services__wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.services__media {
  flex: 1 1 480px;
  min-height: 500px;
  position: relative;
}

.services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.services__content {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  padding: 120px 60px;
}

.services__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services__badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: var(--bg-beige);
  color: var(--text-primary);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.services__title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-on-dark);
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.services__link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0;
  color: inherit;
}

.services__link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.services__link-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.services__link:hover .services__link-title {
  color: var(--text-on-dark);
}

.services__link-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.services__link:hover .services__link-icon {
  opacity: 1;
  transform: translateX(0);
}

.services__link-icon img {
  width: 12px;
  height: 12px;
}

.services__divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgba(74, 74, 74, 0.4);
}

.services__cta {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .services__content {
    padding: 80px 40px;
  }
}

@media (max-width: 809px) {
  .services__media {
    min-height: 320px;
  }

  .services__content {
    padding: 56px 20px;
  }

  .services__title {
    font-size: 30px;
  }

  .services__link-title {
    font-size: 22px;
  }
}
