/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Detail Section */
.services-detail-section {
  background: var(--bg-base);
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 32px;
  transition: all var(--duration) var(--ease);
}

.service-detail-card:nth-child(1) {
  border-left: 3px solid var(--cerulean);
}

.service-detail-card:nth-child(2) {
  border-left: 3px solid var(--gold);
}

.service-detail-card:nth-child(3) {
  border-left: 3px solid var(--teal);
}

.service-detail-card:nth-child(4) {
  border-left: 3px solid var(--cerulean);
}

.service-detail-card:nth-child(5) {
  border-left: 3px solid var(--gold);
}

.service-detail-card:nth-child(6) {
  border-left: 3px solid var(--teal);
}

.service-detail-card:hover {
  border-color: var(--cerulean);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px var(--glow-cerulean-s);
  transform: translateY(-2px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-detail-icon {
  font-size: 3.5rem;
  margin-bottom: 8px;
  color: var(--cerulean);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-detail-icon svg {
  width: 56px;
  height: 56px;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
}

.service-detail-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-detail-includes {
  background: rgba(5, 13, 30, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.includes-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.includes-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cerulean);
}

/* Pricing Note Section */
.pricing-note-section {
  background: var(--bg-surface);
}

.pricing-note-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-note-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-note-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.pricing-note-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-detail-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-detail-card {
    padding: 32px 24px;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-detail-icon {
    font-size: 2.5rem;
  }
  
  .pricing-note-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pricing-note-ctas .btn-fill,
  .pricing-note-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
