/* ============================================================
   Service Cards - Non-transactional Design
   ============================================================ */

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a5490 0%, #0f3a63 100%);
}

.service-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a5490;
  margin-bottom: 12px;
}

.service-card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-card-features li {
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-features li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

.service-card-features li:last-child {
  border-bottom: none;
}

/* ✅ Non-transactional CTA */
.service-card-action {
  margin-top: auto;
}

.service-card-action .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-info-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #e7f3ff;
  color: #1a5490;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================================
   Consultation Box - Builds Trust
   ============================================================ */

.consultation-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #1a5490;
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.consultation-box h4 {
  font-size: 18px;
  color: #1a5490;
  margin-bottom: 12px;
  font-weight: 600;
}

.consultation-box p {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.consultation-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consultation-box li {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.consultation-box li:before {
  content: "→";
  color: #1a5490;
  font-weight: bold;
}

/* ============================================================
   Trust Indicators
   ============================================================ */

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.trust-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ============================================================
   Process Steps - Shows What Happens Next
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a5490 0%, #0f3a63 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Arrow between steps (desktop only) */
.process-step:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #1a5490;
}

@media (max-width: 768px) {
  .process-step:after {
    content: "↓";
    right: auto;
    top: auto;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ============================================================
   Responsive Design
   ============================================================ */

@media (max-width: 768px) {
  .service-card-title {
    font-size: 20px;
  }

  .service-card-description {
    font-size: 14px;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}