/* ========================================
   SERVICE DETAIL PAGE - Common Styles for All Services
   ======================================== */

/* Service Hero */
.page-hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Service Content Section */
.service-content {
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.service-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-text:last-child {
  margin-bottom: 0;
}

/* Service Details Grid */
.service-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-detail-card {
  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 ease;
}

.service-detail-card:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateY(-2px);
}

.detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.detail-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.detail-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  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);
}

@media (min-width: 768px) {
  .service-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.feature-card-service {
  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 ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card-service:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateY(-3px);
}

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

.feature-card-service:hover .feature-icon-service {
  transform: scale(1.1) rotate(5deg);
}

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

.feature-title-service {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.feature-description-service {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

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

.benefits-list-service {
  list-style: none;
  max-width: 48rem;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list-service li {
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefits-list-service li:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateX(8px);
}

.benefits-list-service li::before {
  content: '✓';
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
}

.benefits-list-service li span {
  font-size: 1.0625rem;
  color: #0f172a;
  line-height: 1.6;
  font-weight: 500;
}

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

.service-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;
}

.service-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%);
}

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

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

.service-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 10;
}

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

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

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

@media (min-width: 768px) {
  .service-cta-card {
    padding: 4rem 3rem;
  }
  
  .service-cta-title {
    font-size: 2.5rem;
  }
}

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

.service-detail-description {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Service Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  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);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-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);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: #2274FF;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: white;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

/* Service Benefits Section */
.service-benefits {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.benefits-list {
  list-style: none;
  max-width: 48rem;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-list li:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateX(8px);
}

.benefits-list li::before {
  content: '✓';
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
}

.benefits-list li span {
  font-size: 1.0625rem;
  color: #0f172a;
  line-height: 1.6;
  font-weight: 500;
}

/* Service Image Gallery (if needed) */
.service-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.process-timeline {
  max-width: 48rem;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #2274FF 0%, #3b82f6 100%);
  opacity: 0.3;
}

.process-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-item-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.25);
  position: relative;
  z-index: 10;
}

.process-item-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.process-item-content:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateX(8px);
}

.process-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.process-item-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

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

.service-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;
}

.service-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%);
}

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

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

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

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

.service-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: 768px) {
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .gallery-image {
    height: 350px;
  }

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

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

@media (min-width: 1024px) {
  .service-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
