/* Services Detail Section */
.services-detail-section {
  padding: 80px 0;
  background: white;
}

.night-mode .services-detail-section {
  background: transparent;
}

.service-detail-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(65, 143, 222, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.night-mode .service-detail-card {
  background: rgba(44, 62, 80, 0.6);
  border-color: rgba(65, 143, 222, 0.3);
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
}

.night-mode .service-number {
  background: rgba(65, 143, 222, 0.2);
  color: var(--accent-gold);
}

.service-detail-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal-black);
  margin-bottom: 20px;
  padding-right: 80px;
}

.night-mode .service-detail-card h3 {
  color: white;
}

.service-detail-card > p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.night-mode .service-detail-card > p {
  color: rgba(255, 255, 255, 0.8);
}

/* Service Items */
.service-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--light-blue);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.night-mode .service-item {
  background: rgba(65, 143, 222, 0.05);
}

.service-item:hover {
  transform: translateX(10px);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(65, 143, 222, 0.15);
}

.service-letter {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(65, 143, 222, 0.3);
}

.service-content {
  flex: 1;
}

.service-content h5 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal-black);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.night-mode .service-content h5 {
  color: white;
}

.service-content h5 i {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0;
}

.night-mode .service-content p {
  color: rgba(255, 255, 255, 0.85);
}

/* Sub Services List */
.sub-services {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.sub-services li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid rgba(65, 143, 222, 0.1);
}

.sub-services li:last-child {
  border-bottom: none;
}

.sub-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 20px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.sub-services li strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.night-mode .sub-services li strong {
  color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
  .services-detail-section {
    padding: 60px 0;
  }
  
  .service-detail-card {
    padding: 24px;
  }
  
  .service-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    top: 20px;
    right: 20px;
  }
  
  .service-detail-card h3 {
    font-size: 1.5rem;
    padding-right: 60px;
  }
  
  .service-item {
    flex-direction: column;
    padding: 20px;
  }
  
  .service-letter {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .service-content h5 {
    font-size: 1.125rem;
  }
}
