.service-detail-header {
  animation: fadeInDown 0.6s ease-out;
}

.service-detail-badge {
  opacity: 0.8;
  letter-spacing: 0.1em;
}

.service-detail-title {
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.service-detail-subtitle {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-hero-image {
  animation: fadeIn 1s ease-out 0.6s both;
  border: 1px solid rgba(25, 25, 112, 0.1);
  background: #f3f4f6;
  min-height: 256px;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content-section {
  animation: fadeInUp 0.8s ease-out both;
}

.service-content-section:nth-child(1) {
  animation-delay: 0.8s;
}

.service-content-section:nth-child(2) {
  animation-delay: 1s;
}

.service-content-section:nth-child(3) {
  animation-delay: 1.2s;
}

.service-sidebar-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(25, 25, 112, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-sidebar-card:hover {
  border-color: rgba(25, 25, 112, 0.15);
  transform: translateY(-2px);
}

.back-button {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(25, 25, 112, 0.08);
}

.back-button:hover {
  background: rgba(25, 25, 112, 0.05);
  transform: translateX(-4px);
}

.service-feature-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(25, 25, 112, 0.08);
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 25, 112, 0.15);
}

.service-process-step {
  position: relative;
  padding-left: 40px;
  padding-bottom: 32px;
}

.service-process-step::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: #191970;
  border-radius: 50%;
  z-index: 2;
}

.service-process-step::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  width: 2px;
  height: calc(100% - 8px);
  background: rgba(25, 25, 112, 0.2);
}

.service-process-step:last-child::after {
  display: none;
}

.related-service-link {
  display: block;
  padding: 12px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(25, 25, 112, 0.08);
  transition: all 0.3s ease;
  color: #191970;
  font-size: 14px;
}

.related-service-link:hover {
  background: rgba(25, 25, 112, 0.05);
  border-color: rgba(25, 25, 112, 0.15);
  transform: translateX(4px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .service-detail-title {
    font-size: 2rem;
  }
  
  .service-hero-image {
    height: 200px;
  }
  
  .back-button {
    margin-top: 0 !important;
  }
}

