/* ========== SERVICES SECTION ========== */

.services {
  width: 100%;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  padding: 120px 20px;
}

.services-header {
  max-width: 1280px;
  margin: 0 auto 60px;
}

.services-tag {
  display: inline-block;
  color: #188A50;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 16px;
  border: 1px solid #28E485;
}

.services-title {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Red Hat Display', sans-serif;
  line-height: 58px;
  color: #fff;
  max-width: 500px;
  margin-top: 8px;
}

.services-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.services-slide {
  width: 100%;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: #0A0A0A;
  max-width: 1280px;
  margin: 0 auto;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 396px;
}

.services-content .title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 68px;
  color: #FFFFFF;
  margin: 0;
}

.services-content .desc {
  font-size: 16px;
  line-height: 28px;
  color: #B8B8B8;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5B5CFF;
  font-weight: 600;
  text-decoration: none;
}

.services-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 676px;
}

.image-wrapper {
  flex: 0 0 396px;
  height: 556px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .services-slide {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 16px;
  }
  .services-content .title {
    font-size: 36px;
    line-height: 44px;
  }
}