/* ================= Services Specific Styles ================= */
.services-section {
  margin-top: 76px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.services-title-container {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.services-title-container h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card.highlighted {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(48, 97, 232, 0.1), var(--shadow-lg);
}

/* Updated Executive Service Badge - Matching index.html style */
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transform: none;
}

.service-header {
  text-align: center;
  margin-bottom: 24px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(4, 30, 100, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.service-content {
  flex: 1;
  margin-bottom: 24px;
}

.service-summary {
  color: var(--neutral-600);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 1rem;
}

.service-footer {
  margin-top: auto;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
  font-size: 1rem;
}

.service-cta-btn:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 30, 100, 0.2);
}

.service-cta-btn.primary {
  background: var(--secondary);
  border-color: var(--secondary);
}

.service-cta-btn.primary:hover {
  background: transparent;
  color: var(--secondary);
}

/* ================= Services CTA Section ================= */
.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.services-cta p {
  font-size: 1.1rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================= Responsive Design ================= */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-title-container h1 {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-badge {
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 0;
  }
  
  .services-title-container h1 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-badge {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  .services-cta {
    padding: 60px 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-cta-btn {
    transition: none;
  }
  
  .service-card::before {
    transition: none;
  }
}