/* Service page styles */
.dseo-service-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 50%, #0f3460 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.dseo-service-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.dseo-service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.dseo-service-hero__heading {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.dseo-service-hero__subheading {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.dseo-service-features {
  padding: 5rem 0;
}

.dseo-service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .dseo-service-features__grid {
    grid-template-columns: 1fr;
  }

  .dseo-service-hero__heading {
    font-size: var(--text-4xl);
  }
}

.dseo-service-cta {
  padding: 5rem 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.dseo-service-cta::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(249, 115, 22, 0.06) 100%
  );
  pointer-events: none;
}

.dseo-service-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dseo-service-cta__heading {
  color: var(--color-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.dseo-service-cta__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: 0;
  max-width: 500px;
}

@media (max-width: 768px) {
  .dseo-service-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
