/* Tech Page Specific Styles */

/* Override common.css for consultation-specific styling */
.hero-buttons { margin-top: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(45deg, #1e3a8a, #3b82f6); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4); }
.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }

.consultation-benefits {
  list-style: none;
  text-align: left;
  margin: 20px auto;
  max-width: 400px;
  width: 100%;
}
.consultation-benefits li {
  margin: 12px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: #e0e0e0;
}
.consultation-benefits li i {
  margin-right: 10px;
  color: #667eea;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.loading-overlay.show {
  display: flex;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Tech page - allow card to expand like Flow page for hosting content */
@media (min-width: 768px) {
  .card {
    max-width: none !important;
  }
}