/* FLUXAIN - Styles page Services */

/* Page Hero */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(61, 122, 158, 0.2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(61, 122, 158, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: var(--spacing-sm);
}

.page-hero .lead {
  font-size: 1.5rem;
  color: rgba(248, 249, 250, 0.85);
  margin: 0;
}

/* Introduction Section */
.section-intro {
  padding: var(--spacing-xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(248, 249, 250, 0.9);
  margin: 0;
}

.intro-text strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Service Sections */
.service-section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.service-section.alt {
  background: rgba(0, 0, 0, 0.2);
}

.service-content {
  max-width: 1000px;
  margin: 0 auto;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(93, 45, 121, 0.3) 0%, rgba(139, 77, 175, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.service-tagline {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin: 0;
  font-weight: 500;
}

.service-description {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-accent);
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-lg);
}

.service-description p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(248, 249, 250, 0.9);
  margin: 0;
}

/* Service Features */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 45, 121, 0.2);
  border-radius: var(--radius-sm);
}

.feature-content h4 {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.feature-content p {
  font-size: 0.95rem;
  color: rgba(248, 249, 250, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.section-cta-services {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(61, 122, 158, 0.2) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-cta-services .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-cta-services h2 {
  margin-bottom: var(--spacing-sm);
}

.section-cta-services p {
  font-size: 1.25rem;
  color: rgba(248, 249, 250, 0.85);
  margin-bottom: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 968px) {
  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero .lead {
    font-size: 1.25rem;
  }

  .service-header {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .service-number {
    font-size: 4rem;
  }

  .service-description p {
    font-size: 1.125rem;
  }

  .intro-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 640px) {
  .service-features {
    grid-template-columns: 1fr;
  }

  .service-number {
    font-size: 3rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }
}
