/* Services Page Specific Styles */

/* Page Hero - Services specific */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 40%, #1a4fb8 100%);
  color: white;
  padding: 8rem 0 5rem;
  overflow: hidden;
  margin-top: 4.5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Content Section */
.content-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.intro-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  font-weight: 400;
}

/* Services Detailed Grid */
.services-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detailed-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detailed-card:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-detailed-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.25);
}

.service-detailed-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.service-detailed-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-detailed-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.service-features-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34, 116, 255, 0.4);
}

/* CTA Section */
.cta-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.cta-card {
  max-width: 48rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(34, 116, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 10;
  line-height: 1.7;
}

.cta-card .btn {
  position: relative;
  z-index: 10;
}

.cta-card .btn-primary {
  background: white;
  color: #2274FF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-card .btn-primary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Responsive Styles */
@media (min-width: 640px) {
  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.5rem;
  }

  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    padding: 4rem 3rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-hero-title {
    font-size: 4rem;
  }

  .services-detailed-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
